【发布时间】:2017-02-05 01:00:05
【问题描述】:
我正在使用Facebook 开发共享功能。登录功能运行良好。但是当我尝试使用示例代码分享某些内容时,它会显示为
抱歉,出了点问题。
我们正在努力尽快解决此问题。
我使用的代码是
$('#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: ''
}
);
});
【问题讨论】:
标签: facebook-graph-api facebook-javascript-sdk