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 can post a message on a friend's Facebook wall, but I want to post an Image. What do I need to add to my code?

Here is my current code:

[[FBRequestWrapper defaultManager] sendFBRequestWithGraphPath:_graphPath params:
  [NSMutableDictionary dictionaryWithObject:@"Post on wall :)" forKey:@"message"]
andDelegate:self];
share|improve this question

1 Answer

One solution for this is to post to the user's photo album with a caption. To do this you will need to add additional parameters to the dictionary:

[[FBRequestWrapper defaultManager] sendFBRequestWithGraphPath:_graphPath params:
   [NSMutableDictionary dictionaryWithObjectsAndKeys:@"Post on wall :)", @"message", image, @"source"] andDelegate:self];

image is the UIImage you wish to post.

You need to also make sure that the _graphpath points to the users photo album: @"me/photos"

share|improve this answer

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.