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 am using the following code to upload an image to Facebook wall :

           UIImage *img = [UIImage imageNamed:@"logoits.png"];

           [FBRequestConnection startForUploadPhoto:img
                             completionHandler:^(FBRequestConnection *connection, id result, NSError *error) {

            NSLog(@"Facebook posting %@",result);
            NSLog(@"Facebook posting %@",error);

             }];        

It works as expected but I would like to add a message or title to this uploaded photo, and looking at the documentation of FBRequestConnection there is no example of that. http://developers.facebook.com/docs/sdk-reference/iossdk/3.0/class/FBRequestConnection/

How do I upload an image with message?

share|improve this question

3 Answers

up vote 12 down vote accepted

In the Facebook SDK 3.0 only a image can be post using the given methods, and for other actions you need to use graph a pi's.

So for post a image with message you need to use graph-api. Here is the line of codes which lets you to post a image with message on users timeline.

NSMutableDictionary* params = [[NSMutableDictionary alloc] init];
[params setObject:@"your custom message" forKey:@"message"];
[params setObject:UIImagePNGRepresentation(_image) forKey:@"picture"];
_shareToFbBtn.enabled = NO; //for not allowing multiple hits

[FBRequestConnection startWithGraphPath:@"me/photos"
                                 parameters:params
                                 HTTPMethod:@"POST"
                          completionHandler:^(FBRequestConnection *connection,
                                              id result,
                                              NSError *error) 
 {
     if (error) 
     {
         //showing an alert for failure
         [self alertWithTitle:@"Facebook" message:@"Unable to share the photo please try later."];
     } 
     else
     {
         //showing an alert for success
         [UIUtils alertWithTitle:@"Facebook" message:@"Shared the photo successfully"];
     }
     _shareToFbBtn.enabled = YES;
 }];

and also make sure _shareToFbBtn is enabled only after login is success.

share|improve this answer
Thank you Vishy it work perfectly ! – Ben Sep 27 '12 at 8:51
thanks friend, that works perfectly!!! to mee too!!! – shontauro Nov 17 '12 at 18:15

linesvishy's solution works great and it's also worth to note that

if you were using Facebook SDK 3.1 and you used method FBRequest *request = [FBRequest requestForUploadPhoto:_imageToShare];

you can just use the following lines to replace it:

NSMutableDictionary* params = [[NSMutableDictionary alloc] init]; [params setObject:_textToShare forKey:@"message"]; [params setObject:_imageToShare forKey:@"picture"]; FBRequest *request = [FBRequest requestWithGraphPath:@"me/photos" parameters:params HTTPMethod:@"POST"];

Hope it helps! Happy Coding!

share|improve this answer

Here is an example that posts and image and a note:

http://developers.facebook.com/docs/tutorials/ios-sdk-tutorial/publish-open-graph-story/

share|improve this answer

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.