I have username and password. I would like to authentication the token. First, I sent a request to password authentication api of keystone
and I got an audit_id
. Then, I send a request to token authentication api. but the response is like below.
"error":{"code":404,"message":"Could not recognize Fernet token","title":"Not Found"}
The input:
{
"auth": {
"identity": {
"methods": [
"token"
],
"password": {
"user": {
"domain": {
"id": "default"
},
"name": "my_username",
"password": "my_password"
}
},
"token": {
"id": "my_audit_id"
}
}
}
}