You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Description
I am trying to configure single sign out using keycloak via /backchannel_logout. When the request is passed to synapse, I get a response of 200 (200 "POST /_synapse/client/oidc/backchannel_logout HTTP/1.1" "Apache-HttpClient/4.5.14 (Java/17.0.8)"),
But I can still make requests for /whoami and stuff.
Steps to reproduce
/synapse/client/oidc/backchannel_logout
Description
I am trying to configure single sign out using keycloak via /backchannel_logout. When the request is passed to synapse, I get a response of 200 (200 "POST /_synapse/client/oidc/backchannel_logout HTTP/1.1" "Apache-HttpClient/4.5.14 (Java/17.0.8)"),
But I can still make requests for /whoami and stuff.
Steps to reproduce
/synapse/client/oidc/backchannel_logout
Homeserver
Synapse Version
1.91
Installation Method
docker
Database
psql
Workers
Single process
Platform
linux
Configuration
oidc_providers:
idp_name: "Keycloak"
issuer: "https://test:8443/auth/realms/TEST"
client_id: "test-app"
client_secret: "client_secret"
scopes: ["openid", "profile"]
user_mapping_provider:
config:
localpart_template: "{{ user.preferred_username }}"
display_name_template: "{{ user.name }}"
backchannel_logout_enabled: true
backchannel_logout_session_supported: true
Relevant log output
token params:
{ "iat": 1706116668, "jti": "541f3bf9-a7e8-4ef8-9469-a7407936e9ed", "iss": "https://test:8443/auth/realms/TEST", "aud": "test-app", "sub": "7c35f38b-b84f-4569-af65-e5cd290e538d", "typ": "Logout", "sid": "830ed376-5509-4e81-933f-13aef266d237", "events": { "http://schemas.openid.net/event/backchannel-logout": {}, "revoke_offline_access": true } }
Anything else that would be useful to know?
The text was updated successfully, but these errors were encountered: