nuxt-oidc-auth
Nuxt SSR OIDC (OpenID Connect) authentication with server side encrypted sessions.
Nuxt OIDC Auth
Welcome to Nuxt OIDC Auth a Nuxt module focusing on native OIDC (OpenID Connect) based authentication for Nuxt with a high level of customizability and security for SSR applications.
This module doesn't use any external dependencies outside of the unjs ecosystem except for token validation (the well known jose
library for JWT interactions).
This module's session implementation is based on nuxt-auth-utils.
Features
- Secured & sealed cookies sessions
- Generic spec compliant OpenID connect provider with fully configurable OIDC flow (state, nonce, PKCE, token request, ...)
- Presets for popular OIDC providers
- Multi provider support with auto registered routes (
/auth/<provider>/login
,/auth/<provider>/logout
,/auth/<provider>/callback
) useOidcAuth
composable for getting the user information, logging in and out, refetching the current session and triggering a token refresh- Encrypted server side refresh/access token storage powered by unstorage
- Optional global middleware with automatic redirection to default provider or a custom login page (see playground)
- Optional token validation
- Optional session expiration check based on token expiration
- Optional automatic session renewal when token is expired
If you are looking for a module that supports local authentication (and more) provided by your Nuxt server check out the nuxt-auth module from sidebase (powered by authjs and NextAuth) ➡️ nuxt-auth
Supported OpenID Connect Providers
Nuxt Oidc Auth includes presets for the following providers with tested default values:
- Auth0
- GitHub
- Keycloak
- Microsoft
- Microsoft Entra ID (previously Azure AD)
- Microsoft Entra ID for Customers (successor of AAD B2C)
- Generic OIDC
You can add a generic OpenID Connect provider by using the oidc
provider key in the configuration. Remember to set the required fields and expect your provider to behave slightly different than defined in the OAuth and OIDC specifications.
For security reasons, you should avoid writing the client secret directly in the nuxt.config.ts
file. You can use environment variables to inject settings into the runtime config. Check the .env.example
file in the playground folder for an example.
# OIDC MODULE CONFIG
NUXT_OIDC_TOKEN_KEY=
NUXT_OIDC_SESSION_SECRET=
NUXT_OIDC_AUTH_SESSION_SECRET=
# AUTH0 PROVIDER CONFIG
NUXT_OIDC_PROVIDERS_AUTH0_CLIENT_SECRET=
NUXT_OIDC_PROVIDERS_AUTH0_CLIENT_ID=
NUXT_OIDC_PROVIDERS_AUTH0_BASE_URL=
# KEYCLOAK PROVIDER CONFIG
NUXT_OIDC_PROVIDERS_KEYCLOAK_CLIENT_SECRET=
NUXT_OIDC_PROVIDERS_KEYCLOAK_CLIENT_ID=
NUXT_OIDC_PROVIDERS_KEYCLOAK_BASE_URL=
...
Remarks
This module only implements the Authorization Code Flow
and optionally the Hybrid Flow
in a confidential client scenario as detailed in the OpenID Connect specification.
We will not support the Implicit Flow
in the future, as it should not be used anymore and was practically superseded by the Authorization Code Flow
.
We will also not support the Client Credential Flow
, as it is not part of OIDC, but of OAuth2 and is correctly named Client Credentials Grant
. It is basically just an exchange of credentials for a token, is not meant for user authentication and can easily be implemented using a simple fetch
request.
This module only works with SSR (server-side rendering) enabled as it uses server API routes. You cannot use this module with nuxt generate
.
Quick Setup
1. Add nuxt-oidc-auth
dependency to your project
# Using pnpm
pnpm add -D nuxt-oidc-auth
# Using yarn
yarn add --dev nuxt-oidc-auth
# Using npm
npm install --save-dev nuxt-oidc-auth
2. Add nuxt-oidc-auth
to the modules
section of nuxt.config.ts
export default defineNuxtConfig({
modules: [
'nuxt-oidc-auth'
]
})
3. Set secrets
Nuxt OIDC Auth uses three different secrets to encrypt the user session, the in individual auth sessions and the persistent server side token store. You can set them using environment variables or in the .env
file.
All of the secrets are auto generated if not set, but should be set manually in production. This is especially important for the session storage, as it won't be accessible anymore if the secret changes for example after a server restart.
If you need a reference how you could generate random secrets or keys, we created an example as a starting point: Secrets generation example
- NUXT_OIDC_SESSION_SECRET (random string): This should be a at least 48 characters random string. It is used to encrypt the user session.
- NUXT_OIDC_TOKEN_KEY (random key): This needs to be a random cryptographic AES key in base64. Used to encrypt the server side token store. You can generate a key in JS with
await subtle.exportKey('raw', await subtle.generateKey({ name: 'AES-GCM', length: 256, }, true, ['encrypt', 'decrypt']))
, you just have to encode it to base64 afterwards. - NUXT_OIDC_AUTH_SESSION_SECRET (random string): This should be a at least 48 characters random string. It is used to encrypt the individual sessions during OAuth flows.
Add a `NUXT_OIDC_SESSION_SECRET` env variable with at least 48 characters in the `.env`.
```bash
# .env
NUXT_OIDC_TOKEN_KEY=base64_encoded_key
NUXT_OIDC_SESSION_SECRET=48_characters_random_string
NUXT_OIDC_AUTH_SESSION_SECRET=48_characters_random_string
- That's it! You can now add authentication to your Nuxt app ✨
Vue Composables
Nuxt OIDC Auth automatically add some api routes to interact with the current user session and adds the following composables to access it from your Vue components:
loggedIn
user
currentProvider
- DeprecatedconfiguredProviders
fetch
refresh
login
logout
loggedIn
=> (boolean)
Indicates whether the user is currently logged in.
Example usage:
if (loggedIn) {
console.log("User is logged in");
} else {
console.log("User is not logged in");
}
user
=> (object)
Represents the current user object.
currentProvider
=> (string)
Stores the name of the currently logged in provider.
configuredProviders
=> (string) - Deprecated due to security concerns (exposes potentially sensitive information)
configuredProviders
=> (string)An array that contains the names of the configured providers.
fetch
=> (void)
Fetches/updates the current user session.
refresh
=> (void)
A function that refreshes the current user session against the used provider to get a new access token. Only available if the current provider issued a refresh token (indicated by canRefresh
property in the user object).
login
=> (function(provider: string))
A function that handles the login process.
Example usage:
<script setup>
const { loggedIn, user, login } = useUserSession()
</script>
<template>
<div v-if="loggedIn">
<h1>Welcome {{ user.userName }}!</h1>
<p>Logged in since {{ session.loggedInAt }}</p>
<button @click="logout()">Logout</button>
</div>
<div v-else>
<h1>Not logged in</h1>
<a href="/auth/github/login">Login with GitHub</a>
<button @click="login()">Login with default provider</a>
</div>
</template>
logout
=> (function(provider: string))
A function that handles the logout process. Always provide the optional provider
parameter, if you haven't set a default provider. You can get the current provider from the currentProvider
property.
Example usage:
<script setup lang="ts">
const { logout } = useOidcAuth()
</script>
<template>
<button @click="logout()">Logout</button>
</template>
Example usage with no default provider configured or middleware customLoginPage
set to true
:
<script setup lang="ts">
const { logout, currentProvider } = useOidcAuth()
</script>
<template>
<button @click="logout(currentProvider)">Logout</button>
</template>
User object
The above composable functions grant access to a user object with the following properties:
Name | Type | Description |
---|---|---|
provider | string | Name of provider used to login the current session |
canRefresh | boolean | If the current session exposed a refresh token |
loggedInAt | number | Login timestamp in second precision |
updatedAt | number | Refresh timestamp in second precision |
expireAt | number | Session expiration timestamp in second precision. Either loggedInAt plus session maxAge or exp of access token if available. |
providerInfo | Record<string, unknown> | Additional information coming from the providers userinfo endpoint |
userName | string | Coming either from the provider or from the configured mapped claim |
claims | Record<string, unknown> | Additional optional claims from the id token, if optionalClaims setting is configured. |
accessToken | string | Exposed access token, only existent when exposeAccessToken is configured. |
idToken | string | Exposed access token, only existent when exposeIdToken is configured. |
Server Utils
The following helpers are auto-imported in your server/
directory.
Middleware
This module can automatically add a global middleware to your Nuxt server. You can enable it by setting globalMiddlewareEnabled
und the middleware
section of the config.
The middleware automatically redirects all requests to /auth/login
if the user is not logged in. You can disable this behavior by setting redirect
to false
in the middleware
configuration.
The /auth/login
route is only configured if you have defined a default provider. If you want to use a custom login page and keep your default provider or don't want to set a default provider at all, you can set customLoginPage
to true
in the middleware
configuration.
If you set customLoginPage
to true
, you have to manually add a login page to your Nuxt app under /auth/login
. You can use the login
method from the useUserSession
composable to redirect the user to the respective provider login page.
Settings customLoginPage
to true
will also disable the /auth/logout
route. You have to manually add a logout page to your Nuxt app under /auth/logout
and use the logout
method from the useUserSession
composable to logout the user or make sure that you always provide the optional provider
parameter to the logout
method.
<script setup lang="ts">
const { logout, currentProvider } = useOidcAuth()
</script>
<template>
<button @click="logout(currentProvider)">Logout</button>
</template>
⚠️ Everything under the /auth
path is not protected by the global middleware. Make sure to not use this path for any other purpose than authentication.
Session expiration and refresh
Nuxt OIDC Auth automatically checks if the session is expired and refreshes it if necessary. You can disable this behavior by setting expirationCheck
and automaticRefresh
to false
in the session
configuration.
The session is automatically refreshed when the session
object is accessed. You can also manually refresh the session using refresh
from useOidcAuth
on the client or server side by calling refreshUserSession(event)
.
Session expiration and refresh is handled completely server side, the exposed properties in the user session are automatically updated. You can theoretically register a hook that overwrites session fields like loggedInAt, but this is not recommended and will be overwritten with each refresh.
OIDC Event Handlers
All configured providers automatically register the following server routes.
/auth/<provider>/callback
/auth/<provider>/login
/auth/<provider>/logout
In addition, if defaultProvider
is set, the following route rules are registered as forwards to the default provider.
/auth/login
/auth/logout
The config
can be defined directly from the runtimeConfig
in your nuxt.config.ts
:
export default defineNuxtConfig({
runtimeConfig: {
oidc: {
providers: {
<provider>: {
clientId: '...',
clientSecret: '...'
}
}
}
}
})
It can also be set using environment variables:
NUXT_OIDC_PROVIDERS_PROVIDER_CLIENT_ID
NUXT_OIDC_PROVIDERS_PROVIDER_CLIENT_SECRET
Hooks
The following hooks are available to extend the default behavior of the OIDC module:
fetch
(Called when a user session is fetched)clear
(Called before a user session is cleared)refresh
(Called before a user session is refreshed)
Example
export default defineNitroPlugin(() => {
sessionHooks.hook('fetch', async (session) => {
// Extend User Session
// Or throw createError({ ... }) if session is invalid
// session.extended = {
// fromHooks: true
// }
console.log('Injecting "country" claim as test')
if (!(Object.keys(session).length === 0)) {
const claimToAdd = { country: 'Germany' }
session.claims = { ...session.claims, ...claimToAdd }
}
})
sessionHooks.hook('clear', async (session) => {
// Log that user logged out
console.log('User logged out')
})
})
You can theoretically register a hook that overwrites internal session fields like loggedInAt
, but this is not recommended as it has an impact on the loggedIn state of your session. It will not impact the server side refresh and expiration logic, but will be overwritten with each refresh.
Configuration reference
oidc
Option | Type | Default | Description |
---|---|---|---|
enabled | boolean | - | Enables/disables the module |
defaultProvider | string | - | Sets the default provider. Enables automatic registration of generic /auth/login and /auth/logout route rules |
providers | <provider> | - | Configuration entries for each configured provider. For provider specific config see Provider specific configurations |
session | AuthSessionConfig | - | Optional session specific configuration |
middleware | MiddlewareConfig | - | Optional middleware specific configuration |
devMode | DevModeConfig | - | Configuration for local dev mode |
provideDefaultSecrets | boolean | true | Provide defaults for NUXT_OIDC_SESSION_SECRET, NUXT_OIDC_TOKEN_KEY and NUXT_OIDC_AUTH_SESSION_SECRET using a Nitro plugin. Turning this off can lead to the app not working if no secrets are provided |
providers
<provider>
Option | Type | Default | Description |
---|---|---|---|
clientId | string | - | Client ID |
clientSecret | string | - | Client Secret |
responseType | 'code' | 'code token' | 'code id_token' | 'id_token token' | 'code id_token token' (optional) | code | Response Type |
authenticationScheme | 'header' | 'body' (optional) | header | Authentication scheme |
responseMode | 'query' | 'fragment' | 'form_post' | string (optional) | - | Response mode for authentication request |
authorizationUrl | string (optional) | - | Authorization endpoint URL |
tokenUrl | string (optional) | - | Token endpoint URL |
userinfoUrl | string (optional) | '' | Userinfo endpoint URL |
redirectUri | string (optional) | - | Redirect URI |
grantType | 'authorization_code' | 'refresh_token' (optional) | authorization_code | Grant Type |
scope | string (optional) | ['openid'] | Scope |
pkce | boolean (optional) | false | Use PKCE (Proof Key for Code Exchange) |
state | boolean (optional) | true | Use state parameter with a random value. If state is not used, the nonce parameter is used to identify the flow. |
nonce | boolean (optional) | false | Use nonce parameter with a random value. |
userNameClaim | string (optional) | '' | User name claim that is used to get the user name from the access token as a fallback in case the userinfo endpoint is not provided or the userinfo request fails. |
optionalClaims | string[] (optional) | - | Claims to be extracted from the id token |
logoutUrl | string (optional) | '' | Logout endpoint URL |
scopeInTokenRequest | boolean (optional) | false | Include scope in token request |
tokenRequestType | 'form' | 'json' (optional) | 'form' | Token request type |
audience | string (optional) | - | Audience used for token validation (not included in requests by default, use additionalTokenParameters or additionalAuthParameters to add it) |
requiredProperties | string | - | Required properties of the configuration that will be validated at runtime. |
filterUserinfo | string[] (optional) | - | Filter userinfo response to only include these properties. |
skipAccessTokenParsing | boolean (optional) | - | Skip access token parsing (for providers that don't follow the OIDC spec/don't issue JWT access tokens). |
logoutRedirectParameterName | string (optional) | - | Query parameter name for logout redirect. Will be appended to the logoutUrl as a query parameter. |
additionalAuthParameters | Record<string, string> (optional) | - | Additional parameters to be added to the authorization request. See Provider specific configurations for possible parameters. |
additionalTokenParameters | Record<string, string> (optional) | - | Additional parameters to be added to the token request. See Provider specific configurations for possible parameters. |
baseUrl | string (optional) | - | Base URL for the provider, used when to dynamically create authorizationUrl, tokenUrl, userinfoUrl and logoutUrl if possible. |
openIdConfiguration | Record<string, unknown> or function (config) => Record<string, unknown> (optional) | - | OpenID Configuration object or function promise that resolves to an OpenID Configuration object. |
validateAccessToken | boolean (optional) | true | Validate access token. |
validateIdToken | boolean (optional) | true | Validate id token. |
encodeRedirectUri | boolean (optional) | false | Encode redirect uri query parameter in authorization request. Only for compatibility with services that don't implement proper parsing of query parameters. |
exposeAccessToken | boolean (optional) | false | Expose access token to the client within session object |
session
The following options are available for the session configuration.
Option | Type | Default | Description |
---|---|---|---|
expirationCheck | boolean | true | Check if session is expired based on access token exp |
automaticRefresh | boolean | true | Automatically refresh access token and session if refresh token is available (indicated by canRefresh property on user object) |
maxAge | number | 60 * 60 * 24 (1 day) | Maximum auth session duration in seconds |
cookie | `` | `` | Additional cookie setting overrides for sameSite and secure |
middleware
Option | Type | Default | Description |
---|---|---|---|
globalMiddlewareEnabled | boolean | - | Enables/disables the global middleware |
customLoginPage | boolean | - | Enables/disables automatic registration of /auth/login and /auth/logout route rules |
Provider specific configurations
Some providers have specific additional fields that can be used to extend the authorization or token request. These fields are available via. additionalAuthParameters
or additionalTokenParameters
in the provider configuration.
⚠️ Tokens will only be validated, if the clientId
or the optional audience
field is part of the access_tokens audiences. Even if validateAccessToken
or validateIdToken
is set, if the audience doesn't match, the token should and will not be validated.
Auth0
additionalAuth/TokenParameters:
Option | Type | Default | Description |
---|---|---|---|
connection | string | - | Optional. Specifies the connection. |
organization | string | - | Optional. Specifies the organization. |
invitation | string | - | Optional. Specifies the invitation. |
loginHint | string | - | Optional. Specifies the login hint. |
- Depending on the settings of your apps
Credentials
tab, setauthenticationScheme
tobody
for 'Client Secret (Post)', set toheader
for 'Client Secret (Basic)', set to''
for 'None'
Entra ID/Microsoft
If you want to validate access tokens from Microsoft Entra ID (previously Azure AD), you need to make sure that the scope includes your own API. You have to register an API first and expose some scopes to your App Registration that you want to request. If you only have GraphAPI entries like openid
, mail
GraphAPI specific ones in your scope, the returned access token cannot and should not be verified. If the scope is set correctly, you can set validateAccessToken
option to true
.
If you use this module with Entra ID for Customers make sure you have set the audience
config field to your application id, otherwise it will not be possible to get a valid OpenID Connect well-known configuration and thereby verify the JWT token.
GitHub
GitHub is not strictly an OIDC provider, but it can be used as one. Make sure that validation is disabled and that you keep the skipAccessTokenParsing
option to true
.
Try to use a GitHub App, not the legacy OAuth app. They don't provide the same level of security, have no granular permissions, don't provide refresh tokens and are not tested.
Make sure to set the callback URL in your OAuth app settings as <your-domain>/auth/github
.
Keycloak
For Keycloak you have to provide at least the baseUrl
, clientId
and clientSecret
properties. The baseUrl
is used to dynamically create the authorizationUrl
, tokenUrl
and userinfoUrl
.
Please include the realm you want to use in the baseUrl
(e.g. https://<keycloak-url>/realms/<realm>
).
Also remember to enable Client authentication
to be able to get a client secret.
Dev mode
Since 0.10.0, there is a local dev mode available. It can only be enabled if the NODE_ENV
environment variable is set to development
AND dev mode is expolicitly enabled in the config. The dev mode is for local and offline development and returns a static user object that can be configured in the config or by variables in .env.
The following fields in the returned user object can be configured:
claims
:devMode.claims
settingprovider
:devMode.provider
settinguserName
:devMode.userName
settingproviderInfo
:devMode.providerInfo
settingidToken
:devMode.idToken
settingaccessToken
:devMode.accessToken
setting
Please refer to user object for required types.
Enabling
To enable the dev mode, you have to make sure at least the following settings are set:
session
->expirationCheck
needs to be turned off (false
)devMode
->enabled
set totrue
in theoidc
part of yournuxt-config.ts
Token generation
If needed, the dev mode can generate a valid signed access token if the settting devMode
-> generateAccessToken
is set to true
. This token will be exposed in the user.accessToken
property.
The properties on the generated token are
iat
(issued at): current DateTime,iss
(issuer):devMode.issuer
setting, defaultnuxt:oidc:auth:issuer
aud
:devMode.audience
setting, defaultnuxt:oidc:auth:audience
sub
:devMode.subject
setting, defaultnuxt:oidc:auth:subject
exp
: current DateTime + 24h
⚠️ The access token will be generated with a fixed local secret and can in now way be considered secure. Dev mode can only be enabled in local development and should exclusively be used there for testing purposes. Never set any environment variables on your production systems that could put any component into development mode.
Contributing
# Install dependencies
pnpm install
# Generate type stubs
pnpm run dev:prepare
# Develop with the playground
pnpm run dev
# Build the playground
pnpm run dev:build
# Run ESLint
pnpm run lint
⚠️ Disclaimer
This module is still in development, feedback and contributions are welcome! Use at your own risk.