Auth0 is an enterprise authentication platform that supports social logins, passwordless authentication, MFA, and SSO. This guide shows you how to use Auth0 as your identity provider with @nylas/connect so your users can authenticate with Auth0 and connect their email accounts through Nylas.
Before you begin
Section titled “Before you begin”You need an Auth0 application and a Nylas application configured to work together.
Configure Nylas Dashboard
Section titled “Configure Nylas Dashboard”Before connecting your identity provider, configure the IDP settings in the Nylas Dashboard:
- Navigate to your application in the Nylas Dashboard.
- Go to Hosted Authentication → Identity Providers.
- Configure the following settings:
- Allowed Origins: Add the domains where your application will be hosted (e.g.,
http://localhost:3000,https://yourapp.com). These origins will be allowed to make requests to Nylas with your IDP tokens. - Callback URIs: Add the redirect URIs that Nylas will use after authentication (e.g.,
http://localhost:3000/auth/callback). These must match theredirectUriconfigured in your NylasConnect instance.
- Allowed Origins: Add the domains where your application will be hosted (e.g.,
You can access the Identity Provider settings page directly at:
https://dashboard-v3.nylas.com/applications/<YOUR_APP_ID>/hosted-authentication/idp-settingsConfigure Auth0
Section titled “Configure Auth0”- In your Auth0 Dashboard, navigate to Applications → Applications.
- Select your application or create a new Single Page Application.
- Configure the following settings:
- Allowed Callback URLs: Add your application’s callback URLs (e.g.,
http://localhost:3000,https://yourapp.com) - Allowed Web Origins: Add your application’s origins (e.g.,
http://localhost:3000,https://yourapp.com) - Allowed Logout URLs: Add URLs where users can be redirected after logout
- Allowed Callback URLs: Add your application’s callback URLs (e.g.,
Install dependencies
Section titled “Install dependencies”npm install @nylas/connect @auth0/auth0-spa-jsImplementation
Section titled “Implementation”Initialize Auth0 and @nylas/connect together. The identityProviderToken callback passes the Auth0 token to @nylas/connect so it can associate the user’s identity with their Nylas grant:
import { NylasConnect } from "@nylas/connect";import { Auth0Client } from "@auth0/auth0-spa-js";
const auth0 = new Auth0Client({ domain: "<AUTH0_DOMAIN>", clientId: "<AUTH0_CLIENT_ID>", authorizationParams: { redirect_uri: window.location.origin, },});
const nylasConnect = new NylasConnect({ clientId: "<NYLAS_CLIENT_ID>", redirectUri: "http://localhost:3000/auth/callback", identityProviderToken: async () => { try { return await auth0.getTokenSilently(); } catch (error) { console.error("Failed to get Auth0 token:", error); return null; } },});
async function loginWithAuth0() { await auth0.loginWithPopup(); const isAuthenticated = await auth0.isAuthenticated();
if (isAuthenticated) { const user = await auth0.getUser(); console.log("Authenticated as:", user?.email); }}
async function connectEmail() { try { const result = await nylasConnect.connect({ method: "popup" }); console.log("Email connected:", result.grantInfo?.email); } catch (error) { console.error("Failed to connect email:", error); }}
async function logout() { await nylasConnect.logout(); await auth0.logout({ logoutParams: { returnTo: window.location.origin }, });}Make API calls
Section titled “Make API calls”Once the user has connected a mailbox, call the API with the Auth0 access token you already hold. Take the user ID from auth0.getUser() rather than decoding the JWT yourself; the SDK has already validated it.
async function fetchEmails() { const token = await auth0.getTokenSilently(); const user = await auth0.getUser();
const response = await fetch( "https://api.us.nylas.com/v3/grants/me/messages", { headers: { Authorization: `Bearer ${token}`, "X-Nylas-External-User-Id": user?.sub ?? "", }, }, );
return await response.json();}Two headers do the work. Authorization carries your identity provider’s access token, and X-Nylas-External-User-Id carries the user’s sub claim, which is the same ID your application already stores. Nylas resolves /v3/grants/me to the mailbox linked to that ID, so no grant_id appears in the request.
The same 2 headers work across the Email, Calendar, and Contacts endpoints. Swap /messages for /events or /contacts and nothing else changes. For how the linkage is established, and when to use it instead of storing grant IDs, see use your own user IDs instead of grant IDs.
What’s next
Section titled “What’s next”- Auth0 +
@nylas/connectwith React for React-based implementations - Session management for monitoring connection state
- Error handling for handling authentication failures
@nylas/connectoverview for standalone OAuth without an IdP