在使用TimeLine个人资料的用户通过我的应用发布视频时遇到问题。 帖子显得非常小,点击后视频会在新标签页上打开,而不是在Facebook内播放。
以下是一些细节:
我正在构建一个创建自定义视频(SWF)的应用程序,并将其发布在用户的朋友墙上。 我将SWF文件“包装”在包含以下“meta og:”标签的HTML文件中 -
<meta property="fb:app_id" content="******" />
<meta property="og:url" content="THIS PAGE URL" />
<meta property="og:title" content="Title" />
<meta property="og:description" content="some description" />
<meta property="og:type" content="video" />
<meta property="og:image" content="an img url" />
<meta property="og:video" content="URL TO THE SWF FILE" />
<meta property="og:video:type" content="application/x-shockwave-flash" />
<meta property="og:video:width" content="396" />
<meta property="og:video:height" content="297" />
<meta property="og:site_name" content="pickle-games" />
然后在身体中我使用“嵌入”标签嵌入SWF 您可以通过查看http://pickle-games.com/BigBully/hitVideo.php?hit_id=1327242593&hit=hit2
的来源查看示例我正在使用facebook PHP SDK在墙上发布如下:
$facebook->api("/" . $uid . "/feed", "POST",
array(
'link' => $server_url . 'hitVideo.php?hit='. $hit . "&hit_id=".$hit_id ."&u_name=" . $u_name . "&f_name=". $f_name
));
在使用旧配置文件(不是时间轴)的用户上发布时,一切正常,视频在墙上播放。
如上所述,问题仅在使用TimeLine配置文件的用户发布时
BTW - 如果我在朋友的时间线上手动分享链接(而不是通过我的应用),那么一切正常......
我缺少什么? 我如何通过我的应用程序发布它,它也将在时间轴上工作? 感谢。
答案 0 :(得分:3)
试试这个
$attachment = array(
'message' => 'SOMETHING HERE!',
'name' => 'name!',
'caption' => 'caption!',
'link' => 'http://link.com',
'description' => 'description here!',
'access_token' => $request["oauth_token"],
'picture' => 'http://link.com/image.jpg',
'source' => 'link.com/flash.swf',
'actions' => array(array('name' => 'some action',
'link' => 'https://link.com/'))
);
$result = $facebook->api('/'.$friend_id.'/feed/','post',$attachment);
在“消息”中加入一些内容非常重要,否则会给你同样的错误......
答案 1 :(得分:0)
如果您没有
,请注意<meta property="fb:app_id" content="xxxxxxxxxxxxxxxx" />
当发布到墙上时,视频将在新窗口中打开。