Reputation: 597
I wonder about the accessToken
, after account linking everything works well, but I have problems with the accessToken
, it is not shown in the request generated. After account linking this is an example of what Alexa returns:
"user": {
"userId": "amzn1.ask.account.myuserid",
"permissions": {
"consentToken": "allMyConsentTOKENNNNNNN"
}
}
After linking my account Alexa tell me that the account was successfully linked.
Thanks for help
Upvotes: 0
Views: 182
Reputation: 4387
If you have configured Account Linking properly and is able to link your account, then accessToken
will be there in every subsequent request from your skill.
Make sure that:
Access Token URI
, is it a valid one.access_type
, set the value to offline
if your application needs to refresh access tokens when the user is not present at the browser.Upvotes: 2