zinobe/zdk

There is no license information available for the latest version (dev-master) of this package.

ZDK(is SDK) for Zinobe API's

dev-master 2020-07-14 21:57 UTC

This package is auto-updated.

Last update: 2024-04-15 06:24:33 UTC


README

ZDK for PHP of Zinobe API's

See the official documentation here

Quick Start

Instalation

  1. Download and install composer here
  2. initialize composer in your project
composer init
  1. Install ZDK
composer require zinobe/zdk

Implement

include __DIR__ . "/vendor/autoload.php";

use Zinobe\Zdk\ClientServices;

$client = new ClientServices();
$api = $client->service("zevents");
$postdata = '{"identity":"1032498297"}';
$result = $api->download_profile($postdata);
print_r($result);