Reputation: 2781
i am using facebook Graph ApI to fetch user information from facebook. when i put this url https://graph.facebook.com/100002411409146….......... but it is showing limited information like this
{
"id": "100000824064682",
"name": "Bhupinder Bisht",
"picture": {
"data": {
"is_silhouette": false,
"url": "https://fbcdn-profile-a.akamaihd.net/…/11081203_86239149379…"
}
}
}
i want to get more information from facebook like his name,email and other social info etc. Is it possible to fetch user information from facebook using facebook graph Api or is there any issue with aceess token.
Upvotes: 0
Views: 45
Reputation: 74004
Without user authorization, there is no way you can get any user data, you are not even supposed to get the name of the user:
/me
to get user data.email
permission to get the email: /me?fields=name,email
More information about user data: https://developers.facebook.com/docs/graph-api/reference/v2.6/user
Facebook Login: https://developers.facebook.com/docs/facebook-login/
Upvotes: 0