なぜか質問を投稿すると反映されない。。 何かしら問題があってはじかれている??
アレクサの応答に画像を表示させてみた
スキルを呼び出した時に、画像を表示させてみた
const LaunchRequestHandler = {
canHandle(handlerInput) {
return Alexa.getRequestType(handlerInput.requestEnvelope) === 'LaunchRequest';
},
handle(handlerInput) {
const speakOutput = '<audio src="https://www.hm.ysrock.com/api/test_mp3/wan1.mp3" />';
const largeImageUrl = 'https://www.hm.ysrock.com/api/test_image/largeImageUrl.jpg';
const smallImageUrl = 'https://www.hm.ysrock.com/api/test_image/smallImageUrl.jpg';
return handlerInput.responseBuilder
.speak(speakOutput)
.withStandardCard('ダイです', 'なぁに?', smallImageUrl, largeImageUrl)
.reprompt(speakOutput)
.getResponse();
}
};
画像ファイルは次の制限がある
- 画像の形式は、JPEGもしくはPNG
- サイズは、500KB未満
- smallImageUrlは横720 × 縦480
- largeImageUrlは横1200 × 縦800
※詳しくはAlexaSkillsKitを参照
検索


コメントを残す