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();
Author And Source
この問題について(Alexa Skill作るときのLambdaチートシート), 我々は、より多くの情報をここで見つけました https://qiita.com/bellks51/items/a97288631cbe586c4575著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .