Object at URL "my website" of type 'website' is invalid because the given value "app id" for property 'fb:app_id' could not be parsed as type 'fbid'

Nick Müller picture Nick Müller · Feb 29, 2012 · Viewed 7.2k times · Source

I don't really get why it doesn't work. I also tried fb:admins with my fb id but i get the same error while debugging.

so i tried: <meta property="fb:admins" content="{1592996229}"/> and <meta property="fb:app_id" content="121889277889760" /> The difference i could make out is that with fb:admins gives an error on the website: Warning: http://www.cim-gmbh.ch/ is unreachable.

Answer

mir picture mir · Mar 14, 2013

If 1592996229 is a valid user id, then the code should be:

<meta property="fb:admins" content="1592996229"/>

not:

<meta property="fb:admins" content="{1592996229}"/>

Note the {} don't go there...