views:

382

answers:

3

We're having some trouble getting our like button to work. It seemed to work last week but suddenly it's stopped working.

Basically when clicking "Like", we get an error saying:

You failed to provide a valid list of administators. You need to supply the administors using either a "fb:app_id" meta tag, or using a "fb:admins" meta tag to specify a comma-delimited list of Facebook users.

Our section looks like this:

<html xmlns="http://www.w3.org/1999/xhtml" xmlns:og="http://opengraphprotocol.org/schema/" xmlns:fb="http://www.facebook.com/2008/fbml" xml:lang="en" lang="en">
  <head>
    <meta property="fb:app_id" content="number"/> 
    <meta property="fb:admins" content="number"/> 
    <meta property="og:title" content="title"/> 
    <meta property="og:type" content="website"/> 
    <meta property="og:url" content="url with trailing slash"/> 
    <meta property="og:image" content="url to image"/> 
    <meta property="og:site_name" content="Site Name"/>
  </head>

Help?

A: 

http://developers.facebook.com/docs/opengraph

In addition, we've extended the basic meta data to add one required field to connect your page with :

  • fb:admins or fb:app_id - A comma-separated list of either Facebook user IDs or a Facebook Platform application ID that administers this page.
ceejayoz
Yes, but as you can see in the code, we already supply both those fields. Using one or the other is not successful, either.
Ross Hale
Have you verified that they're the correct IDs? Tweak "YOUR_ID_HERE": http://graph.facebook.com/YOUR_ID_HERE?access_token=2227470867|2.FjRu9Zv0O0faufc4jvHaWg__.3600.1273536000-70601113|a6VAKPMVk_W2knbxupD6Y0xLQvc.
ceejayoz
Yep, we've checked and rechecked the IDs. We even tried using a different app id that we also own. No dice.
Ross Hale
A: 

Change

<meta property="og:type" content="website"/>

to

<meta property="og:type" content="article"/>

Had the same issue until made this change (bug?).

serg