我正在尝试在 Keycloak 15.0.2 上设置 CIBA 端点。我已经设置了一个启用了 CIBA 端点的客户端,但是当我用一个看起来像这样的请求点击它时:
curl -s -X POST \
-d "client_id=ciba_client_test" \
-d "client_secret=xxx" \
-d "login_hint=test_user_name" \
-d "scope=openid" \
"https://keycloak.address.com/auth/realms/poc_new/protocol/openid-connect/ext/ciba/auth"
我收到一个看起来像这样的错误:
{"error":"server_error","error_description":"Failed to send authentication request"}
我检查了客户端和领域的设置,看不到任何会阻止身份验证请求的内容。