Skip to content

Instantly share code, notes, and snippets.

@frivas
Last active October 23, 2018 15:03
Show Gist options
  • Select an option

  • Save frivas/89df031c3995a5c095447f2c0e6f4562 to your computer and use it in GitHub Desktop.

Select an option

Save frivas/89df031c3995a5c095447f2c0e6f4562 to your computer and use it in GitHub Desktop.
ListItemsIntent example from Creating an Alexa Skill with Python. Article in Medium
{
"version": "1.0",
"session": {
"new": false,
"sessionId": "amzn1.echo-api.session.123456789012",
"application": {
"applicationId": "amzn1.ask.skill.987654321"
},
"attributes": {},
"user": {
"userId": "amzn1.ask.account.testUser"
}
},
"context": {
"AudioPlayer": {
"playerActivity": "IDLE"
},
"System": {
"application": {
"applicationId": "amzn1.ask.skill.987654321"
},
"user": {
"userId": "amzn1.ask.account.userId"
},
"device": {
"supportedInterfaces": {
"AudioPlayer": {}
}
}
}
},
"request": {
"type": "IntentRequest",
"requestId": "amzn1.echo-api.request.1234",
"timestamp": "2016-10-27T21:06:28Z",
"locale": "es-ES",
"intent": {
"name": "ListItemsIntent",
"slots": {
"numObj": {
"name": "numObj",
"value": "3"
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment