php - facebook graph api to fetch videos -


how videos facebook page php , graph api? right using fql videos:

$fql = "select vid, owner, title, description, thumbnail_link, embed_html, updated_time, created_time video owner = page_id";  $response = $facebook->api(array( 'method' => 'fql.query', 'query' =>$fql, )); 

i likes, counts , comments videos. possible use condition in graph api? "where description = 'myvideo'"... this. if know, please show me in detail example.

you can use where on indexed fields (the ones marked star in docs). other stats not available video itself, post videos appears in. need know video has been used , query post/status/comment/... id.


Comments