token获取hash
POST
/api/auth/login/hash最后修改时间: 6 个月前
责任人: 未设置
获取某个用户的临时JWt token,传入的密码需要在添加-https://github.com/alist-org/alist后缀后再进行sha256
请求参数
Body 参数application/json
username
string
用户名
用户名
password
string
密码
hash后密码,获取方式为sha256(密码-https://github.com/alist-org/alist)
otp_code
string
二步验证码
二步验证码
示例
{
"username": "{{alist_username}}",
"password": "{{alist_password}}"
}
示例代码
返回响应
成功(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
code
integer
状态码
message
string
信息
data
object
data
token
string
token
示例
{
"code": 200,
"message": "success",
"data": {
"token": "abcd"
}
}
最后修改时间: 6 个月前