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'm following these steps to create a wall post with a picture using the FB Graph API:

  1. Upload the picture into a specified folder (working OK) -> this returns an id and a post_id
  2. 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.

share|improve this question
You can only give the picture parameter for a post when you also use link, 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
Ok, but how can I mimic the same behaviour as when I click the "What's on your mind?" box, type something, then click Photo -> Upload, etc.? This is what I want to do.. – Sterpu Mihai Dec 18 '12 at 17:02
And that’s why I linked the relevant parts of the documentation! – CBroe Dec 18 '12 at 19:20
Ok. The first link you gave me ( developers.facebook.com/docs/reference/api/user/#photos) is about posting a photo on the user's wall. I don't want this. I need to create a POST on the wall containing a picture. A photo upload notification is not a post. The second link (developers.facebook.com/docs/reference/api/photo) describes the Photo object from the Graph API. – Sterpu Mihai Dec 18 '12 at 23:40
My problem is related to the Feed, not the Photo, as I already succeeded uploading a photo. I've done some research and it seems that back in 2011 there was an object_reference parameter in the Feed POST request that allowed you to attach a photo. However, that field doesn't exist anymore. It should have been replaced by object_id.. which I already tried but doesn't quite work. Maybe it's a bug.. – Sterpu Mihai Dec 18 '12 at 23:44
show 2 more comments

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.