我正在尝试使用Graph API在我的Facebook粉丝页面上回复评论。
我有时可以这样做,但有时我会收到此错误:“返回无效的状态代码:400”。
错误对象:
{
"error": {
"message": "(#1705) There was an error posting to this wall",
"type": "OAuthException",
"code": 1705,
"fbtrace_id": "BhmMag2JiPk"
},
"__debug__": {
}
}
代码:
function sendComment(comment_id, text){
request({
url: 'https://graph.facebook.com/v2.8/'+ comment_id + '/comments',
qs: {access_token:token, debug:'all'},
method: 'POST',
json: {
message: text,
}
}, function(error, response, body) {
//Check for error
if(error){
return console.log('Error:', error);
}
//Check for right status code
if(response.statusCode !== 200){
console.log('Invalid Status Code Returned:', response.statusCode);
console.log(JSON.stringify(response.body));
}
})
}
任何人都知道如何修复它?感谢