1

我正在开发一个谷歌智能家居应用程序,我使用我的开发帐户链接到智能家居应用程序。

在令牌交换之前一切正常。我发现谷歌助手显示“出了点问题,再试一次”。似乎帐户关联失败。我查看了官方文档,但我找不到错误的地方。

以下作为代币兑换api返回:

{
 "token_type":"bearer",
  "access_token":"5699ebed735aa4c58836ad5ccd025e2c",
  "refresh_token":"8e8119ab5fbec7e3c5b5df3a162b4a3e",
  "expires_in":3600
}

The following as actions.json:

{
 "actions": [{
   "name": "actions.devices",
    "deviceControl": {
    },
   "fulfillment": {
     "conversationName": "automation"
   }
 }],
 "conversations": {
   "automation" :
   {
     "name": "automation",
     "url": "https://xxxxxx"
   }
 }
}

顺便说一句,我尝试了很多次,但我的服务器从未收到“action.devices.SYNC”。

4

1 回答 1

0

一旦我添加了履行 api 版本,它就开始工作了。

 "conversations": {
   "automation" :
   {
     "name": "automation",
     "url": "https://xxxxxx",
     "fulfillmentApiVersion": 2
   }
 }
于 2017-11-06T17:44:44.627 回答