4

如何使用SLRequest将UIImage附加到 Facebook 上的帖子。这是我的代码:

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

我知道有必要在参数中指定图片,但我不知道如何制作。

4

1 回答 1

6

将图像添加为多数据并命名为“图片”。

UIImage *myImage = [UIImage imageNamed:@"test.png"];
NSData *myImageData = UIImagePNGRepresentation(myImage);
[facebookRequest addMultipartData:myImageData withName:@"picture" type:@"image/png" filename:nil];
于 2012-10-20T14:01:38.683 回答