1

有没有办法喜欢一个按钮点击一个页面。我试过很多这样的片段

NSURL *baseURL = [NSURL URLWithString:@"https://graph.facebook.com/"];
    AFHTTPClient *httpClient = [[AFHTTPClient alloc] initWithBaseURL:baseURL];

    NSString *link = [NSString stringWithFormat:@"/%@/likes", @"6783623567"];
    NSDictionary *params = @{@"access_token" : [[[FBSession activeSession] accessTokenData] accessToken]};

    [httpClient postPath:link parameters:params success:^(AFHTTPRequestOperation *op, id result) {

        NSLog(@"result %@", result);

    } failure:^(AFHTTPRequestOperation *operation, NSError *error) {

        NSLog(@"error %@", error);

    }];

但它失败了“应用程序没有能力进行这个 API 调用。”,“类型”:“OAuthException”,“代码”:3”。我现在正在做的是在 web 视图中打开链接。

4

1 回答 1

0

这里的所有内容都是代码,这里是 Facebook 上的发布操作,比如点赞...... :)

于 2013-03-30T14:50:57.043 回答