iOS,如何在Facebook上看一个页面?

时间:2013-03-30 13:34:17

标签: ios facebook facebook-like

有没有办法在按钮上点击页面Click。 我尝试了很多像这样的片段

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调用。”,“type”:“OAuthException”,“code”:3“。 我现在正在做的是打开webview中的链接。

1 个答案:

答案 0 :(得分:0)

代码的所有内容here和Facebook上发布操作的here,例如赞...:)