我们正试图创建一个使用梯形身份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"
}
}
有没有人有可能发生的事情的想法?