Keycloak Rest API 404 未找到

Keycloak Rest API 404 not found

我正在尝试使用此处的端点获取群组: https://www.keycloak.org/docs-api/11.0/rest-api/#_groups_resource

GET /{realm}/groups

当我在

上执行 GET 请求时
http://localhost:8080/supercatalog/groups

我明白了

<html>

<head>
    <title>Error</title>
</head>

<body>404 - Not Found</body>

</html>

为什么会这样?我使用的端点是否不正确?

Why is this happening? Is the endpoint that I'm using not the right one?

端点不正确正确的形式是:

http://<KEYCLOAK_HOST>/auth/admin/realms/<REALM_NAME>

所以在你的情况下:

http://localhost:8080/auth/admin/realms/supercatalog/groups