如何使用 PHP 和 Graph API 从 facebook 页面获取视频?现在我正在使用 FQL 来获取视频:
$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'”......这样的东西。如果有人知道,请举例详细说明。