officeintegrator/zoi-php-sdk

PHP SDK for Zoho Office Integrator

1.0.1 2023-08-23 09:37 UTC

This package is auto-updated.

Last update: 2024-04-23 10:56:41 UTC


README

PHP Version Require Downloads License

Table Of Contents

Getting Started

Zoho Office Integrator PHP SDK used to help you quickly integrator Zoho Office Integrator editors in side your web application.

Registering a Zoho Office Integrator APIKey

Since Zoho Office Integrator APIs are authenticated with apikey, you should register your with Zoho to get an apikey. To register your app:

  • Visit this page https://officeintegrator.zoho.com/. ( Sign-up for a Zoho Account if you don't have one)

  • Enter your company name and short description about how you are going to using zoho office integrator in your application. Choose the type of your application(commerial or non-commercial) and generate the apikey.

  • After filling above details, create an account in Zoho Office Integrator service and copy the apikey from the dashboard.

Environmental Setup

PHP SDK is installable through composer. composer is a tool for dependency management in PHP. Composer installs PHP sdk in your application from packagist.

  • Client app must have PHP(version 7.0 and above)

  • composer must be installed in your machine

Including the SDK in your project

You can include the SDK to your project using:

  • Install composer from getcomposer.org (if not installed).

  • Install PHP SDK

    • Navigate to the workspace of your client app.
    • Create a composer.json in your application add zoi-nodejs-sdk in dependency list. Example
    • Now run the command below:
    composer install
  • The PHP SDK will be installed and a package named /zoi-php-sdk-1.. will be created in your work space under the vendor folder.

Configuration

Before you get started with creating your PHP application, you need to register with Zoho Office Integrator to get an apikey for authentication.

  • Create an instance of UserSignature Class that identifies the current user(User who create the apikey).

    use com\zoho\UserSignature;
    //Create an UserSignature instance that takes user Email as parameter
    $user = new UserSignature("john@zylker.com")
  • Configure API environment which decides the domain and the URL to make API calls.

    use com\zoho\dc\DataCenter;
    
    /*
     * Configure the environment
     * Pass the below domain values based in which data center you signup for apikey. 
     * USDataCenter - https://api.office-integrator.com
     * EUDataCenter - https://api.office-integrator.eu
     * INDataCenter - https://api.office-integrator.in
     * CNDataCenter - https://api.office-integrator.com.cn
     * AUDataCenter - https://api.office-integrator.com.au
     * JPDataCenter - https://api.office-integrator.jp
    */
    $environment = DataCenter::setEnvironment("https://api.office-integrator.com", null, null, null);
  • Create an instance of APIKey with the information that you get after registering with Office Integrator.

    use com\zoho\api\authenticator\APIKey;
    use com\zoho\util\Constants;
    
    /**
     * You can configure where the apikey needs to added in the request object.
     * User can either pass the apikey in the parameter(Constants.PARAMS) or (Constants.HEADERS)
     */
    $apikey = new APIKey("2ae438cf864488657cc9754a27daa480", Constants::PARAMS);
  • Create an instance of Logger Class to log exception and API information. By default, the SDK constructs a Logger instance with level - INFO and file_path - (sdk_logs.log parallel to node_modules)

    use com\zoho\api\logger\Levels;
    use com\zoho\api\logger\LogBuilder;
    
    /*
    * Create an instance of Logger Class that requires the following
    * level -> Level of the log messages to be logged. Can be configured by typing Levels "." and choose any level from the list displayed.
    * filePath -> Absolute file path, where messages need to be logged.
    */
    $logger = (new LogBuilder())
            ->level(Levels::INFO)
            ->filePath("./app.log")
            ->build();

Initializing the Application

Initialize the SDK using the following code.

<?php
use com\zoho\api\authenticator\APIKey;
use com\zoho\api\logger\Levels;
use com\zoho\api\logger\LogBuilder;
use com\zoho\dc\DataCenter;
use com\zoho\InitializeBuilder;
use com\zoho\UserSignature;
use com\zoho\util\Constants;

require_once 'vendor/autoload.php';

class Initializer {
    public static function initializeSdk() {
        $user = new UserSignature("john@zylker.com");
        $environment = DataCenter::setEnvironment("https://api.office-integrator.com", null, null, null);
        $apikey = new APIKey("2ae438cf864488657cc9754a27daa480", Constants::PARAMS);
        $logger = (new LogBuilder())
            ->level(Levels::INFO)
            ->filePath("./app.log")
            ->build();
        $initialize = (new InitializeBuilder())
            ->user($user)
            ->environment($environment)
            ->token($apikey)
            ->logger($logger)
            ->initialize();

        echo "SDK initialized successfully.\n";
    }
}

Initializer.initializeSdk();
  • You can now access the functionalities of the SDK. Refer to the sample codes to make various API calls through the SDK.

SDK Sample code

  • Make sure you have initialized the sdk before running below sample code snippet.
  • Refer this repository for example codes to all Office Integrator API endpoints.

License

This SDK is distributed under the Apache License, Version 2.0, see LICENSE.txt for more information.