我使用webhook在amazon alexa中调用技能
I used webhook to call the skill in amazon alexa
当用户调用任何意图时,它会回复适当的答案,现在当 alexa 回复用户说停止的答案时,获取请求技能的响应有问题。
如何使用 webhook 中的内置意图。
"There was a problem with the requested skill's response."一般表示你的回复有问题。当用户说 "Stop" 时,将触发 AMAZON.StopIntent
。确保您的 AMAZON.StopIntent
处理程序返回正确的响应 JSON.
AMAZON.StopIntent
的示例响应如下所示:
{
"body": {
"version": "1.0",
"response": {
"outputSpeech": {
"type": "SSML",
"ssml": "<speak> Bye </speak>"
},
"shouldEndSession": true
},
"sessionAttributes": {}
}
}
当用户调用任何意图时,它会回复适当的答案,现在当 alexa 回复用户说停止的答案时,获取请求技能的响应有问题。
如何使用 webhook 中的内置意图。
"There was a problem with the requested skill's response."一般表示你的回复有问题。当用户说 "Stop" 时,将触发 AMAZON.StopIntent
。确保您的 AMAZON.StopIntent
处理程序返回正确的响应 JSON.
AMAZON.StopIntent
的示例响应如下所示:
{
"body": {
"version": "1.0",
"response": {
"outputSpeech": {
"type": "SSML",
"ssml": "<speak> Bye </speak>"
},
"shouldEndSession": true
},
"sessionAttributes": {}
}
}