I have created new facebook app for my application. Now this app is with api version 2.4. I was using below code for login with owin.
app.UseFacebookAuthentication(new FacebookAuthenticationOptions()
{
AppId = "xx",
AppSecret = "xxx",
Scope = { "email", "public_profile" }
});
This code was working fine and returning me the email address with older facebook app with api version 2.3. But now with the api version2.4, it is not returning email. It is asking user for permission to share email bur not returning email in login info.
Is there any modification with api 2.4 which I am missing ?? Please suggest. Thanks in advance . .