使用Keycloak REST API创建客户端时发生未知错误

时间:2019-11-20 11:35:38

标签: api keycloak

我正在尝试使用邮递员通过keycloak rest api在springboot领域中创建新客户端。  但我收到一个未知错误作为响应。

the url in post method -
--
localhost:8180/auth/admin/realms/springboot/clients
--

the header includes -
  content type - application/json
authorization - bearer <access token...>

    the json body is
---     

    "id":"1",
    "clientId":"zzzzz",
    "name":"aaaaa",
    "description":"bbbbb",
    "redirectUris":[ "\\" ],
    "enabled":"true"

---

   the response i'm getting is 

   403 : unknown error 

1 个答案:

答案 0 :(得分:0)

我得到了同样的错误,因为客户端没有必要的角色。

  • 转到客户 -> {your-client-name}
  • 选择“服务帐户角色”标签
  • 添加必要的角色。 (就我而言,我需要管理员角色)

enter image description here