有没有办法喜欢一个按钮点击一个页面。我试过很多这样的片段
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 视图中打开链接。