文档
测试

普通用户注册

GET
http://127.0.0.1/api/grant/grantreg

请求参数

参数名
类型
描述
必填
id
string
应用ID
必填
app_key
string
应用秘钥
必填
ordinary_account
string
用户名
必填
ordinary_password
string
密码 MD5(密码)
必填
equipment_code
string
机器码
必填
invitation
string
邀请码
必填
timestamp
string
当前时间戳
可选
sign
string
sign签名 MD5(用户名+密码+机器码+邀请码+时间戳+应用秘钥)
必填

说明 / 示例

签名例子: 有邀请码及开启机器码验证的 > md5(ordinary_account=11&ordinary_password=b6d767d2f8ed5d21a44b0e5886680cb9&equipment_code=7895145&invitation=123456&timestamp=1672062464+应用秘钥) 没邀请码及关闭机器码验证的 > md5(ordinary_account=11&ordinary_password=b6d767d2f8ed5d21a44b0e5886680cb9&timestamp=1672062464+应用秘钥)