0
我正在使用共享功能Facebook
。登錄功能工作正常。但是,當我嘗試使用示例代碼分享內容時,它顯示爲Facebook API分享中顯示錯誤「抱歉,出現了問題,我們正在努力盡快解決問題。」
對不起,出錯了。
我們正在努力盡快解決問題。
我使用的代碼是
$('#fb_test').on('click', function(e){
e.preventDefault();
FB.ui(
{
method: 'feed',
name: 'This is the content of the "name" field.',
link: 'URL which you would like to share ',
picture: "URL of the image which is going to appear as thumbnail image in share dialogbox",
caption: 'Caption like which appear as title of the dialog box',
description: 'Small description of the post',
message: ''
}
);
});