I integrated keycloak with my Spring Boot application. I have an issue with logout. Right now I'm using
POST http://localhost:8080/auth/realms//protocol/openid-connect/logout
Authorization: Bearer Content-Type: application/x-www-form-urlencoded
The issue is that this log out API allows to log out from one device. Let's consider If I log in from more than one devices and log out from one then still my other device application is logged in. Is any way to make my application single logout so If I log out from one device My account log out from all devices.