I'm creating an app that requires users to upload a video via video.upload - this part works fine. Once this is successfully completed I want to show the thumbnail of the video immediately.
I have the video id - but now I need to use this id straight away in order to run the following FQL code:
$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);
}
}
At the moment it just returns an empty array.
Array ( )
I've got the Id - has it propagated to the servers?
Totally lost here,
cheers in advance!
$vlinkis returning what you expect? also are you sure you have granted theuser_videospermission? – ifaour Jan 17 '11 at 22:09