0

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の古いバージョン、または外側のページ、オブジェクトなどの例を参照しているが、内側のページは参照していないからです。

4

1 に答える 1

1

Graph API からのページへの「いいね」は禁止されています。オブジェクト (URL、画像) のみを「いいね」できます。

于 2013-05-16T08:12:53.533 に答える