我正试图从我的Android应用程序发布评论到facebook的链接。我已成功通过{object-id}
从Facebook获得GET Graph API
。
以下是我用来发表评论的代码:
Bundle params = new Bundle();
params.putString("message", "This is a test comment");
new GraphRequest(
AccessToken.getCurrentAccessToken(),
"/"+facebookObjectId+"/comments",
params,
HttpMethod.POST,
new GraphRequest.Callback() {
public void onCompleted(GraphResponse response) {
Log.i(TAG, "FACEBOOK GRAPH RESPONSE FOR POSTING COMMENTS: " + response);
}
}
).executeAsync();
但我得到的回应表明无法实现评论可能无法添加到评论插件。
{Response: responseCode: 400, graphObject: null, error: {HttpStatus: 400, errorCode: 100, errorType: OAuthException, errorMessage: (#100) Comments may not be added to a comment plugin}}
有什么建议吗?
答案 0 :(得分:1)
使用图谱API无法做到这一点 Source
此功能从未也无法使用。
此案例已添加错误消息:"评论可能不是 添加到评论插件"
您必须在official facebook bugs list办理登机手续,这对您有帮助。
Inshort此功能至今无法使用,您可以查看here了解更多