1. Go to this page and download the library: Download tozny/e3db library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
/**
* Assuming your credentials are stored as defined constants in the
* application, pass them each into the configuration constructor as
* follows:
*/
$config = new \Tozny\E3DB\Config(
CLIENT_ID,
API_KEY_ID,
API_SECRET,
PUBLIC_KEY,
PRIVATE_KEY,
API_URL
);
/**
* Pass the configuration to the default coonection handler, which
* uses Guzzle for requests. If you need a different library for
* requests, subclass `\Tozny\E3DB\Connection` and pass an instance
* of your custom implementation to the client instead.
*/
$connection = new \Tozny\E3DB\Connection\GuzzleConnection($config);
/**
* Pass both the configuration and connection handler when building
* a new client instance.
*/
$client = new \Tozny\E3DB\Client($config, $connection);