Register your application - Java SDK

Register your application - Java SDK

All the Zoho CRM APIs are authenticated with OAuth2 standards, so it is mandatory to register and authenticate your client app with Zoho.

To register:

  1. Go to the site: accounts.zoho.com/developerconsole
  2. Click Add Client ID


  3. Enter the Client NameClient Domain and Authorized Redirect URL.
  4. Select the Client Type as Web based


  5. Click Create.
  6. Your Client app would have been created and displayed by now.


  7. The newly registered app's Client ID and Client Secret can be found by clicking Options → Edit.

Note

Options is the three dot icon at the right corner.

Registered applications will receive the following credentials:

Client id – The consumer key generated from the connected app.
Client Secret – The consumer secret generated from the connected app.
Redirect URI – The Callback URL that you registered during the app registration.



SEE ALSO

Release Notes
    • Related Articles

    • Java SDK - Overview

      Java SDK offers a way to create client java applications that can be integrated with Zoho CRM. This SDK makes the access and use of necessary CRM APIs with ease. In other words, it serves as a wrapper for the REST APIs, making it easier to use the ...
    • Release Notes - Java SDK

      ZCRMSDK -VERSION 1.0.6  Downloadable JAR file  You can download the jar file for the version1.0.6 of Java SDKs at the end of this page.  Install command - Maven:(in pom.xml)  <repositories>        <repository>              ...
    • Responses & Exceptions - Java SDK

      APIResponse, BulkAPIResponse and FileAPIResponse are the wrapper objects for Zoho CRM APIs’ responses. All API calling methods would return one of these three objects. A method-seeking entity would return APIResponse object, whereas a method-seeking ...
    • Persistence - Java SDK

      Persistent classes in an application implement the entities of the business problem. In Java SDK, two default persistence classes with their implementations are provided. On the other hand, if a developer wants his specific implementation, he can ...
    • Configuration - Java SDK

      Setting up the configuration is a system engineering process, for establishing and maintaining the consistency of the application's performance, functional and physical attributes with its requirements, design and operational information throughout ...