我想知道如何使用FQL来计算每日喜欢,评论和分享 我试试这个,但它不起作用..我需要帮助
$fql = "SELECT post_id, actor_id, target_id, message FROM stream WHERE source_id in
(SELECT target_id FROM connection WHERE source_id=153615111448758 AND is_following=1) AND is_hidden = 0";
$apifql="https://api.facebook.com/method/fql.query?format=json&query=".urlencode($fql);
$json=file_get_contents($apifql);
print_r( json_decode($json));