I have defined a custom object my_object
and created one instance hosted in my_url
with the metatags:
<meta property="fb:app_id" content="my_app_id" />
<meta property="og:type" content="my_namespace:my_object" />
<meta property="og:url" content="my_url" />
<meta property="og:title" content="my_title" />
<meta property="og:description" content="my_description" />
I was able to like this object within my app using its my_url
as identifier. Now I want to retrive information about this particular instance as described in: https://developers.facebook.com/docs/opengraph/objects/#retrieve
i.e., I want to perform a:
GET https://graph.facebook.com/1015012577744568
But the documentation simply doesn't mention where this 1015012577744568
numeric ID comes from. I only have my_url
as identifier, and the following query doesn't work:
GET https://graph.facebook.com/my_url
So the question is: How do I get this facebook numeric ID for my object instance?