I'm new in Alexa Skill development and I'm trying to do a skill in which Alexa answers with my email.
I'm developing the skill in Java and I've just been able to take the user session id with:
getSession().getUser().getUserId()
Getting amzn1.ask.account.{id}
as solution
The problem is that a need to get the user email (example: username@gmail.com)
Is there any method to do it?
Thanks for help!