1

我正在尝试为 Echo Show [Screen Enabled] 和 Echo Dot [Audio only] 建立语音技能。显然,必须根据设备更改响应指令,否则将导致“ Alexa 无法访问该技能”。

我们如何确定 Flask-ASK 中支持的接口?

...
  "context": {
    "System": {
      "application": {
        "applicationId": "<value>"
      },
      "user": {
        "userId": "amzn1.ask.account.<value>"
      },
      "device": {
        "supportedInterfaces": {
          "Display": {},
          "AudioPlayer": {},
          "VideoApp": {}
        }
      }
    }
  },
...
4

1 回答 1

0

像这样

def has_screen():
if context.System.device.supportedInterfaces.Display is None:
        return False
    else:
        return True
于 2018-01-29T23:04:28.853 回答