如果$ PfullURL是一个网页,我使用以下方法来获取我认为的所有评论,这样我就可以解析每天唯一用户评论的数据。
$fql_query_url = 'https://graph.facebook.com/comments/?ids='.$PfullURL;
$fql_query_result = file_get_contents($fql_query_url);
$fql_query_obj = json_decode($fql_query_result, true);
这会将我的回报限制为25,而且我不确定如何重新查询此查询,以便我在页面上获得所有评论。
答案 0 :(得分:0)
只需在&limit=200
$PfullURL;
即可