Last active
October 23, 2018 15:03
-
-
Save frivas/89df031c3995a5c095447f2c0e6f4562 to your computer and use it in GitHub Desktop.
ListItemsIntent example from Creating an Alexa Skill with Python. Article in Medium
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "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