Keystone Identity API を使用して Fiware IDM でユーザーを作成しようとしています。
次のcurlコマンドを送信しています
curl -s \
-H "X-Auth-Token: e746971040657101bb1e" \
-H "Content-Type: application/json" \
-d '{"user": {"name": "newuser", "password": "changeme"}}' \
http://localhost:35357/v3/users | python -mjson.tool
使用したトークンは、keystone.conf で構成されたものです。
admin_token=e746971040657101bb1e
しかし、得られた結果は次のとおりです
{
"error": {
"code": 401,
"message": "The request you have made requires authentication.",
"title": "Unauthorized"
}
}
誰が何が起こるかについて考えを持っていますか?