Facebook like count url

后端 未结 2 965
滥情空心
滥情空心 2021-01-17 05:21

As Facebook changed their API and deprecated the old one, I need to get data (likes count, share count, comment count) about single pages.

I figured out how to get

2条回答
  •  悲哀的现实
    2021-01-17 06:10

    The results of json_decode() are Objects. So you can easily browse through like this:

    $data ){
        echo $site."\n";
        echo $data->og_object->likes->summary->total_count;
    }
    
    ?>
    

提交回复
热议问题