Danilo Grano Contini

Results 2 comments of Danilo Grano Contini

It works to me: ``` export const logout = () => AuthorizationServiceConfiguration.fetchFromIssuer(process.env.OPENID_CONFIG_URL, new FetchRequestor()) .then((configResponse) => { const idTokenHint = JSON.parse(window.localStorage.getItem('token'))?.idToken // LocalStorage from browser const logoutReqURL = `${configResponse.endSessionEndpoint}?id_token_hint=${idTokenHint}&post_logout_redirect_uri=${process.env.OPENID_REDIRECT_URL}` return...