gpt4 book ai didi

facebook - 通过 facebook api 在 facebook feed 中发布 swf

转载 作者:行者123 更新时间:2023-12-02 22:12:36 24 4
gpt4 key购买 nike

我正在使用下面的数组

$feeddata = array(
'type'=>'flash',
'method'=>'stream.publish',
'display'=>'iframe',
'link'=> 'https://developers.facebook.com/docs/reference/dialogs/',
'source'=>'http://www.hackerdude.com/channels-test/swfscout_VideoSample.swf',
'picture'=> 'http://fbrell.com/f8.jpg',
'name'=> 'Facebook Dialogs',
'caption'=> 'Reference Documentation',
'description'=> 'Using Dialogs to interact with users.');

并将其传递给 facebook->api($userid.'/feed', 'POST', $feeddata );但在提要中我只能看到图像,当我单击图像时,它会将我带到链接,我如何在提要中看到 swf(理想情况下,单击图片应切换到 swf)

最佳答案

类型应该是“video”而不是“flash”。这是在我的测试中生成可播放视频的参数数组:

array(
'type'=>'video',
'source'=>'http://www.hackerdude.com/channels-test/swfscout_VideoSample.swf',
'picture'=> 'http://fbrell.com/f8.jpg',
'name'=> 'Facebook Dialogs',
'caption'=> 'Reference Documentation',
'description'=> 'Using Dialogs to interact with users.',
);

注意,没有 link 属性,那是因为在我看来,facebook API 目前有一个错误,如果您提供链接,那么它就会获胜不要嵌入您的视频。

JS SDK 确实接受链接并生成可播放视频,这强化了错误理论,如果可行的话,您可以迁移到此方法进行发布,参数如下:

FB.ui({
method:'feed',
type: 'video',
name: 'Facebook Dialogs',
link: 'https://developers.facebook.com/docs/reference/dialogs/',
picture: 'http://fbrell.com/f8.jpg',
caption: 'Reference Documentation',
source: 'http://www.hackerdude.com/channels-test/swfscout_VideoSample.swf',
description: 'Using Dialogs to interact with users.'
});

解决方法

如果您发布的链接具有用于视频嵌入的正确 opengraph 元标记,则嵌入似乎工作正常,下面是一个示例:

要分享的链接(YouTube 为您提供的视频)

<html>
<head>
<title>Fly, you fools!</title>
<meta property="og:title" content="Fly, you fools!" />
<meta property="og:type" content="website"/>
<meta property="og:description" content="Content for Description" />
<meta property="og:image" content="http://i2.ytimg.com/vi/meOCdyS7ORE/mqdefault.jpg" />
<meta property="og:site_name" content="Content for caption"/>
<meta property="og:video" content="http://www.youtube.com/v/meOCdyS7ORE?version=3&autohide=1">
<meta property="og:video:type" content="application/x-shockwave-flash">
<meta property="og:video:width" content="640">
<meta property="og:video:height" content="360">
</head>
<body>
<script>
window.location = 'http://disney.com'; // redirecting users who's clicking on the link, wont affect crawlers since its in js.
</script>
</body>
</html>

php sdk调用分享一下

$this->facebook->api('/me/feed', 'post', array(
'type' => 'link',
'link' => 'http://.../', // put the html file's location here
));

关于facebook - 通过 facebook api 在 facebook feed 中发布 swf,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11649932/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com