This file contains 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": true, | |
"sessionId": "amzn1.echo-api.session.bf483080-d2d8-4a8c-83e9-aa6619522763", | |
"application": { | |
"applicationId": "amzn1.ask.skill.e08b758f-07cd-4995-bba4-c52b9abd212b" | |
}, | |
"user": { | |
"userId": "amzn1.ask.account.AGBY4Z6GMAWZ3PUYRY4PWYZP73O2HU6EEMV5JOX7YPL7WT6USSGTLFNALBRVWSDITXSDFZA5CYA64O23VL5SCEQTVLGHODMX2QCOCNUWP4PSBOT5US3V4MJIFZEVUOEHRWADX7VK2OR3DK74UFQLMFVQSELPAF53K53B2SG32ZKSZORWUOL5JLGVHBB66MVJEXN5OVMCES3CPYY" |
This file contains 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", | |
"context": { | |
"AudioPlayer": { | |
"offsetInMilliseconds": 1664, | |
"token": "4", | |
"playerActivity": "PLAYING" | |
}, | |
"System": { | |
"application": { |
This file contains 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.0000000-0000-0000-0000-00000000000", | |
"application": { | |
"applicationId": "amzn1.echo-sdk-ams.app.000000-d0ed-0000-ad00-000000d00ebe" | |
}, | |
"attributes": { | |
"supportedHoroscopePeriods": { |
This file contains 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.0000000-0000-0000-0000-00000000000", | |
"application": { | |
"applicationId": "amzn1.echo-sdk-ams.app.000000-d0ed-0000-ad00-000000d00ebe" | |
}, | |
"attributes": { | |
"supportedHoroscopePeriods": { |
This file contains 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": true, | |
"sessionId": "amzn1.echo-api.session.0000000-0000-0000-0000-00000000000", | |
"application": { | |
"applicationId": "amzn1.echo-sdk-ams.app.000000-d0ed-0000-ad00-000000d00ebe" | |
}, | |
"attributes": {}, | |
"user": { |
This file contains 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
requests = { | |
"LaunchRequest": { | |
"type": "LaunchRequest", | |
"requestId": "string", | |
"timestamp": "string", | |
"locale": "string" | |
}, | |
"CanFulfillIntentRequest":{ | |
}, | |
"SessionEndedRequest":{ |
This file contains 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
const LaunchRequest_Handler = { | |
canHandle(handlerInput) { | |
const request = handlerInput.requestEnvelope.request; | |
return request.type === 'LaunchRequest'; | |
}, | |
handle(handlerInput) { | |
let response = handlerInput.responseBuilder; | |
let say = `Estamos en salón. `; | |
say += `Veo veo, ¿qué ves? una cosita, ¿qué cosita es? Empieza por la letra A `; |