I am aware that using PHP or javascript API, it can be much easier. However, in this case, we are using restFB API at the back end to send HTTP POST request to graph API.
The requirement is to be able to tag/mention facebook fan pages or facebook users when publishing a post to fan page wall.
According to Facebook Graph API -> Post http://developers.facebook.com/docs/reference/api/post/
Field: to Description: Profiles mentioned or targeted in this post Returns: Contains in data an array of objects, each with the name and Facebook id of the user
Supposedly, by specifying to = "{name=,id=}" should enable tagging.
But it does not seem to work.
curl -F 'access_token=YOUR_ACCESS_TOKEN' -F 'to=FRIEND_FB_ID' https://graph.facebook.com/PAGE_ID/feed (or /photos, as you can tag either photo or mention people in your facebook post)
Can someone please give an example as the one above that works?
Thanks a lot