I'm following these steps to create a wall post with a picture using the FB Graph API:
- Upload the picture into a specified folder (working OK) -> this returns an id and a post_id
- Send a POST to https://graph.facebook.com/me/feed with the following parameters:
access_token - my current access_token message - a simple message like "hello" object_id -the post_id obtained in step 1, after photo upload
The post message appears on the wall, but there is no photo:
http://img545.imageshack.us/img545/1369/screenshot6ev.png
What am I doing wrong?
I mention that i don't want to attach a link to the photo. I want the image to appear without any hiperlink, like the ones that are manually uploaded when creating a new post.
pictureparameter for a post when you also uselink, otherwise it'll be ignored. If you want to post a photo directly, see developers.facebook.com/docs/reference/api/user/#photos and developers.facebook.com/docs/reference/api/photo – CBroe Dec 18 '12 at 15:25