Get Facebook fan page ID

前端 未结 9 1705
名媛妹妹
名媛妹妹 2021-02-04 08:32

I\'ve got the Facebook user ID of the user who created a given page. Now I need to get the page ID to display like box in my website.

Different users have their own Face

9条回答
  •  星月不相逢
    2021-02-04 09:17

    $pages = $facebook->api(array(
    'method' => 'fql.query',
    'query' => 'SELECT page_id FROM page_admin WHERE uid = '.$uid.''
    ));
    

    $uid being the profile id# of the FB user! Fql query using PHP SDK

提交回复
热议问题