在 IFrame 中使用 Facebook Share 自定义标题和描述

发布于 2024-10-01 03:30:30 字数 132 浏览 5 评论 0原文

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

I've created that is hosted on my home site, and included on 3 individual sites via IFrame. After the poll is completed, we would like to give pollers the ability to share their results via Facebook online. The Facebook share requires meta tags to manipulate the title and description. What would be the best way to complete this objective?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

半世晨晓 2024-10-08 03:30:30

为什么不使用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:'
});

我想这也是一个与朋友分享的好方法。

why you dont use the stream.publish method of JSDK?

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

I think this is also a good way to share with friends.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文