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 can post a picture to FaceBook, without any user interaction, this way:

    NSMutableDictionary *params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
                                   facebookMessageTextView.text, @"message",
                                   imageToSend, @"source",
                                   nil];

    FBRequest *request = [facebook requestWithGraphPath:@"me/photos" andParams:params andHttpMethod:@"POST" andDelegate:self]; 

Now what I would like to do is to display a standard FB dialog, so the user can modify the caption, and possibly decide to post to some other person's wall, or send as a private message. Such as (from the iPhone Facebook app):

enter image description here

I don't need the camera button as the image I pass in is not to be replaced. But I would like the user to be able to select to post to their wall, to another user's wall, change caption and privacy. How would I do so? And can I also select to send this image as a private message?

UPDATE: I can send a photo that is already uploaded to a user's album (via the above code), to their friend's timeline, using this:

    NSMutableDictionary *params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
                                   @"http://www.bitsonthego.com", @"link",
                                   [fbID objectForKey:@"id"], @"object_attachment",
                                   @"my profile", @"name",
                                   @"description", @"description",
                                   @"name of the post", @"name",
                                   @"caption of my post", @"caption",
                                   facebookMessageTextView.text, @"message",
                                   nil];

    [facebook requestWithGraphPath:@"/{friend's id}/feed" andParams:params andHttpMethod:@"POST" andDelegate:self]; 

I still can't seem to use a dialog to specify the friend's in a standard Facebook UI, and it seems I will have to write my own UI to do this. Or?

share|improve this question

1 Answer

Via the Facebook Graph API (the replacement to fbconnect) with publish_stream permissions, you are able to only post a photo to a user's wall or user's album.

Also the API does not allow sending of private messages. I am not aware of any iOS dialogs to assist you in doing this.

However, you might want to look at something called intents as it's called in the Android world, where your app says I want to let the user do this, and then the OS will give the user an option of what program they want to do it in if there are multiple programs. I found this S/O article on iphone equivalent to android intents for opening other apps. Maybe there's something in there you can use for iOS.

share|improve this answer
I'm actually able to send a picture to a friend's wall as updated in my question. – mahboudz Feb 21 '12 at 8:22
Editing answer based upon your update. – DMCS Feb 21 '12 at 15:36
Did this answer help you to find your solution to your question, if so, please accept this answer. See meta.stackoverflow.com/questions/5234/… for how to mark answers accepted. Thank you! – DMCS Apr 17 '12 at 20:17
Sorry, what I was looking for is a way to access the Facebook "dialogs". If you look at the Facebook SDK, you'll see xib files that contain these UI elements, yet I can't seem to be able to call them up. – mahboudz Apr 17 '12 at 20:33
Are you trying to get at the dialogs that are part of the Facebook app? Or are these dialogs available using the public API? – DMCS Apr 17 '12 at 20:48
show 2 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.