0
如何使用PHP和Graph API從facebook頁面獲取視頻?現在,我使用FQL得到視頻:facebook圖api獲取視頻
$fql = "SELECT vid, owner, title, description, thumbnail_link, embed_html, updated_time, created_time FROM video WHERE owner = PAGE_ID";
$response = $facebook->api(array(
'method' => 'fql.query',
'query' =>$fql,
));
我也想獲得喜歡,喜歡數和評論的視頻。是否也可以在Graph API中使用條件?就像「Where description ='myvideo'」...這樣的事情。如果有人知道,請用示例詳細說明。