我正在使用以下代碼發佈到用戶wall.I從developer.facebook中獲取了此代碼。但在打開對話框時出現「出現錯誤,請稍後再試」等錯誤。Feed對話框 - 「出現錯誤,請稍後再試」
FB.ui(
{
method: 'feed',
name: 'Facebook Dialogs',
link: 'http://developers.facebook.com/docs/reference/dialogs/',
picture: 'http://fbrell.com/f8.jpg',
caption: 'Reference Documentation',
description: 'Dialogs provide a simple, consistent interface for applications"
},
function(response) {
if (response && response.post_id) {
alert('Post was published.');
} else {
alert('Post was not published.');
}
}
);
請分享想法來解決這個
是你以任何方式能解決這個問題嗎? – inquisitive