Skip to main content

Implements OAuth2.0 flow to use ZOHO API.

Project description

Zoho API - OAuth 2.0

Uses OAuth 2.0 for generating access_tokens for using Zoho APIs.

Installation

Install the package using pip.

pip install zoho-oauth2

Generate required credentials

  • CLIENT_ID
  • CLIENT_SECRET

Generate the two values from https://api-console.zoho.com/. Add a self client, and copy the CLIENT_ID and CLIENT_SECRET as seen in the example below.

  • redirect_uri

Add the redirect uri of your instance.

  • scope

You can find the list of scopes in the api documentation of the products you wish to use the API for.

  • region

Select the region if required. Chooses https://accounts.zoho.com by default. Following regions are supported as per Zoho Documentation.

EU : https://accounts.zoho.eu

CN : https://accounts.zoho.com.cn

IN : https://accounts.zoho.in

API Documentation

The access tokens have only been tested with Manage Engine Service Desk instance in a demo environment, although it should work with most Zoho products.

Learn more about the APIs from the link below.

Available methods to use.

  • To generate the access token for making the API Requests.
    ZohoAPITokens(
        client_id=CLIENT_ID, #Required
        client_secret=CLIENT_SECRET, #Required
        redirect_uri=REDIRECT_URI, #Required
        scope=SCOPES(as string, each scope separated by comma), #Required
        region=REGION #Optional
    )
  • To revoke the refresh token. The method will revoke the access token and proceed with deleting the token.pickle file.
    revokeRefreshToken()

Example Usage

from zoho_oauth2 import ZohoAPITokens

if __name__ == '__main__':
    test = ZohoAPITokens(
        client_id=CLIENT_ID,
        client_secret=CLIENT_SECRET,
        redirect_uri=REDIRECT_URI,
        scope=SCOPES(as string, each scope separated by comma)
    )

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

zoho_oauth2-1.0.7.tar.gz (4.7 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page