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'm developing an url shortener and the current specification requires to avoid Facebook from scraping those links and instead an integrated scraper will do that and hand over the og meta tags to Facebook. Is there anything in Facebook terms that doesn't allow me to reply to its scraper with different content (e.g. an empty page with opengraph meta tags only) from what a regular user would see?

Thanks in advance.

share|improve this question
Or, to ask a question that makes sense: Is it possible to send different data to different sources from the same page? Answer: Yes (but don't). The oft-used, but most ill-advised method is called User Agent Detection - Google it. – Callum McLean Sep 19 '12 at 19:42
Yeah. The different source in this case would be Facebook only. So I'm not breaking any laws or anything by doing it? Thanks, I'm currently detecting Facebook scraper through the user agent information – HyperD Sep 19 '12 at 20:00
Oh, it's not about breaking laws, it's just that it's subject to manipulation and cant' always be trusted. – Callum McLean Sep 19 '12 at 20:26

1 Answer

I just did this on my site. I am redirecing non-mobile devices to another page but want the facebook scraper to get the content a mobile device would get.

This is the User Agent I get:

facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)

so matching against a regular pattern like this should detect the facebook scraper.

/^(facebookexternalhit.*)/

As mentioned above, this user agent can be spoofed easily which, in my case, doesn't matter.

Only problem could occur if facebook changes the user agent of their crawling script.

share|improve this answer

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.