Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

i am working right now on a website. This whole Website is protected, so only logged in user can access this website (as long as the beta test is running -> limited time).

We have 2 two different types of sharing on our site. One is the simple "Like" button and the other one just uses: http://www.facebook.com/sharer/sharer.php?u={URL}

In order to give access for the facebook Crawler i build this protection:

if(wUserCur::isLoggedIn() || in_array($currentPath, $allowedLogins) || strstr($_SERVER['HTTP_USER_AGENT'], 'facebookexternalhit')):
    // do nothing
else:
    wResponse::redirect('/de/register/index.php');
endif;

i know its unsecure but this site isn't meant to be classified.

The big deal here is, that this works for http://www.facebook.com/sharer/sharer.php?u= very well, but if i hit the like button it redirects the crawler to the register page.

Are there different facebookCrawler? Or is there a better possibility?

Thanks for your help.

share|improve this question
Okay, i found it out. Both are using the same Crawler. In my case one Like Button was hit BEFORE i built in the access for facebook. Everything works well with that, anyway thank you for reading, and maybe thinking about this. – planIT Sep 21 '11 at 9:49

1 Answer

Both features should use the same user agent The currently deployed crawlers have the user agents

FacebookExternalHit/1.1

or

FacebookExternalHit/1.0

In theory the version number could increment at some point, but currently it's 1.0 or 1.1

share|improve this answer
Did this answer solve, or help you to solve the problem in your question? if so, please accept accept this answer or add your own answer with the solution you found. See these instructions for info how to accept answers; thanks! – Igy Jun 22 '12 at 10:30
Just the info I was looking for, thanks. :) I up-voted your answer, much appreciated. – Eric Brown Apr 18 at 17:43

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.