智能家居应用在谷歌行动帐户关联流程后返回错误



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

在代币交换之前一切都很好。我发现Google Assitant显示"出现问题,再试一次"。帐户关联似乎失败了。我检查了官方文件,但我找不到哪里出了问题。

以下作为令牌交换 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"。

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

"conversations": {
"automation" :
{
"name": "automation",
"url": "https://xxxxxx",
"fulfillmentApiVersion": 2
}
}

相关内容

  • 没有找到相关文章

最新更新