【发布时间】:2019-05-12 10:41:34
【问题描述】:
根据Facebook官方文档,url:https://developers.facebook.com/docs/sharing/reference/feed-dialog
但是下面“不推荐使用的参数”列中的参数不起作用。 接口功能是否关闭? 我希望有一个人可以帮助我。谢谢。
FB.ui(
{
method: 'feed',
name: 'Facebook Dialogs',
redirect_uri:location.href,
link: location.href,
picture: 'https://pic3.zhimg.com/80/37e17fa3d5d60f9e8bcba3bdc7e7dc06_hd.jpg',
caption: 'Reference Documentation',
description: 'tDialogs provide a simple.',
message: 'tFacebook Dialogs are easy!'
},
function(response) {
if (response && response.post_id) {
console.log(response)
alert('Post was published.');
} else {
alert('Post was not published.');
}
}
);
【问题讨论】:
标签: facebook dialog share customization feed