get-dev-logs接口
获取指定设备的运行日志。
如需清除设备日志,可以调用clear-logs接口。
接口原型
协议 |
HTTP/HTTPS GET |
URL |
ip[:port]/sc_cloud/scapi/get-dev-logs?sn=xxx |
数据格式 |
响应消息:Content-Type: application/json |
请求URL参数
请求Cookies
名称 |
描述 |
mwcloud-sid |
用于标识当前登录的字符串 |
mwcloud-uid |
当前登录用户名 |
请求示例
GET /sc_cloud/scapi/get-dev-logs?sn=D301210104248 HTTP/1.1
Accept: application/json, text/plain, */*
Cookie: mwcloud-sid=OCXWUMGEYPGIAWWOETYXPNMVHDZIAZJP; mwcloud-uid=Admin;
响应参数
参数 |
描述 |
Content-Type |
取值为:'application/json; charset=UTF-8' |
Response Body
参数 |
描述 |
result |
返回码。 |
logs |
设备的日志列表。 |
logs
参数 |
描述 |
id |
日志ID。 |
date |
日志产生时间。 |
info |
日志信息。 |
type |
日志类型。1:信息,2:警告,3:错误。 |
sn |
设备序列号。 |
响应示例
HTTP/1.1 200 OK
Content-Type: application/json; charset=utf-8
{
"result": 0,
"logs": [
{
"id": 3630,
"date": 1635217459,
"info": "The device is offline.",
"type": 2,
"sn": "D301210104248"
},
{
"id": 3631,
"date": 1635218146,
"info": "The device is online.",
"type": 1,
"sn": "D301210104248"
}
]
}