I am trying to update the Facebook status and tag it with open graph place/location
It works fine when i give place=108424279189115 (FB id for New York)
curl -X POST -F 'access_token=xxxxxxxxxxxxxxxxxxxxxxxxxxx' -F 'message=Enjoying Cuilsrl2' https://graph.facebook.com/me/feed?place=108424279189115 -k
but it fails when i give place=http://www.my-domain.com/f-jospas (open graph place)
Meta Tag: <meta property="fb:app_id" content="my-id" />
Meta Tag: <meta property="og:type" content="my-name-space:restaurant" />
Meta Tag: <meta property="og:url" content="http://www.my-domain.com/f-jospas" />
Meta Tag: <meta property="og:title" content="my title" />
Meta Tag: <meta property="og:image" content="http://my-domain.com/thmb_nail?img_id=ahFzfmthbGx1bWFzdGVyLWhyZHIUCxIIQnVzaW5lc3MiBmpvc3Bhcww&cnt=3" />
Meta Tag: <meta property="place:location:latitude" content="28.5747994643" />
Meta Tag: <meta property="place:location:longitude" content="77.3710309386" />
curl -X POST -F 'access_token=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' -F 'message=Enjoying Curl2' https://graph.facebook.com/me/feed?place=http://www.my-domain.com/f-jospas -k
{"error":{"message":"An unknown error has occurred.","type":"OAuthException","code":1}}
Why can't I tag FB status update with opengraph place?