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.

Facebook fetches the title and webpage description from the HTML header of the webpage whenever people share a link on Facebook. I realized that [I believe for performance purposes], Facebook caches and reuses the webpage title and description if more people share the same link over and over again. What if the webpage has a breaking news or something that is dynamically changes within a short period of time. Even worse, what if the page had wrong content and the webmaster made changes to it?

How can I force Facebook to flush its cache and update it with new content on the website?

share|improve this question
Are you changing the og tags? – Joey Schluchter Jan 27 '12 at 1:29

1 Answer

up vote 8 down vote accepted

The best way to do it is by using the Facebook debugger: http://developers.facebook.com/tools/debug Insert your url, let the debugger scrape your page and the cache is cleared.

UPDATE:

As DMCS pointed out "some things cannot be updated after X number of likes". Here is the info in more detail taken from the Facebook documentation:

Note: og:title and og:type are only editable initially - after your page receives 50 likes the title becomes fixed, and after your page receives 10,000 likes the type becomes fixed. These properties are fixed to avoid surprising users who have liked the page already. Changing the title or type tags after these limits are reached does nothing, your page retains the original title and type.

share|improve this answer
2  
Just remember, some things cannot be updated after X number of likes. – DMCS Jan 26 '12 at 23:22
Is it possible to find out the X? – Ernests Karlsons Aug 9 '12 at 10:46
1  
@ErnestsKarlsons Yes it is - I've updated my answer. – Lego Aug 9 '12 at 11:37

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.