B端授权接口 V2
开发中POST
/api/auth/b/v2/{Private_Key}/{otp_Key}最后修改时间: 2 个月前
海枫授权系统B端授权V2接口,相较于V1隐藏了授权接口,且支持接口分钟级自动更换,安全性较高,推荐使用
其中Private_Key请在后台-系统设置-授权设置进行更换,OTP_Key将由系统自动生成。
请求参数
Path 参数
Private_Key
string
全局Key
示例值:
heyuth_site_key
otp_Key
string
OTP Key
示例值:
123456
Query 参数
product_id
integer
产品ID
示例值:
1
domain
string
待授权域名
示例值:
example.com
key
string
授权码
示例值:
11223344
pri_key
string
应用单独key
示例值:
heyfun_key
示例代码
返回响应
授权成功(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
code
integer
状态码
message
string
消息
time
string
时间
授权成功返回的是到期时间,授权被删除更换返回的是删除或更换时间
status
string
状态
示例
{
"code": 0,
"message": "string",
"time": "string",
"status": "string"
}
最后修改时间: 2 个月前