Alexa Skill作るときのLambdaチートシート


モック作るときLambdaのコンソール直打ちで書けると楽ちんなのでメモ

Alexaに喋らせる

this.response.speak('Alexaに喋らせる')

Alexa待機状態に戻る

this.emit(':responseReady');

IntentにSlotが一つしか無いときに値を取得する

var slot_value = this.event.request.intent.slots.slotName.value;

APIを叩く(標準ライブラリだけで)

const http_request = http.request(api_url, (api_response)=>{});
http_request.end();