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.

How to attach the UIImage to the post on Facebook using SLRequest. This is my code:

SLRequest *facebookRequest = [SLRequest requestForServiceType:SLServiceTypeFacebook
                                                                 requestMethod:SLRequestMethodPOST
                                                                      URL:[NSURL   URLWithString:@"https://graph.facebook.com/me/feed"]
                                                               parameters:[NSDictionary dictionaryWithObject:post forKey:@"message"]];

I know that it is necessary to specify the picture in parameters, but I do not know as it to make.

share|improve this question

1 Answer

up vote 2 down vote accepted

Add the image as multi-data and with the name "picture".

UIImage *myImage = [UIImage imageNamed:@"test.png"];
NSData *myImageData = UIImagePNGRepresentation(myImage);
[facebookRequest addMultipartData:myImageData withName:@"picture" type:@"image/png" filename:nil];
share|improve this answer
I tried to use your example, but image wasn't attached to the post. – Kisel Alexander Oct 24 '12 at 9:25
the problem resolved. Url must be equals graph.facebook.com/me/photos – Kisel Alexander Oct 24 '12 at 9:55
That's correct. If it answered your question, please accept/close it out. – C Abernathy Oct 24 '12 at 10:27

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.