type
「フラッシュ」ではなく「ビデオ」にする必要があります。私のテストで再生可能なビデオを生成したパラメーター配列は次のとおりです。
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
));