Zoho Integration in .Net Core 5
Zoho CRM is a cloud-based application, and therefore the application and the data are not stored in your computer system’s memory. Since cloud applications rely on remote servers, you are required to have a continual internet connection for accessing Zoho CRM.
In this article, we will learn how to integrate Zoho CRM in Dot Net Core Web application.
Let’s start
Go to the site: accounts.zoho.com/developerconsole
Click on “Sign Up Now” to make registration. After a successful login, the below page appears and click on add client.
after Click on “Add Client” the below page appears.
after select Server-based Applications and the below page appears.
Enter the Client name. Set your Project Url in the HomePage Url and Authorized Redirect Url. Note: If you are using my repository redirect uri ishttps://localhost:44384/home/callback and homepageurl https://localhost:44384/ and name anything that you want
Click on create so the client created successfully.
You will get a Client ID and Client Secret.
Set Client ID and Client Secret in appsettings.json and add the below code in it.
C# Code Example
Open the appsettings.json file and add the below code in it.
If you have any questions or issues about this article, please let me know.
GitHubLink : ZohoIntegration
Thank you for reading article.