Facebook 'Friends.getAppUsers' using Graph API

后端 未结 8 1803
盖世英雄少女心
盖世英雄少女心 2020-11-27 09:29

I have an application that uses the old REST API call Friends.getAppUsers to get the list of friends for the current user that have authorized my application.

8条回答
  •  难免孤独
    2020-11-27 10:12

    Old REST API:

    $facebook->api_client->friends_getAppUsers();
    

    New Graph API:

    $facebook->api(array('method' => 'friends.getAppUsers'));
    

提交回复
热议问题