[Bug?] End Session Endpoint
Hello, I just notice that end session endpoint only revoke access tokens created from the browser but the refresh token still works. Is it normal ??
/oidc/v1/end_session endpoint only invalidates access tokens—it does not automatically revoke refresh tokens. questions-help-bugsOAuth token revocation/oidc/v1/end_session, you can call the revocation endpoint to revoke the specific refresh token: (2) , (3) x-www-form-urlencoded with: (2) token: the refresh token to revokeclient_id: your application's client_idtoken parameter with the refresh token value. refresh_token, the corresponding access_token will also be revoked. client_id and client_secret as Basic Auth Headerclient_id and client_secret in the bodyclient_id in the bodyclient_assertion and client_assertion_typeend_session_endpoint. This ensures all tokens are invalidated when the user logs out./oidc/v1/end_session/oidc/v1/end_session{your_domain}/oauth/v2/revokePOST <https://$CUSTOM-DOMAIN/auth/v1/users/me/tokens/refresh/_revoke_all>POST {your_domain}/oauth/v2/revokex-www-form-urlencodedPOST ${CUSTOM_DOMAIN}/oauth/v2/revokerefresh_tokenclient_assertionclient_assertion_typeend_session_endpoint