Enable Auth0 Authentication Service

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

To enable Auth0:

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

  2. Once 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. Start adding 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 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-02-23 22:17:04 +0530 IST