使用 IOS SDK for Facebook (3.1) ,我发现一旦我设置了我的项目,我就无法更改默认受众。
例如,我将我的测试项目设置为发布到“Only Me”。它工作正常。我正在研究这个例子,做出改变,我从观众“只有我”开始。
http://developers.facebook.com/docs/howtos/publish-to-feed-ios-sdk/
然后我安排拨打以下电话:
[FBSession.activeSession
reauthorizeWithPublishPermissions:
[NSArray arrayWithObject:@"publish_actions"]
defaultAudience:FBSessionDefaultAudienceFriends
completionHandler:^(FBSession *session, NSError *error) {
if (!error) {
// If permissions granted, publish the story
NSLog (@"Here goes nothing");
[self publishStory];
}
}];
这应该将故事发布到 DefaultAudienceFriends。但是,它会继续向 Only Me 发布。
这不应该工作吗?我错过了什么吗?