游戏的 Alexa Web API - 技能清单

问题描述 投票:0回答:1

我在 Alexa Skill 的 Interface 下启用了 Alexa Web API for Games。

当我拿到技能清单时,我清楚地看到了

{
    "type": "ALEXA_PRESENTATION_HTML"
}

但是当我在模拟器中运行测试时,我在请求中没有看到以下内容

...
    "device": {
      "deviceId": "amzn1.ask.device.XXXX",
      "supportedInterfaces": {
        **"Alexa.Presentation.HTML": {
          "runtime": {
            "maxVersion": "1.0"
          }**
        }
      }
    },

我是不是漏掉了什么?

alexa-skills-kit alexa-web-api-for-games
1个回答
3
投票

这是因为模拟器不支持Alexa.Presentation.HTML 当您在 Echo show 设备或 FireTv 上尝试您的技能时,您会收到此请求。

© www.soinside.com 2019 - 2024. All rights reserved.