The user of my app can post a photo clicking a button that calls a method doing this:
NSMutableDictionary *params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
myMessage, @"message", myImage, @"source",nil];
[facebook requestWithGraphPath:@"/me/photos" andParams:params andHttpMethod:@"POST" andDelegate:self];
The photo and message are correctly posted, but I would like a Dialog "Post to Wall" before posting (with choices to post and cancel) rather than posting directly from the button.
I tried to use
[facebook dialog:@"stream.publish" andParams:params andDelegate:self];
But I wasn't able to set the "params" vector correctly (I tried the selector @"photo", @"image",@"text",@message" with no fortune), and the only thing that I get I a Dialog "Pos to wall" with an empty text box (I would like the photo "myImage" and the box already filled with the string "myMessage".
Any solution? Thanks!!