Keycloak REST API を使用して新しいユーザーを作成すると、アプリケーションは realmRoles プロパティを無視し、新しいユーザーにロールを割り当てません。ここに例があります
POST: https://localhost:8543/auth/admin/realms/quarkus/users
Body:
{
"username":"alexandre",
"enabled":true,
"emailVerified":true,
"firstName":"Alexandre",
"lastName":"Oliveira",
"email":"alexandreqogmailcom",
"credentials":[
{
"type":"password",
"value":"123456",
"temporary":false
}
],
"realmRoles":[
"user_esc"
],
"access":{
"mapRoles":true
}
この問題を解決する方法または回避策はありますか?
PS:キークローク バージョン 12.0.1 を使用しています