Jack
Jack

Reputation: 22

Zoho Catalyst: How to Redirect to a Specific URL After User Login?

I have configured hosted authentication for my application. After a user logs in, the redirection does not go to the desired page.

Is there a way to set a specific post-login redirect page in Zoho Catalyst hosted authentication?

Any guidance on how to achieve this would be helpful.

Upvotes: 0

Views: 30

Answers (1)

Sakthivel B
Sakthivel B

Reputation: 60

Yes, you can set a specific post-login redirect page in Catalyst hosted authentication by updating the login_redirect field in the client-package.json file.

Steps to Configure the Redirect URL:

  1. Navigate to your web client project in Zoho Catalyst.

  2. Locate the client-package.json file in your project.

  3. Add or update the following field:

    {
      "login_redirect": "test.html"
    }
    
  4. Save the file and deploy your changes.

Now, after authentication, users will be redirected to the specified page instead of the default page.

Upvotes: 0

Related Questions