I currently working on the javascript SDK to implement VK Connect on my website.
Everything is working good except that I'm not able to get the user's email.
Here is the call I make :
VK.Auth.login(function(response) {
console.info(response);
}, 4194304);
The number "4194304" is the bit maks of email as it mentionned here : https://vk.com/dev/permissions
In the response I didn't manage to receive the email. Moreover I didn't find a method that can return email in vk documentation.
Is everybody has already faced this problem?
Thanks a lot!