KC - identifying user offline session created in keycloak using session id
When keycloak issue a JWT token with session id, you may want to query this against the database to check out if it is really created. From the JWT token, you can see we have a session id. Copy the session id and you can hit it against your database by running the following command:-
select * from kc_ispn_offlineClientSession
where id='your-session-id-in-JWT-token'
Comments