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 am using the Facebook IOS library. I am trying to post an image to the user's wall. I am able to upload the image to the application Album, but i can not get it to show up on the user's wall.

The application is granted the publish_stream permissions:

[self.facebook authorize: [NSArray arrayWithObject: @"publish_stream"]];

The image is posted with the following code:

NSMutableDictionary * params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
                                   UIImagePNGRepresentation(_image), @"source", 
                                   message, @"message", nil];

[self.facebook requestWithGraphPath: @"me/photos"
                          andParams: params
                      andHttpMethod: @"POST"
                        andDelegate: self];

This works great - the image end up in the app album on Facebook - now how do I get this image to show up on the user's wall?

Thanks

Greg

share|improve this question
It turns out that this does work in some cases. If I use an iPad to post the picture, when using the Facebook app on the same iPad the picture is visible on the user's wall. If I use another device (iPhone or computer/browser) it is not visible on the well, just in Photo's-Albums. – user1262701 May 19 '12 at 12:12
i think its show a status message once you started to upload other images in your album. – Veer May 21 '12 at 15:53

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.