我们正在为我们的Facebook应用使用内置的“阅读”操作,将活动'... read an article'
发布到用户的时间轴上。该发布适用于该应用的所有开发人员。
但是,当我们尝试使用“Auth Dialog Preview User”进行发布时(Facebook使用它来批准操作的使用),发布失败并出现以下OAuthException:
{"Code" : 2, "message": "An unexpected error has occurred. Please retry your request later."}
这导致我们提交的批准操作被拒绝:"We are unable to test this action according to the usage instructions you provided."
关于可能导致上述错误的任何想法?
以下是我们发布行动的方式:
FB.api(
'/me/news.reads',
'post',
{ article : uri },
function(response) {
if (!response || response.error) {
console.log('Error occured while publishing as an article!');
console.log(response);
} else {
console.log('Post as an article was successful! Action ID: ' + response.id);
}
});
答案 0 :(得分:0)
在应用设置中禁用沙盒模式。