Enable Auth0 Authentication Service

Next, lets’s enable Auth0 authentication for your Catalyst application.

To enable Auth0:

  1. Navigate to the Auth0, and signup for the service.

  2. After you get directed to the dashboard, click Create Application. catalyst_tutorials_third_party_start_auth0

  3. Provide a name for your application, select JavaScript as the Technology, and select Single-Page App as your Application Type. Click Create Application. catalyst_tutorials_third_party_auth_init_setup

  4. Click the Settings tab. catalyst_tutorials_third_party_auth0_spa_qs

You will be able to view and copy the Domain, Client ID, and Client Secret. catalyst_tutorials_third_party_auth0_client_creds

  1. Add the required Application URIs in the following format:
    • Application Login URI: application domain/app/index.html
    • Allowed Callback URLs: application domain/app/home.html
    • Allowed Logout URLs: application domain/app/home.html

You can fetch these URLs as directed in the previous step.

catalyst_tutorials_third_party_auth0_urls

Info: We will be diving into and configuring the index.html and home.html pages, when we configure the client.
  1. Enable Cross-Origin Authentication and provide the application URL as the Allowed Origins (CORS), then click Save. catalyst_tutorials_third_party_auth0_final_save

The Auth0 service is configured and enabled for your application.

Last Updated 2026-03-06 21:49:28 +0530 IST