我曾经使用stream.publish
方法执行此操作,我在其中指定了.swf的源文件以及其他参数来呈现媒体,但现在不推荐使用。如何使用Graph API执行此操作?特别是Facebook PHP SDK。
答案 0 :(得分:2)
使用php sdk,您可以这样发布:
$facebook->api('/me/feed', 'post', array(
'type'=>'video',
'source'=>'http://www.hackerdude.com/channels-test/swfscout_VideoSample.swf',
'picture'=> 'http://fbrell.com/f8.jpg',
'name'=> 'Facebook Dialogs',
'caption'=> 'Reference',
'description'=> 'Using Dialogs to interact with users.',
);
您应该可以将link
属性添加到组合中,但此时facebook的api中似乎有一个bug,其中包含link
的帖子可以阻止嵌入swf
。这样它将被嵌入,但结果帖子中的名称将指向swf
文件,这是不好的。使用来自js sdk
的{{3}}发布的链接的相同值不会出现此行为。
一种解决方法可能是使用正确的opengraph元标记创建链接,并将其发布为type => 'link'
。
html文件(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
));