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);
}
});