0

我创建了托管在我的主站点上,并通过 IFrame 包含在 3 个单独的站点上。投票完成后,我们希望投票者能够通过 Facebook 在线分享他们的结果。Facebook 分享需要元标记来操作标题和描述。完成这个目标的最佳方式是什么?

4

1 回答 1

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:'
});

我认为这也是与朋友分享的好方法。

于 2011-01-10T12:17:05.327 回答