How to count likes on FB page?

前端 未结 6 1512
执念已碎
执念已碎 2021-01-15 01:05

I have to do a very simple operation but my programming skills are not enough. I have to count likes in Facebook page and print that number on my web-site. I have two script

6条回答
  •  星月不相逢
    2021-01-15 01:45

    As you already wrote in your question, you can query such information through Facebooks' Graph API. This short example will get the information of the Coca-Cola page, decode the JSON and outputs the number of people that like the page $data->likes.

    ");
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
    $raw = curl_exec($ch);
    curl_close($ch);
    
    $data = json_decode($raw);
    echo $data->likes . " people like Coca-Cola";
    ?>
    

    If you need to perform more tasks than just getting the likes of a page, consider using the Facebook SDK as cpilko suggested.

提交回复
热议问题