From b35f089b62ca148c1731059e8b58b28e88ef564a Mon Sep 17 00:00:00 2001 From: gyaneshgouraw-okta Date: Mon, 29 Apr 2024 11:41:43 +0530 Subject: [PATCH] Updated mTLS example --- EXAMPLES.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/EXAMPLES.md b/EXAMPLES.md index 6ad971b2e..091e9c126 100644 --- a/EXAMPLES.md +++ b/EXAMPLES.md @@ -135,9 +135,8 @@ const { data: tokens } = await auth.passwordless.loginWithEmail({ ```js import { AuthenticationClient } from 'auth0'; -// add mtls prefix to your domain name const auth = new AuthenticationClient({ - domain: 'mtls.{YOUR_TENANT_AND REGION}.auth0.com', + domain: '{YOUR_TENANT_AND REGION}.auth0.com', clientId: '{YOUR_CLIENT_ID}', agent: new https.Agent({ ... }), });