接入说明
接口说明
- Content-Type: application/json;charset=utf-8
公共参数说明
- appKey: 接入账号,系统平台提供。
- appSecret: 接入密钥,系统平台提供。
- ts: 当前时间戳,精确到毫秒。
身份信息验证
- 所有接口请求的header中必须包含签名字段:x-sign,该字段使用相关参数按照指定拼接规则通过MD5摘要算法得到。
String sign = MD5(String.format("%s,%s,%s",appKey,ts,appSecret));