我正在使用SLRequest
将照片发布到 Facebook。
这是我使用的代码:
SLRequest *postToMyWall = [SLRequest requestForServiceType:SLServiceTypeFacebook
requestMethod:SLRequestMethodPOST
URL:postURL
parameters:postDict];
[postToMyWall addMultipartData:myImageData
withName:@"source"
type:@"multipart/form-data"
filename:@"myPhoto"];
但是默认情况下,所有上传的照片都是私人的,因此不会发布在用户的墙上。
我向用户询问了publish_stream
权限publish_actions
。
如何让 iOS 将照片发布到用户的墙上,而不是仅仅上传?