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 know similar questions have been asked, but none of the solutions worked for me. I just started a page for a non-profit and I am implementing the open graph on our main site. When I scrape the site with http: //developers.facebook.com/tools/debug, I get

Object at URL 'http: //www.desertmuseumdigitallibrary.org/public1/detail.php?id=ASDM23540' of type 'article' is invalid because the given value '114003368752609' for property 'fb:admins' could not be parsed as type 'fbid'.

I believe that this is probably the page id, but it does work on https://graph.facebook.com/114003368752609. I have been unable to locate any other number that will work on https: //graph.facebook.com/. The page that I am referred to on login is http://www.facebook.com/pages/ASDM-Sonoran-Desert-Digital-Library/114003368752609 and the name "ASDM-Sonoran-Desert-Digital-Library" doesn't work for https: //graph.facebook.com/ either.

I have also tried creating an app, hoping that this would give me an app_id I could use, but the link sends me straight to my regular page.

share|improve this question

1 Answer

114003368752609 is a page ID according to the graph API result above

That field is supposed to be the user ID of users who will administer the URL for insights purposes; it's not possible to use a Page ID for this

If you're splitting this access among several users, you need to use an App ID (created at https://developers.facebook.com/apps )- in which case the admins configured for that app will have access to the insights.

What you need is either:

<meta property="fb:admins" content="CSV LIST OF USER IDS OF FACEBOOK USERS" />
<meta property="fb:app_id" content="APP ID OF AN APP" /> 
share|improve this answer
Thank you Igy, but when I try to go to the link you included, it takes me straight to my regular facebook page. Do you have any idea how to get around that? – user1712871 Oct 1 '12 at 22:21
If you can't access the apps dashboard are you sure this isn't a roundabout duplicate of facebook.stackoverflow.com/questions/10805745/… ? – Igy Oct 1 '12 at 23:02
You are right, Igy, that is the same problem. Thanks for the solution re apps. So, how can I find my actual user ID to insert in my main website's meta tags? – user1712871 Oct 1 '12 at 23:32
If it's a business account, I'm not 100% sure how to get the user ID unfortunately - it's easy enough to get via the API (e.g. use the Graph API Explorer tool to access /me and the user ID will be in the response) but i'm not sure about doing it from facebook's main interface – Igy Oct 2 '12 at 1:27
using /me gives error code 2500 – user1712871 Oct 2 '12 at 19:19
show 2 more comments

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.