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;
}}
私の質問は重複していません。なぜなら、多くの回答がFacebook SDKの古いバージョン、または外側のページ、オブジェクトなどの例を参照しているが、内側のページは参照していないからです。