我想使用邮递员在密钥斗篷中创建一个新用户。
我让令牌运行
https://xxxxxx/auth/realms/MyRealm/protocol/openid-connect/token
header:
Content-Type:application/x-www-form-urlencoded
body:
grant_type:password
client_id:admin-cli
client_secret:asdf-asdf-asdf-asdf-asdf
username:testuser1
password:1234
如果我随后尝试创建一个新用户,则根据地址,将得到404或401。
404: https://xxxxxx/auth/realms/MyRealm/users
401: https://xxxxxx/auth/admin/realms/MyRealm/users
header:
Authorization Bearer asdfasdfasdfasdfasdfasdf
Content-Type application/json
no body: // The error is the same even with body
我想在使用auth / admin时,我还需要一个用于auth / admin的令牌,但我不知道该怎么做。
如果我尝试在auth / admin下为同一用户或admin用户获取令牌,则在两种情况下,我都会得到401。
使用管理员用户凭据在/ auth / realms下获取令牌会导致401无效的用户凭据。
有什么想法吗?