在Facebook上发布公共照片,iOS始终是私密的

时间:2013-07-24 14:08:46

标签: iphone ios facebook api publish

我正在使用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_streampublish_actions权限。

如何让iOS在用户的墙上发布照片而不仅仅是上传?

0 个答案:

没有答案