I'm having troubles with my meta tags with Open Graph. It seems as though Facebook is caching old values of my meta tags. Old values for Attributes og:title and og:url are still used, even though I have changed them already.

I ran Lint on a page in my site(http://pinq.dk/tilbud/landsdaekkende/lissy/), and this appeared:

enter image description here

Notice that there are two values for og:title and og:url, and the last one prevailed. However, The last two entries are the OLD entries that I used for this site. I am now currently using these meta tags (you can verify if you view the source of the HTML):

<meta property="og:title" content="Smart og rummelig pusletaske fra Petit Amour med god plads til alt &#8211; værdi 1.099 kr &#8211; køb nu kun 599 kr   "/>
<meta property="og:description" content="Pinq.dk - Det gode liv for det halve"/>
<meta property="og:type" content="product"/>
<meta property="og:url" content="http://pinq.dk/tilbud/landsdaekkende/lissy/"/>
<meta property="og:image" content="http://pinq.dk/wp-content/themes/pinq/images/logo-top.png"/>
<meta property="og:site_name" content="Pinq" />
<meta property="fb:app_id" content="161840830532004" />

Why is Facebook caching og:title and og:url? Is anyone experiencing the same issue?

link|improve this question

75% accept rate
I suppose this is like a history? I'm seeing FB getting the latest title and url for you (in the info table) so why bother? – ifaour Apr 25 '11 at 8:29
The problem is, the facebook Like count is still for the OLD og:url (pinq.dk) which is around 200+, as opposed to counting for pinq.dk/tilbud/landsdaekkende/lissy – azure_ardee Apr 25 '11 at 8:33
and I don't think this is history. More of og:url being (supposedly) set twice, the last being the one that prevailed. Somehow, old values that are removed already from the code still affect the meta values. – azure_ardee Apr 25 '11 at 8:35
3  
Well, have a read of this. Especially the Editing Meta Tags section. I'm not sure if it's related but it may help. Will check on this later, sorry mate! – ifaour Apr 25 '11 at 8:40
1  
That's probably it. "You can update the attributes of your page by updating your page's <meta> tags. Note that 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.". Thanks ifaour! – azure_ardee Apr 25 '11 at 8:45
feedback

5 Answers

up vote 30 down vote accepted
  1. Go to http://developers.facebook.com/tools/debug
  2. Enter the URL following by fbrefresh=CAN_BE_ANYTHING

Examples:

  1. http://www.example.com?fbrefresh=CAN_BE_ANYTHING
  2. http://www.example.com?postid=1234&fbrefresh=CAN_BE_ANYTHING
  3. OR visit: http://developers.facebook.com/tools/debug/og/object?q=http://www.example.com/?p=3568&fbrefresh=89127348912

I was having the same issue last night, and I got this solution from some website.

Facebook saves your cache thumbnail. It won't refresh even if you delete the thumnail/image from your server. But Facebook allows you to refresh by using fbrefresh

I hope this helps.

link|improve this answer
1  
param fbrefresh might not be necessary as the debug tool refreshes the object without it. – alexandru.topliceanu Mar 25 at 20:23
feedback

Basically, the answer is patience ;)

I checked the Linter this morning, and og:title and og:url displays correctly, without the redundant values. I guess FaceBook automatically clears its cache at some specific interval. I just have to wait.

enter image description here

link|improve this answer
feedback

We just ran into this, as it turns out, we weren't linting the right url, since the real url had a query string (duh, different page as far as a bot is concerned).

http://example.com/

!==

http://example.com/?utm_campaign=foo

The linter will recache your page, you don't have to wait.

link|improve this answer
feedback

Yes, facebook automatically clears the cache every 24 hours: Actually facebook scrapes the pages and updates the cache every 24 hours https://developers.facebook.com/docs/reference/plugins/like/#scraperinfo.

link|improve this answer
feedback

One thing to add, the url is case sensitive. Note that:

apps.facebook.com/HELLO

is different in the linter's eyes then

apps.facebook.com/hello

Be sure to use the exact site url that was entered in the developer settings for the app. The linter will return the properties otherwise but will not refresh the cache.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.