Logout
When a user authenticates through Passport, there are two "sessions" you need to account for. The Passport session
layer maintains a session between the user and Passport in auth.immutable.com
, and the application session layer
maintains a session between the user and your application through JWTs.
In order to log out a user from your application and Passport, you can use the logout
function on the Passport
instance.
await passportInstance.logout();
Depending on the logout mode you specify, the user will be redirected to the Passport auth domain or silently logged
out within your application. You can specify the logout mode when you initialize the Passport instance by setting the
logoutMode
to either 'redirect'
or 'silent'
.
Both the logoutMode
& logoutRedirectUri
properties are optional. If the logoutMode
is not specified, Passport will
default to the redirect
logout mode. If the logoutRedirectUri
property is not specified, Passport will default to
the first logout redirect URI that your Passport client has configured client in the Immutable Hub.
Logout modes
Redirect mode
The simplest approach is to use the redirect
logout mode, which works as follows:
- The application session is cleared by removing the JWT from the browser's local storage.
- The user is redirected to the Passport auth domain, where the Passport session is cleared.
- The user is redirected back to the specified
logoutRedirectUri
.
Silent mode
Alternatively, you can use the silent
logout mode which is less intrusive and does not require a top-level redirect.
However, in order to use this mode, you must set up a callback URL that invokes the logoutSilentCallback
function.
Assume your application is hosted in http://localhost:3000.
Initialise Passport and set the logout mode as silent
.
const passportSilentInstance = new passport.Passport({
baseConfig: {
environment: config.Environment.SANDBOX, // or config.Environment.SANDBOX
publishableKey:
process.env.NEXT_PUBLIC_PUBLISHABLE_KEY || '<YOUR_PUBLISHABLE_KEY>', // replace with your publishable API key from Hub
},
clientId: process.env.NEXT_PUBLIC_CLIENT_ID || '<YOUR_CLIENT_ID>', // replace with your client ID from Hub
redirectUri: 'http://localhost:3000/redirect', // replace with one of your redirect URIs from Hub
logoutRedirectUri: 'http://localhost:3000/silent-logout', // replace with one of your logout URIs from Hub
logoutMode: 'silent',
audience: 'platform_api',
scope: 'openid offline_access email transact',
});
passport.logoutSilentCallback('http://localhost:3000');
The logoutSilentCallback
function accepts a single parameter, which is the URL of the page that initiated the logout.
In other words, if you initiate the logout from http://localhost:3000
, then you should pass http://localhost:3000
.
The silent
logout mode works as follows:
- The application session is cleared by removing the JWT from the browser's local storage
- A hidden iframe is created with the Immutable auth domain's logout URL where the Passport session is cleared
- The iframe is redirected to the specified
logoutRedirectUri
- Your application handles the
logoutRedirectUri
request and invokes thelogoutSilentCallback
function. This causes the iframe to emit an event to the parent window which completes the logout flow. - The hidden iframe is removed