Skip to main content

鉴权接入

鉴权登录(/auth)

  • POST请求

输入

名称字段类型可选说明
服务商的商户编码merchantCodestringN服务商内唯一
服务商的账号编码accountCodestringN服务商内唯一
服务商的API秘钥编号secretIdstringN点秀唯一
盐值saltstringY建议用时间戳
签名signstringN

输出

名称字段类型可选说明
点秀tokentokenstringN

说明

  • 点秀分配给服务商一套API秘钥:SecretId(16位数字和小写字母)和SecretKey(32位数字和小写字母),
  • sign = sha512Hex(merchantCode+accountCode+salt+secretId+secretKey)

示例

https://www.pointshow.net/api/auth
输入:
{
merchantCode:"1",
accountCode:"2",
secretId:"xvdferewq23445ds",
salt:"1631494604865",
sign:"a3fefa6371173eb2a003a3dc26e1fc73e794c85b9c74cf6e84eb032e804ca504f217f42281ed1dba74fcd163a8fc3496ee074ee693345654df9ae83296e83a98" // 假设secretKey是"af2e9fab40074cd0a8524ucc36c15d32"
}

输出:
{
code:0,
data:{
token:"af2e9fab40074cd0a8524ucc36c15d32"
}
}