Reputation: 1645
I want to ask permission to read users email id in Facebook using graph api.
I tried this
graph.facebook.com/me?fields=email
I don't know how to ask permission via Graph API to read email.
TIA
Upvotes: 0
Views: 426
Reputation: 11852
You need an access_token
with the email
permission.
Your syntax is wrong too. It's fields=email
.
Upvotes: 1