1)由平台提供,开发者可修改某设备商品的摆放信息
2)URL地址:https://public.zjuhe.cn/api/sc_modification_details
3)请求参数
变量名 | 必填 | 类型 | 说明 |
encoding | 是 | String(128) | 专属编码(例:sc20190924125636),平台方提供开发者访问的标识码 |
APPID | 是 | String(128) | 公众号ID(例:wx68727as88872t97),微信公众号专属标识 |
type_id | 是 | Int(10) | 机型ID(例:20001) |
chest_id | 是 | int(10) | 柜门编号(例:1) |
goods_id | 是 | Int(10) | 商品ID(例:1188) |
type | 是 | Int(2) | 柜门状态(0:开启 1:关闭) |
4)举例如下:
$ date =[
‘encoding’ => ‘sc20190924125636’,
‘APPID’ => ‘wx68727as88872t97’,
‘type_id’ => 20001,
‘chest_id’ =>1,
‘goods_id’ => 1188,
‘type’ =>0
];
$result = get_http_content('https://public.zjuhe.cn/api/sc_modification_details', 'POST',$date);
5)返回结果
变量名 | 必填 | 说明 | |
code | 是 | 状态码,200为正常,其他均为不正常(1024) | |
msg | 是 | 成功或者失败的说明(例:更改成功/更改失败) | |
data | 是 | 该接口反回具体的数值 |
示例: {"code":200,"msg":"更改成功","data":{}}