From 5a6434233d07c0ebf2e88ad4c4fbdf635d94f181 Mon Sep 17 00:00:00 2001 From: gyaneshgouraw-okta Date: Tue, 30 Apr 2024 19:08:11 +0530 Subject: [PATCH] chore: Update mTLS example related information --- EXAMPLES.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/EXAMPLES.md b/EXAMPLES.md index 091e9c126..63b9b2e37 100644 --- a/EXAMPLES.md +++ b/EXAMPLES.md @@ -132,11 +132,13 @@ const { data: tokens } = await auth.passwordless.loginWithEmail({ ### mTLS request +Refer mTLS documentation for more info - [Link](https://auth0.com/docs/get-started/authentication-and-authorization-flow/authenticate-with-mtls) + ```js import { AuthenticationClient } from 'auth0'; const auth = new AuthenticationClient({ - domain: '{YOUR_TENANT_AND REGION}.auth0.com', + domain: 'mtls.{YOUR_TENANT_AND REGION}.auth0.com', clientId: '{YOUR_CLIENT_ID}', agent: new https.Agent({ ... }), });