首页 > 解决方案 > Alexa 请求的 supportedInterfaces 属性的所有可能值是什么

问题描述

Alexa文档supportedInterfaces以下列方式在其请求中描述了该属性:

在此处输入图像描述

除了上面AudioPlayer提到的,在哪里可以看到可以出现在请求中的受支持接口的完整列表?

目前,当从 Alexa 开发者控制台进行测试时,supportedInterfaces 的集合没有被填充。

在此处输入图像描述

这是正常的行为吗?我认为至少应该填充一个 AudioPlayer,或者不填充?怎样才能让它充满?

标签: alexaalexa-skills-kitvoice-recognition

解决方案


Echo Show 具有以下键:

"supportedInterfaces":{
    "Display":{},
    "AudioPlayer": {},             
    "VideoApp":{}
}

来源:https ://developer.amazon.com/blogs/alexa/post/12826e9e-e06a-4ab4-a583-8e074709a9f3/how-to-build-alexa-skills-for-echo-show1

我注意到在使用该应用程序时,您也会得到这个:

"supportedInterfaces": {
    "Geolocation": []
}

推荐阅读