我创建的是托管在我的主页上,并通过IFrame包含在3个单独的网站上。投票结束后,我们希望让投票人能够通过Facebook在线分享他们的结果。 Facebook共享需要元标记来操纵标题和描述。完成这一目标的最佳方法是什么?
答案 0 :(得分:0)
为什么你不使用JSDK的stream.publish方法?
FB.ui({
method: 'stream.publish',
message:'your result description',
attachment: {
name: title,
caption: "My Result",
media: [{
type: 'image',
href: 'http://www.example.com/',
src: 'http://www.example/images/working.jpeg'
}]
},
action_links: [{
text: 'Join the Run',
href: 'http://www.example.com/'
}],
user_message_prompt: 'Tell your friends about Get your percentage:'
});
我认为这也是与朋友分享的好方法。