我们正在为我们的 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);
}
});