我想编写一个函数来允许喜欢一个Facebook组。我的代码大致如下:
NSString *urlString = [NSString stringWithFormat:@"%@/likes", fbIdentifier];
NSMutableDictionary *dict = [NSMutableDictionary dictionary];
if (!facebook.accessToken) {
[self login:nil];
return;
}
[facebook requestWithGraphPath:urlString andParams:dict andHttpMethod:@"POST" andDelegate:self];
结果是:
Error Domain=facebookErrDomain Code=10000 "The operation couldn’t be completed. (facebookErrDomain error 10000.)" UserInfo=0x1dd77bc0 {error={
code = 3;
message = "(#3) Application does not have the capability to make this API call.";
type = OAuthException;
}}
我的问题不是重复的,因为很多答案是针对旧版本的sdk sdk或具有外部页面,对象等的示例,而不是内部页面的示例。
最佳答案
您不能喜欢Graph API禁止的页面,而只能喜欢对象(URL,图像)。
关于ios - iOS,Facebook SDK。小组页面的“喜欢”按钮的具体示例?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/16581910/