我正在使用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在用户的墙上发布照片而不仅仅是上传?