Alexa VideoApp.Launch指令 - 目标设备不支持指定的指令

时间:2017-08-29 19:10:31

标签: alexa alexa-skill

我正在尝试在我的自定义技能中使用VideoApp.Launch指令。因此,我将视频应用的技能信息全局字段设置为true,并为视频播放器添加了所需的意图。

之后我开始使用example from this page

进行测试

在我添加Video指令之前,alexa很简单地返回输出内容。但在添加此目录后,我收到错误:目标设备不支持指定的指令。我无法找到解决此问题的任何文档。我错过了设备设置吗?

更新:我也尝试使用Display.RenderTemplate并获得相同的结果。错误:目标设备不支持指定的指令。我为音频,渲染模板和视频设置了必需的全局字段。

我目前检查的是:msg.context.System.device.supportedInterfaces

    "supportedInterfaces": {
      "AudioPlayer": {}
    }

我正在使用回声。为什么没有其他接口可用?我怎样才能使它们可用?

我的代码和错误消息如下。

    /**
  *
  * main() will be invoked when you Run This Action
  *
  * @param Cloud Functions actions accept a single parameter, which must be a JSON object.
  *
  * @return The output of this action, which must be a JSON object.
  *
  */
var main = function(msg) {
   var response = {
     version: "1.0",
     response: {
       outputSpeech: {
         type: "PlainText",
         text: "" + 'JSON.stringify(msg.request.intent)' //'.slots.questionContent.value'
       },
       "directives": [
        {
         "type": "VideoApp.Launch",
         "videoItem":
         {
             "source": "https://www.example.com/video/sample-video-1.mp4",
            "metadata": {
                 "title": "Title for Sample Video",
                 "subtitle": "Secondary Title for Sample Video"              
            }
         }
        }    
     ],
     "reprompt": null
     }, "sessionAttributes": null

   };
   return {
     statusCode: 200,
     headers: { "Content-Type": "application/json" },
     body: new Buffer(JSON.stringify(response)).toString("base64")
   };
};
Alexa历史记录中的

错误消息:

Error Message

2 个答案:

答案 0 :(得分:2)

问题在于您的设备" Amazon Echo"没有视频显示。 "亚马逊回声秀"支持以下内容:

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

此处提供更多信息:https://developer.amazon.com/docs/custom-skills/best-practices-for-echo-show-skills.html#parse-supported-interfaces

答案 1 :(得分:0)

第二,请求中不应包含"sessionAttributes": null。它也写在文档中。

  

注意:shouldEndSession参数不得包含在   响应,即使该值设置为null。

https://developer.amazon.com/de/docs/custom-skills/videoapp-interface-reference.html