roughike / flutter_facebook_login

A Flutter plugin for allowing users to authenticate with native Android & iOS Facebook login SDKs.
BSD 2-Clause "Simplified" License
405 stars 330 forks source link

Not Getting email from response. #326

Open DipakSkywave opened 3 years ago

DipakSkywave commented 3 years ago

I'll try this code :

final result = await facebookSignIn.logInWithReadPermissions(['email']); final token = result.accessToken.token; final graphResponse = await http.get( 'https://graph.facebook.com/v2.12/me?fields=name,first_name,last_name,email&access_token=${token}'); final profile = JSON.decode(graphResponse.body);

But not getting an email from my profile.

Getting my response like this,

{ "name": "Iiro Krankka", "first_name": "Iiro", "last_name": "Krankka", "id": "" }

If, anybody has a solution then tell me how to solve this problem?

Thanks.