我们正在尝试使用 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"
}
}
有谁知道会发生什么?