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've try so many time to figure it out but it still not working.

NSString *full = [[NSBundle mainBundle] pathForResource:@"200" ofType:@"png"];
UIImage *image = [UIImage imageWithContentsOfFile:full];
NSMutableDictionary *params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
                               image,@"picture",
                               @"OK! I just trying to test",@"message",nil];
[facebook requestWithGraphPath:@"My_Friend_ID/feed" andParams:params andHttpMethod:@"POST" andDelegate:self];

This code post only message on my friend wall not with the image, I also try with this:

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

This code dose post image on current user instead!

Can someone help?

share|improve this question

2 Answers

I was unaware you can HTTP POST a photo directly to a friends stream or album. However, you can for the current logged in user IF you have publish_stream permissions. Please note, a app user cannot grant you friends_publish_stream because that permissions just doesn't exist.


From the docs http://developers.facebook.com/docs/reference/api/user/

PHOTO connection of User

Create

You can post photos to a user's Wall on their behalf by issuing an HTTP POST request to PROFILE_ID/photos with the publish_stream permissions and the following parameters.


And from albums docs: http://developers.facebook.com/docs/reference/api/album/

PHOTOS connection of Album

Create

You can add photos to an album by issuing an HTTP POST request to ALBUM_ID/photos with the publish_stream permissions and the following parameters.


Here's some examples for iOS on how to upload a photo from the phone to a user's wall or album.

http://www.raywenderlich.com/1626/how-to-post-to-a-users-wall-upload-photos-and-add-a-like-button-from-your-iphone-app

http://www.icodeblog.com/2011/03/28/facebook-sdk-posting-to-user-news-feed/

http://blog.anscamobile.com/2011/12/uploading-photos-to-facebook-in-corona/

share|improve this answer
Many thanks for you guys trying to help. U guys mention that Facebook dose not provide api for posting image on friend's wall or might not exist yet. But why Facebook app can do that? Or Can I post image on a group or a page instead of friend's wall? Are there exist api for that? – Pichratanak Ky Feb 5 '12 at 13:52
Did this answer help you to find your solution to your question, if so, please accept this answer. See meta.stackoverflow.com/questions/5234/… for how to mark answers accepted. Thank you! – DMCS Apr 17 '12 at 20:17

I don't think you can set an image file as an argument for posting to another user's wall. You can, however, post a link.
See Facebook's docs. Check the section about a Post's fields:

https://developers.facebook.com/docs/reference/api/post/

share|improve this answer
0 down vote accept Many thanks for you guys trying to help. U guys mention that Facebook dose not provide api for posting image on friend's wall or might not exist yet. But why Facebook app can do that? Or Can I post image on a group or a page instead of friend's wall? Are there exist api for that? – Pichratanak Ky Feb 5 '12 at 13:52
You can post an image by providing a link to it. You can't post an image file itself. – jcm Feb 6 '12 at 2:34

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.