分享照片 - Facebook

时间:2014-12-05 12:54:28

标签: ios facebook

我试图在Facebook上分享照片,但请求总是返回授予NO的访问权限。

为什么呢?

以下是代码:

 ACAccountStore *facebookaccount = [[ACAccountStore alloc] init];
    ACAccountType *facebookaccountType = [facebookaccount accountTypeWithAccountTypeIdentifier: ACAccountTypeIdentifierFacebook];
    NSDictionary *options = @{ ACFacebookAppIdKey: @"*******", ACFacebookPermissionsKey: @[@"publish_stream"], ACFacebookAudienceKey: ACFacebookAudienceFriends };
    [facebookaccount requestAccessToAccountsWithType:facebookaccountType options:options completion:^(BOOL granted, NSError *error) {
        if(granted) { // always returns NO

}}

0 个答案:

没有答案