Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在为我的 fb 应用程序使用 PHP Facebook 客户端库,我想知道如何获取有关授权我的应用程序的用户的信息。例如,如何获取他们的位置、年龄或其他可用信息?
您需要获取该用户的访问令牌,然后:
$graph_url = "https://graph.facebook.com/me?access_token=" . $access_token;
它返回用户数据。
需要通过授权url请求这些参数:user_location, user_about_me....
阅读更多内容: https ://developers.facebook.com/docs/