我有用户名和密码。我想验证令牌。首先,我向的密码验证 API 发送了一个请求,keystone
并得到了一个audit_id
。然后,我向令牌验证 API 发送了一个请求。但响应如下所示。
"error":{"code":404,"message":"Could not recognize Fernet token","title":"Not Found"}
输入:
{
"auth": {
"identity": {
"methods": [
"token"
],
"password": {
"user": {
"domain": {
"id": "default"
},
"name": "my_username",
"password": "my_password"
}
},
"token": {
"id": "my_audit_id"
}
}
}
}