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'm getting a Facebook Open Graph debugger warning when I put two admins in the fb:admins meta value. With a single admin, it passes fine, but with two I get a warning. Everything works fine, but my OCD wants to get it right. Any help?

Here's my code:

<head prefix="og: http://ogp.me/ns# fb: http://ogp.me/ns/fb# article: http://ogp.me/ns/article#">

    <meta property="fb:app_id" content="122146944552301"/>
    <meta property="fb:admins" content="15901643,15932442"/>
    <meta property="og:type" content="article" />
    <meta property="og:url" content="http://uamedia.missouri.edu/mizmag/facebook-test.html" />
    <meta property="og:site_name" content="UA Media" />
    <meta property="og:title" content="Facebook Test" />

    <meta charset="utf-8">

    <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">

    <title>Facebook Test</title>
</head>

And I get this error:

Parser Mismatched Metadata The parser's result for this metadata did not match the input metadata. Likely, this was caused by the data being ordered in an unexpected way, multiple values being given for a property only expecting a single value, or property values for a given property being mismatched. Here are the input properties that were not seen in the parsed result: 'fb:admins'

Any ideas?

share|improve this question
I have the same problem! – Michele Orsi Aug 9 '12 at 13:32
@MicheleOrsi I have no idea why. I've tried many different ways to fix it. Really hope someone sees this. – Jason Rollins Aug 9 '12 at 17:43
same here, changed to 1 admin for now. – Fredrik Johansson Aug 13 '12 at 8:49
I've also started receiving this error. Although, everything seems to have linked up OK (the admins are able to administer the site still). – Dan Murfitt Aug 15 '12 at 7:22
@DanMurfitt I have noticed that as well. Even though I get warnings, everything works just fine. I think it's my anal retentiveness that's wanting to make it right. – Jason Rollins Aug 16 '12 at 12:49

2 Answers

up vote 17 down vote accepted

you have to use the array format [http://ogp.me/#array]

In your example:

instead of

<meta property="fb:admins" content="15901643,15932442"/>

you have to use

<meta property="fb:admins" content="15901643"/>
<meta property="fb:admins" content="15932442"/>
share|improve this answer
1  
That did it! Thanks, Kai! It would be nice if Facebook documented it correctly. – Jason Rollins Aug 21 '12 at 2:56
Thanks very much; that worked for me. – Dave Sag Jan 9 at 22:14
biggest problem with any of this is Facebook doesn't document this sh*t... so annoying. I'll work in the update into the next version of my WP plugin. (until they change it again, cause it never used to throw that warning) – chuck reynolds Apr 4 at 0:49

in my oppinion, only the last meta tag will count for the code that uses the property value.

although meta should go in the head, you can use them anywhere and anytime on the page. just keep in mind the parser goes through the code and compiles all the lines in order.

you can even use the [IF] to select the code to be parsed according to certain global conditions.

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.