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 tried to share a link for example http://apps.facebook.com/appname/ under "Update Status" on my profile page. After I modified the content of the application, it still display the caching. I tried to use the http://developers.facebook.com/tools/debug to clear the cache, but the result still the same. Any help would be greatly appreciated.

share|improve this question

3 Answers

  • Wait.
  • Try to lint that url again or tell anyone to do it for you (might have imedate effect)
  • Wait.
share|improve this answer

Try This:

$fbURL = 'https://developers.facebook.com/tools/debug/og/object?q=';
$shareURL = '<YOUR URL>';
$excuteURL = $fbURL.urlencode($shareURL)."&format=json";

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $excuteURL);
//curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_USERAGENT, 'Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.1.2) Gecko/20090729 Firefox/3.5.2 GTB5');
$data = curl_exec($ch);
curl_close($ch);

Note that you need to pass the user agent, as this is require by Facebook Server to parse the request.

share|improve this answer

You can use the Object Debugger directly. Just paste your URL into there and hit Debug.

You can tell facebook to re-scrape the content using the "scrape=true" post parameter in a POST request to https://graph.facebook.com. More details in the Facebook docs.

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.