2
我已經爲回聲點構建了幾種技巧。現在,我正在嘗試爲echo顯示創建技巧。我已經通過幾個文件了:回聲顯示的構建技巧
但是,我沒有得到放在哪裏directives
以及如何使用lambda
的一樣。沒有文檔告訴我們如何處理lambda函數,要輸入slots
和utterances
。任何人都可以告訴我如何創建一個基本的回聲顯示技能來播放視頻。
這裏是我從文檔得到了一個樣本指令:
{
"version": "1.0",
"sessionAttributes": null,
"response": {
"outputSpeech": null,
"card": null,
"directives": [
{
"type": "VideoApp.Launch",
"videoItem":
{
"source": "https://www.example.com/video/sample-video-1.mp4",
"metadata": {
"title": "Title for Sample Video",
"subtitle": "Secondary Title for Sample Video"
}
}
}
],
"reprompt": null
}
}