Reputation: 22
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
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.
Navigate to your web client project in Zoho Catalyst.
Locate the client-package.json
file in your project.
Add or update the following field:
{
"login_redirect": "test.html"
}
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