我正在创建一个应用程序,要求用户通过video.upload上传视频 - 这部分工作正常。一旦成功完成,我想立即显示视频的缩略图。
我有视频ID - 但现在我需要立即使用此ID才能运行以下FQL代码:
$vlink = $json->{'vid'}; //this is the id I get back from executing video.upload
$vlink = $vlink . ""; //turn it to a string
if ($fbme) {
//fql query example using legacy method call and passing parameter
try {
$fql = "SELECT owner, title, description, thumbnail_link, embed_html, updated_time, created_time FROM video WHERE vid=" . $vlink;
$param = array(
'method' => 'fql.query',
'query' => $fql,
'callback' => ''
);
$fqlResultvid = $facebook->api($param);
echo '<pre>';
print_r($fqlResultvid);
echo '</pre>';
} catch (Exception $o) {
d($o);
}
}
目前它只返回一个空数组。
阵 ( )
我有Id - 它是否已传播到服务器?
完全迷失在这里,
提前欢呼!