maggie_s → created an issue.
@cilefen correct, I updated the title
maggie_s → created an issue.
I have a drupal website that uses SSO using the module.
It also has an API consumed by a react app.
The react app also implements SSO over the same auth provider drupal uses.
When I logout from react, I also logout from drupal and the auth provider client.
When I logout from drupal I logout from drupal and the auth provider client but not from react.
React saves the session on the local session storage and uses a refresh token, as a result when I go back to the react app, it makes a call to my api, using the bearer token saved in the local storage and it succeeds to continue.
How can I terminate all connections in the same time? How can I trigger the react app to clear the local session storage?