In Facebook Graph API, what are the API calls to get a user's email address
问题 Here I'm simply sending a GET request through a rest client.It returns only user id and name .Additionally, how do I retrieve user's email using only a GET request? https://graph.facebook.com/me?access_token= [User's access token] 回答1: https://graph.facebook.com/me?fields=name,email&access_token=[User's access token] It´s called "Declarative Fields" and came with v2.4 of the Graph API: https://developers.facebook.com/docs/apps/changelog#v2_4 API Explorer test: https://developers.facebook.com