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 trying to post a picture onto a friend's wall on facebook using the Open Graph API along with a custom message from my native iPhone app. I know it's possible to do that on facebook directly on a friend's page. However, I want to achieve the sam from my native iPhone app using the Open Graph API. Here is the code I found that enables the current user to upload a picture to their facebook wall:

-(IBAction)postPictureToWall:(id)sender {

 NSMutableDictionary *variables = [NSMutableDictionary dictionaryWithCapacity:2];

 //create a UIImage (you could use the picture album or camera too)
 UIImage *picture = [UIImage imageNamed:@"picture.png"];

 //create a FbGraphFile object insance and set the picture we wish to publish on it
 FbGraphFile *graph_file = [[FbGraphFile alloc] initWithImage:picture];

 //finally, set the FbGraphFileobject onto our variables dictionary....
 [variables setObject:graph_file forKey:@"file"];

 [variables setObject:@"This is a photo for you" forKey:@"message"];

 //the fbGraph object is smart enough to recognize the binary image data inside the FbGraphFile
 //object and treat that is such.....
 FbGraphResponse *fb_graph_response = [fbGraph doGraphPost:@"me/photos" withPostVars:variables];
 NSLog(@"Photo uploaded:  %@", fb_graph_response.htmlResponse); 
}

I'm able to publish the picture to my wall but not on my friend's wall using their ID. I tried putting a specific friend's id in place of "me" in "me/photos" in the following line:

FbGraphResponse *fb_graph_response = [fbGraph doGraphPost:@"me/photos" withPostVars:variables];

But it ended up posting it on my wall. Can anyone help me out? Many thanks in advance.

share|improve this question
Even I am facing the same problem. I have tried using stream.publish, but in that case also its not working. – Rahul Sep 20 '11 at 5:49

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.