接口名称:/open/setUrl |
---|
第一步:接入商发送Http请求
url | text | 接入商接收异步通知的地址 |
{
devId: abcd1234,
content: {url: http://.......},
signature: ……
}
第二步:向该地址发起验证
业务类型:Echo | |||
业务参数: | |||
字段 | 类型 | 必填项 | 描述 |
ping | text | 是 | Echo值 |
{
event: Echo,
content: {ping: abc123}
signature: ……
}
第三步:接入商收到Echo的请求后,响应Echo值
pong | text | Echo值 |
---|
{
devId: 1000001,
content: {pong: abc123}
signature: ……
}
第四步:响应操作结果
{
code: 0,
msg: url验证通过
}