我正在尝试使用PHP SDK发布视频。使用方法'feed',然后我显示你正在使用的代码。我使用了flv视频。
$response = $this->facebook->api('/me/feed/', 'POST', array(
'message' => 'My custom message',
'name' => 'Whatever name',
'description' => 'Whatever description',
'link' => 'http://localhost/my_proyect/',
'picture' => 'http://localhost/my_proyect/my_image.png',
'source' => 'http://localhost/my_proyect/videos/my_video.flv',
'actions' => array(
array(
'name' => 'Some Actions',
'link' => 'http://localhost/my_proyect/'
)
),
'caption' => 'Cool Video'
));
echo json_encode($response);
在我的HTML中我放了FB元标记。
<!-- FB Meta Tags -->
<meta property="fb:app_id" content="xxxxxxxxxxxxx" />
<meta property="og:url" content="http://localhost/my_proyect/" />
<meta property="og:video" content="http://localhost/my_proyect/videos/my_video.flv" />
<meta property="og:video:height" content="640" />
<meta property="og:video:width" content="385" />
<meta property="og:video:type" content="application/x-shockwave-flash" />
<!-- FB Meta Tags END -->
当我看到回复时。返回ID为post的数组。
当我看到用户的墙壁时,只看到包含文字的帖子,但不会看到嵌入的视频或图片。
我的代码中出错了什么?我是否需要通过播放器或默认播放我的视频的播放器?或者因为我在我的本地主机上而无法工作?
提前致谢。