3

我正在尝试使用 Graph API 获取公共 Facebook 页面的提要,如果不提示用户授予权限,我无法弄清楚如何做到这一点。

以下代码有效,但会提示用户提供权限:

- (void)doFacebookAuthCompletion:(void (^)(ACAccount* account))completion
{
    ACAccountStore* accountStore = [[ACAccountStore alloc] init];
    ACAccountType* accountType = [accountStore accountTypeWithAccountTypeIdentifier:ACAccountTypeIdentifierFacebook];
    NSDictionary* fbOptions = @{
                                ACFacebookAppIdKey: @"<app-id-key>",
                                ACFacebookPermissionsKey: @[ @"email" ]
                                };

    [accountStore requestAccessToAccountsWithType:accountType
                                          options:fbOptions
                                       completion:^(BOOL granted, NSError *error) {
                                           if (granted) {
                                               completion([[accountStore accountsWithAccountType:accountType] lastObject]);
                                           } else {
                                               NSLog(@"%@", [error localizedDescription]);
                                           }
                                       }];
}

- (void)updateFeed
{
    [self doFacebookAuthCompletion:^(ACAccount* account) {
        // What we want to get
        NSURL* url = [NSURL URLWithString:@"https://graph.facebook.com/microsoft/feed"];
        NSDictionary* parameters = @{ };

        // The request
        SLRequest* request = [SLRequest requestForServiceType:SLServiceTypeFacebook
                                               requestMethod:SLRequestMethodGET
                                                         URL:url
                                                  parameters:parameters];
        [request setAccount:account];

        // Send it
        [request performRequestWithHandler:^(NSData *responseData, NSHTTPURLResponse *urlResponse, NSError *error) {
            if (error) {
                NSLog(@"%@", [error localizedDescription]);
            } else {
                NSString *dataString = [[NSString alloc] initWithData:responseData encoding:NSStringEncodingConversionAllowLossy];
                NSLog(@"Response Data: %@", dataString);
            }
        }];
    }];
}

我什至尝试使用https://developers.facebook.com/docs/reference/api/page/中引用的应用程序令牌,它只能在服务器端安全使用,但仍然没有得到任何结果。这段代码:

- (void)doFacebookAuthCompletion:(void (^)(ACAccount* account))completion
{
    ACAccountStore* accountStore = [[ACAccountStore alloc] init];
    ACAccountType* accountType = [accountStore accountTypeWithAccountTypeIdentifier:ACAccountTypeIdentifierFacebook];
    ACAccount* account = [[ACAccount alloc] initWithAccountType:accountType];
    account.credential = [[ACAccountCredential alloc] initWithOAuthToken:@"<app-token>" tokenSecret:@"<app-secret>"];
    completion(account);
}

给出以下输出:

Response Data: {"error":{"message":"An access token is required to request this resource.","type":"OAuthException","code":104}}

虽然Graph API Explorer在相同的情况下工作得很好<app-token>(它不会像这样要求秘密- initWithOAuthToken:tokenSecret:)。

即使这种方法有效,发布也不安全。

我现在被困住了。请帮忙?

4

1 回答 1

2

我无法给出完整的答案,因为我从未使用过 iOS,但在 Facebook 方面,Graph API 不会让你在没有某种令牌的情况下获得任何东西。安全与否,唯一的方法是使用您的应用程序 ID 和密码来生成可以使用的令牌。你可以得到一个使用,例如:

https://graph.facebook.com/oauth/access_token?
client_id=YOUR_APP_ID&client_secret=YOUR_APP_SECRET&
grant_type=client_credentials 
于 2013-04-24T14:37:47.657 回答