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.

May I know can we change the url, image, type, title fields on META fields when we pressing a button to post it on Facebook? e.g.:

 <meta property="og:type"   content="" /> 
 <meta property="og:url"    content="" /> 
 <meta property="og:title"  content="" /> 
 <meta property="og:image"  content="" /> 

it is empty when user enter to the site, and the info will be filled in if you pressing a 'submit' button, I know jquery can do this, but may I know is facebook Open graph accept this?

share|improve this question

1 Answer

No, it doesn’t work that way.

Facebook’s scraper will visit the OG objects URL and extract the meta data – so that data has to be delivered by your server, on a request that has no connection with what your user may be seeing in their browser at the moment, and the scraper will also not execute any JavaScript.

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.