How to get page id of a facebook page

前端 未结 8 1447
囚心锁ツ
囚心锁ツ 2021-02-19 02:03

I need to fetch page id of a facebook page of a given URL in graph API. e.g this is the URL http://www.facebook.com/platform and I want to get the page id of this facebook page.

8条回答
  •  执笔经年
    2021-02-19 02:39

    Try This :

     $url="http://graph.facebook.com/cocacola";
        $content=file_get_contents($url);
        $x=json_decode($content);
        echo $x->id;
    

提交回复
热议问题