IOS 6中的SLRequest

时间:2012-10-18 15:55:10

标签: facebook ios6

如何使用 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"]];

我知道有必要在参数中指定图片,但我不知道它是什么。

1 个答案:

答案 0 :(得分:6)

将图像添加为多数据,名称为“图片”。

UIImage *myImage = [UIImage imageNamed:@"test.png"];
NSData *myImageData = UIImagePNGRepresentation(myImage);
[facebookRequest addMultipartData:myImageData withName:@"picture" type:@"image/png" filename:nil];