First time here? Check out the FAQ!
![]() | 1 | initial version |
Can you try the following cURL command and let me know if it is successful?
curl -i \ -H "Content-Type: application/json" \ -d ' { "auth": { "identity": { "methods": [ "password" ], "password": { "user": { "name": "nova", "domain": { "id": "default" }, "password": "Service123" } } } } }' \ http://controller:5000/v3/auth/tokens; echo
![]() | 2 | No.2 Revision |
Can you try the following cURL command and let me know if it is successful?
curl -i \
-H "Content-Type: application/json" \
-d '
{
"auth": {
"identity": {
"methods": [
"password"
],
"password": {
"user": {
"name": "nova",
"domain": {
"id": "default"
},
"password": "Service123"
}
}
}
}
}' \
http://controller:5000/v3/auth/tokens;