Hey Guys是否可以自定义共享选项?
我正在寻找一个允许我与某些文本共享特定图片的分辨率。图片会发生变化,具体取决于用户最近上传的内容。
真的很难解释我到底要找的是什么,但我会尝试。 例如:用户在我的页面上传他自己的照片。成功上传后,图片底部会显示一些文字。之后,用户应该能够在Facebook的时间线上分享这张照片。
这可以实现吗?
我很满意每一个提示。
答案 0 :(得分:1)
这很有可能 - 您可以使用“共享”对话框准确指定显示的信息:
FB.ui(
{
method: 'feed',
name: 'Facebook Dialogs',
link: 'https://developers.facebook.com/docs/reference/dialogs/',
picture: 'http://fbrell.com/f8.jpg',
caption: 'Reference Documentation',
description: 'Dialogs provide a simple, consistent interface for applications to interface with users.'
},
function(response) {
if (response && response.post_id) {
alert('Post was published.');
} else {
alert('Post was not published.');
}
}
);
如上所示;您可以指定共享内容的name
,link
,picture
,caption
和description
参数。
您可以在此链接中阅读有关Facebook JavaScript SDK的更多信息:
https://developers.facebook.com/docs/reference/javascript/