LoginSignup
1
3

More than 5 years have passed since last update.

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

Posted at

モック作るとき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();
1
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
3