我正在将这些配置用于IoT Agent中的服务和设备。
{
"services":[
{
"resource":"/iot/d",
"apikey":"1234",
"type":"multiSensor"
}
]
}
{
"devices":[
{
"device_id":"myDeviceId",
"entity_name":"LivingRoomSensor",
"entity_type":"multiSensor",
"attributes":[
{
"name":"a",
"type":"celsius"
},
{
"name":"b",
"type":"degrees"
}
]
}
]
}
,我注意到服务中的属性“ type”也可以命名为“ entity_type”,并且必须等于设备的“ entity_type”。如果这些属性不相等,则会出现此错误:
DEVICE_GROUP_NOT_FOUND“,”消息“:”无法找到设备组“,”代码“:404}在获取组设备中
无论如何,IoT代理都能正常工作。我只能在IoT代理中使用设备配置吗?