# 最近设备命令
# API
查询某个设备最近下发的命令。最多获取100
条命令
请求路径 | Request |
---|---|
GET /devices/{deviceKey}/latestCommands | DeviceCommandLatestListRequest |
# 授权
当前API可使用授权类型与具体的授权参数请参考下表(多个授权类型可任选一个)。了解更多请查看平台鉴权。
授权类型 | 授权参数 | 封装授权参数(调用HanCloudsClient提供的方法来封装) |
---|---|---|
用户 | userKey / authKey / authSecret | putUserAuthParams()方法 |
产品 | productKey / queryKey / querySecret | putProductAuthParams()方法 |
设备 | deviceKey / queryToken | putDeviceAuthParams()方法 |
项目 | projectKey / projectAuthKey / projectAuthSecret | putProjectAuthParams()方法 |
# 路径参数
参数名 | 类型 | 是否必须 | 说明 |
---|---|---|---|
deviceKey | String | 是 | 设备唯一Key |
# Query参数
参数名 | 类型 | 是否必须 | 说明 |
---|---|---|---|
limit | Integer | 否 | 获取多少条信息,最多100 |
# 请求示例
/devices/92642b179f1f48bea9bceed80da8527e/latestCommands
# Body参数
无
# 返回示例
{
"page":1,
"pageSize":20,
"total":100,
"data":[
// 具体数据类型请参考 Command
]
}
data
返回数据类型请参考: Command