如何使用 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"]];
我知道有必要在参数中指定图片,但我不知道它是什么。
答案 0 :(得分:6)
将图像添加为多数据,名称为“图片”。
UIImage *myImage = [UIImage imageNamed:@"test.png"];
NSData *myImageData = UIImagePNGRepresentation(myImage);
[facebookRequest addMultipartData:myImageData withName:@"picture" type:@"image/png" filename:nil];