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 creating a "private" sale site for a client. To view the site contents, users have to register and login. We'd still like to use Facebook for sharing individual products. Unfortunately, if I have specific details for a product, when I share the link, all I get is the default open graph tags.

What are my options? This is occurring whether I am sharing a product from within the site or posting it via Facebook. I'm using the OpenGraph tags (as opposed to the linter), which I was hoping would solve this issue.

Thanks in advance for your help!

share|improve this question

2 Answers

up vote 2 down vote accepted

What you'll probably have to do is modify your pages so they render a dedicated view for Facebook's crawlers, with the OpenGraph tags set and all identifying information stripped out. You could look for their crawler's user agent (which I believe is facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)) and then based on that show the dedicated view.

Note that this will mean that anyone who crawls your site with that header set will be able to see the same content that you show the Facebook crawler, but given that its going on Facebook you probably don't care. Also not sure what the policy from Facebook is on that kind of switch: might be construed as faking content.

share|improve this answer
Great, I got this working. It's too bad that it's the only way, but that's fine! Thanks for your help – Emerson Taymor Jul 1 '11 at 23:20

You could also create a dedicated script to serving the share information. This technique is discussed here.

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.