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.