我正在尝试使用
创建角色列表curl -g -s -S --request POST \
--url "https://${keycloak_ip}/auth/admin/realms/${realm_name}/roles" \
--header "authorization: bearer ${realm_token}" \
--header "cache-control: no-cache" \
--header "content-type: application/json" \
--data "${roles_body}" \
--insecure
我将Roles_body作为
发送[{"name": "role_one", "description": "sample role one"}, {"name": "role_two", "description": "sample role two"}, {"name": "role_three", "description": "sample role three"}]
这使我感到HTTP / 1.1 500 Internal Server Error。 如果我尝试将正文发送为
{"name": "role_one", "description": "sample role one"}
我可以创建一个角色。有什么办法可以批量创建角色?
有人可以在这里帮助吗?
谢谢