https://developers.google.com/actions/smarthome/create-app#actiondevicessync上的文档提到,roomHint
同步请求的 JSON 响应字段可用于让 Google 自动将设备分配到正确的房间。
但是,无论我在该字段中返回什么,用户仍然必须手动将每个设备分配到一个房间,我无法让 Google 使用该roomHint
字段自动识别正确的房间
这是一个示例响应:
{
"requestId": "500166151965294748",
"payload": {
"devices": [
{
"id": "9",
"type": "action.devices.types.LIGHT",
"traits": [
"action.devices.traits.OnOff"
],
"name": {
"name": "Light"
},
"willReportState": false,
"roomHint": "Attic"
}
]
}
}