Directing users to the Zoho login screen to use Zoho Books REST APIs
Hello, We have a Zoho books membership, and we aim to use Zoho Books' Customers, Items and Invoices REST APIs in our ASP.NET MVC application. For example, when a new user is added to our system, in order to ensure that user appears as Customer in Zoho Books, we send a request the Client Id and Client Secret information to the authorizeUrl in order to receive an access token: "
https://accounts.zoho.com/oauth/v2/auth?response_type=code&client_id={clientId}&scope=ZohoBooks.fullaccess.all&redirect_uri={redirectUri}". With the oauth code from here We are sending data to the "
https://books.zoho.com/api/v3/contacts" endpoint. However, during redirection, the user is always redirected to the Zoho Login screen. We don't want this. Is there any way to solve this?