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.

We used the link:

http://www.facebook.com/sharer.php?u=[shared URL]

...to share a particular page. However, Facebook Sharer uses the cached version of the images and the title. Is there a way to quickly clear the Facebook cache or how long do we have to wait until the data gets updated?

I placed <link rel='image_src' href='[preview image]' /> in between the tags.

share|improve this question

2 Answers

up vote 35 down vote accepted

I found a solution to my problem. You could go to this site:

http://developers.facebook.com/tools/lint/

...then put in the URL of the page you want to share. It will automatically extract all the info on your meta tags and also clear the cache.

EDIT: Now the link is https://developers.facebook.com/tools/debug. Anyway, previous link redirects to it.

share|improve this answer
Is there a way to get the same thing but automatically with javascript? My site have pages that can change often their name. I would like to not wait the 24 hours of Facebook reset of cache, neither i can go on Facebook Lint every time. I have tried using an ajax request to Facebook Lint (with developers.facebook.com/tools/debug/og/object?q=... as url) but the response is that q value (passed as parameter to above url) is not allowed by Access-Control-Allow-Origin. – Giovanni Chetelodicoafare Mar 11 '12 at 22:02
@Giovanni Chetelodicoafare, try to use a cron job (linux) or scheduled task (windows) to visit developers.facebook.com/tools/debug/og/…. Cron jobs are available in the admin panel of most hosting providers. – Jules May 16 at 15:01

I thing these two links have a wide discussion on your problem related stuff. fb:ref clear cashes by calling

fbml.refreshRefUrl

like this

<tt>fbml.refreshRefUrl("http://www.mysite.com/someurl.php")

You can study the related stuff from here fb:ref. I hope it will work for you

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.