首先,如果我在alexa应用程序开发页面上使用模拟器,一切正常,尽管请求看起来有些不同。如果我对我的Alexa设备说'#34;询问appName {x}和{y}"然后我的Web服务被调用并显示错误消息"将请求分派给技能时发生异常"。 {X}和{Y}是我的意图插槽。
只有在直接与Alexa交谈并且模拟器再次完美运行时才会发生这种情况。
以下是我与Amazon Echo交谈时收到的请求。
{
"version": "1.0",
"session": {
"new": false,
"sessionId": "amzn1.echo-api.session.6a13f2db-a9f6-43a9-bc4d-x063b86905b6c",
"application": {
"applicationId": "amzn1.ask.skill.ef8bd603-cc39-406e-bed8-a8f9xc94abba2"
},
"user": {
"userId": "xxx"
}
},
"context": {
"AudioPlayer": {
"playerActivity": "STOPPED"
},
"System": {
"application": {
"applicationId": "amzn1.ask.skill.ef8bd603-cc39-406e-bed8-a8f9c94abba2"
},
"user": {
"userId": "xxxx"
},
"device": {
"deviceId": "xx",
"supportedInterfaces": {
"AudioPlayer": {}
}
},
"apiEndpoint": "https://api.eu.amazonalexa.com",
"apiAccessToken": "xxxx"
}
},
"request": {
"type": "SessionEndedRequest",
"requestId": "amzn1.echo-api.request.2a993410-e7a8-4f37-87d7-a5063ef185b5",
"timestamp": "2017-12-22T00:11:45Z",
"locale": "en-GB",
"reason": "ERROR",
"error": {
"type": "INVALID_RESPONSE",
"message": "An exception occurred while dispatching the request to the skill."
}
}
}
以下是我的意图Schema
{
"intents": [
{
"intent": "StartGameIntent"
},
{
"slots": [
{
"name": "playerOne",
"type": "AMAZON.US_FIRST_NAME"
},
{
"name": "playerTwo",
"type": "AMAZON.US_FIRST_NAME"
}
],
"intent": "PlayTheGame"
},
{
"intent": "StopTheGame"
},
{
"slots": [
{
"name": "damage",
"type": "AMAZON.NUMBER"
},
{
"name": "player",
"type": "AMAZON.US_FIRST_NAME"
}
],
"intent": "PlayerTakesDamage"
},
{
"slots": [
{
"name": "health",
"type": "AMAZON.NUMBER"
},
{
"name": "player",
"type": "AMAZON.US_FIRST_NAME"
}
],
"intent": "PlayerHeals"
}
]
}
如果我在没有任何插槽的情况下询问意图,它的工作正常。为什么在有插槽时没有找到我的意图?
我正在使用Language UK运行此应用程序。
答案 0 :(得分:2)
我最终创建了两种语言,英国和美国,然后我使用了新技能构建器,确保在我完成编辑/添加我的意图和示例话语后保存并构建模型。
我还使用了不同的广告位类型,而不是 AMAZON.US_FIRST_NAME 我使用了 AMAZON.GB_FIRST_NAME 。
下面是我的技能构建页面设置的屏幕截图,用于让我的Alexa技能正常工作
只是指出这是交互模式的一个问题,目前处于测试阶段的新构建器似乎为我解决了这个问题。
答案 1 :(得分:1)
尝试检查AWS lambda日志以查找请求中的错误。它应该为您提供失败的模块名称(例如index.js)和异常的行号。
您还可以将console.log()消息添加到lambda代码中,以帮助缩小发生错误的位置。
答案 2 :(得分:0)
请检查您的技能(lambda方法)是否在允许的时间内(7-10秒)做出响应。