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.

Possible Duplicate:
How to post photos to facebook iphone fbconnect

I am using FB SDK and getting an error while uploading picture on FB post from my app in my view did load i have and UIImageView which has an image that i need to be posted on FB the code of the view did load

ImageView = [[UIImageView alloc] initWithFrame:CGRectMake(0, 0, 65, 65)];
ImageView.center = CGPointMake(42, 43);
[View addSubview:ImageView];

and in my method of FB post i did this

   UIImage *image = [[UIImage alloc]init];
   image = ImageView.image;

   NSMutableDictionary *params = [NSMutableDictionary dictionaryWithCapacity:3];


   [params setObject:@"LINK_HERE" forKey:@"link"];


// due to this line below, i am getting an error :
// "[UIImage length]: unrecognized selector sent to instance 0x170fa0e0" 
// and if use http link instead of image(UIImage) it works, but i want to use my image
   [params setObject:image forKey:@"picture"];    

   [params setObject:@"NAME_HERE" forKey:@"name"];
   [params setObject:@"DEC_HERE" forKey:@"description"];

// Invoke the dialog
       [self.facebook dialog:@"feed" andParams:params andDelegate:self];

How should i use my UIImage inside this code ... any idea ??

share|improve this question
yashesh87.wordpress.com/2012/10/01/… easy way to upload image. – Bob Apple Jan 24 at 12:31
Check my answer here. stackoverflow.com/questions/6959961/… – Janak Nirmal Jan 24 at 12:32

marked as duplicate by Janak Nirmal, Somnath Muluk, M42, Frank Shearar, Jon Egerton Jan 25 at 15:06

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

3 Answers

You can only upload URL based images in Facebook dialog method..Images generated within the app or within app bundle cant be uploaded..

To upload those images you have to use graph API

sample code

NSMutableDictionary *params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
    image, @"source", 
    @"caption desc", @"message",             
    nil];
  [facebook requestWithGraphPath:[NSString stringWithFormat:@"/me/photos?access_token=%@", self.facebook.accessToken]
  andParams:params andHttpMethod:@"POST" andDelegate:self];
share|improve this answer
getting error Error: HTTP status code: 400 – iOSBee Jan 24 at 12:40

you can post your image simply like this

UIImage *imgSource = {insert your image here};
NSString *strMessage = @"Images Description";
NSMutableDictionary* photosParams = [NSMutableDictionary dictionaryWithObjectsAndKeys:
                                     imgSource,@"source",
                                     strMessage,@"message",
                                     nil];

[self.facebook requestWithGraphPath:@"me/photos"
                                 andParams:photosParams
                             andHttpMethod:@"POST"
                               andDelegate:self];   
share|improve this answer
getting error Error: HTTP status code: 400 – iOSBee Jan 24 at 12:39

There is a sample app in facebook sdk..Plz check that..you can also check out these tutorials:-

http://www.raywenderlich.com/1488/how-to-use-facebooks-new-graph-api-from-your-iphone-app

http://www.raywenderlich.com/1578/how-to-get-a-user-profile-with-facebooks-new-graph-api-from-your-iphone-app

http://www.raywenderlich.com/1626/how-to-post-to-a-users-wall-upload-photos-and-add-a-like-button-from-your-iphone-app

share|improve this answer
This does not provide an answer to the question. To critique or request clarification from an author, leave a comment below their post. – Rikesh Jan 24 at 12:46
@Rikesh why u r nt giving the answer then..for me the sample project is best way to deal with ur problem..as well as i have given the link which gives him the description... – json Jan 24 at 12:59
@Rikesh and why down vote...if u have any idea of iOS..check the link... – json Jan 24 at 13:01

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