Skip to content

数据交换格式

请求方式 GET 和 POST

GET和POST方式都支持,建议查询时用GET ,有修改操作用POST

json
{
    auth_code:"abcd...",  //string 授权码 (必填)
    request_content:"请求内容",//string 格式化的json字符串(必填)
    timestamp: 1521688597 ,//int 发起请求时的服务器时间戳 (必填)
    notify_url:"www.baidu.com",//string (可带GET参数) (同步的请求不需要 ,有异步通知时需要)
    sign:"efg...",//string 签名 (必填)
}

request_content 字段内容请使用json格式化为string类型。 http协议请求头 Content-Type 支持 application/json 和 application/x-www-form-urlencoded 两种

性能限制

- request_content  是个数组 多个设备的操作可以在一个数组中 发起请求
- 每分钟最多提交100次,每次最多提交1000条,超出不处理。