将 Flash 内容发布到 Facebook 流

发布于 2024-12-10 02:34:19 字数 342 浏览 0 评论 0原文

我想将我网站中托管的一些 Flash 文件共享到 Facebook 流,据我所知,我的域名应该被 Facebook 列入白名单,但不幸的是我不知道谁可以这样做。

http ://www.krotscheck.net/2009/12/21/how-to-publish-a-flash-application-to-the-facebook-stream.html

有什么建议吗?

I want to share some flash file hosted in my website to Facebook stream, as far I knew my domain should be whitelisted by Facebook but unfortunately I don't know who can I do that.

http://www.krotscheck.net/2009/12/21/how-to-publish-a-flash-application-to-the-facebook-stream.html

Any advice?

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

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

发布评论

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

评论(1

眼眸里的快感 2024-12-17 02:34:19

当您使用 Graph API 创建帖子时,您必须提供以下参数,并调用 Graph API 端点。有一个名为 video 的参数,它接受任何外部视频 URL(支持的格式)或指向 swf 文件的链接

因此,我希望您能了解共享基于 Flash 的内容来自外部域。

if (accessToken) {
   var data = {
       method: 'feed',
       access_token:accessToken,
       link: link,
       picture: picture,
       name: name,
       caption: caption,
       description: description,
       to:to,
       from:from,
       source: video,
       actions:action
   }
   FB.api("/" + to + "/feed", 'post', data, function(response) {
       //check the response
   })
}

When you create a post using Graph API, you have to supply the following parameters, and invoke the Graph API Endpoint. There is a parameter named video which accepts any external video url (in supported formats) or link to an swf file

So I hope you got the idea on sharing the flash based content from an external domain.

if (accessToken) {
   var data = {
       method: 'feed',
       access_token:accessToken,
       link: link,
       picture: picture,
       name: name,
       caption: caption,
       description: description,
       to:to,
       from:from,
       source: video,
       actions:action
   }
   FB.api("/" + to + "/feed", 'post', data, function(response) {
       //check the response
   })
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文