Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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!

share|improve this question
Are you sure that $vlink is returning what you expect? also are you sure you have granted the user_videos permission? – ifaour Jan 17 '11 at 22:09
Yeah, $vlink is returning the id of the video just uploaded. req_perms' => 'user_status, user_videos, publish_stream, email, user_birthday' < These are the extended permissions I am accessing also, very strange – williamsowen Jan 19 '11 at 11:52
Hello! Can you show code, wich uploads video??? You realy can help to me, I tried do this with restfb, but – Владимир Дворник Feb 10 '11 at 13:15

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.