I am using ASIHTTPRequest to work with the Facebook GUI.
This is the closest that I sent to publish pictures in the feed. Therefore if i have
ASIFormDataRequest *request = [ASIFormDataRequest requestWithURL:url];
URL https://graph.facebook.com/me/feed
Now, to post a snapshot, I do the following:
[request setPostValue:@"My Message" forKey:@"message"];
[request setPostValue:@"somepic.png" forKey:@"picture"];
[request setPostValue:@"Some Name" forKey:@"name"];
[request setPostValue:@"Some description" forKey:@"description];
[request startAsynchronous];
If you try this, then everything will work perfectly, except that the image will be sent. An empty place for an image is a feed display.
Minar source
share