如何发出 Facebook 视频嵌入白名单请求?

发布于 2025-01-01 07:28:15 字数 197 浏览 1 评论 0原文

我需要在用户墙上发布一个 swf,它可以在墙内播放。

我搜索了几天的解决方案,并了解到我需要应用 Facebook 视频嵌入白名单请求才能做到这一点。但是,旧的请求表单链接不起作用(http://www.facebook.com/help/contact.php?show_form=video_embed_whitelist)。

有人可以帮忙吗?

I need to post a swf on user wall and it is able to play inside the wall.

I searched the solution for few days and understand that I need to apply a facebook video embed whitelist request in order to do it. However the old request form link doesnt work (http://www.facebook.com/help/contact.php?show_form=video_embed_whitelist).

Anyone can help?

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

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

发布评论

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

评论(3

兲鉂ぱ嘚淚 2025-01-08 07:28:15

如果您尝试在出现的 Facebook 弹出窗口中写一些内容,然后将其发布到 feed,则当单击缩略图时,视频会在墙上播放。

如果源中没有消息,缩略图将成为 SWF 本身的直接链接并在新窗口中打开。

If you try writing something in the Facebook pop-up that comes up and then publish it to feed, the video would play there on the wall itself when the thumbnail is clicked.

If the feed doesn't have a message, the thumbnail becomes a direct link to the SWF itself and opens up in a new window.

挥剑断情 2025-01-08 07:28:15

您无需为此申请任何白名单请求。任何摘要故事中都可以包含 SWF。请参阅 Facebook JavaScript SDK,了解有关您可以在帖子中发布哪些元素的信息饲料故事。您可以使用的参数之一是 source 参数。

摘自文档:

来源:
附加的媒体文件(例如 SWF 或视频文件)的 URL
到这个帖子。如果同时指定了来源和图片,则仅指定来源
使用过。

所以...例如 - 您可以使用这些参数进行调用:

 var obj = {
   method: 'feed',
   link: 'http://your_site.com/',
   source: 'http://your_site.com/your_swf_movie.swf',
   name: 'Publish SWF in feed!',
   caption: 'SWF's are cool',
   description: 'Here is an SWF file!.'
 };
 FB.ui(obj);

You don't need to apply for any whitelist request for this. Any feed story can contain an SWF in it. Please see the Facebook JavaScript SDK for information about what elements you can post within a feed story. One parameter that you can use is the source parameter.

Taken from the documentation :

source:
The URL of a media file (e.g., a SWF or video file) attached
to this post. If both source and picture are specified, only source is
used.

so... for example - you could make a call with these parameters :

 var obj = {
   method: 'feed',
   link: 'http://your_site.com/',
   source: 'http://your_site.com/your_swf_movie.swf',
   name: 'Publish SWF in feed!',
   caption: 'SWF's are cool',
   description: 'Here is an SWF file!.'
 };
 FB.ui(obj);
孤单情人 2025-01-08 07:28:15

如果你的网站在白名单中,swf可能会直接在墙上播放,否则会弹出一个新窗口来播放swf。

If your site is in the white list, the swf may play directly on the wall, otherwise it will pop up a new window to play the swf.

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