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.

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!!

share|improve this question

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.