tws-sdk-php is a PHP client to easily interface with TWS services and build solutions on top of the API. The sdk is build on top of Guzzle
- Docs: connect.talkspirit.com
- Console: console.talkspirit.com
The recommended way to install tws-sdk-php is through Composer.
-
Add
tws/tws-sdk-php
as a dependency in your project'scomposer.json
file:{ "require": { "tws/tws-sdk-php": "dev-master" } }
-
Download and install Composer:
curl -s http://getcomposer.org/installer | php
-
Install your dependencies:
php composer.phar install
-
Require Composer's autoloader
Composer also prepares an autoload file that's capable of autoloading all of the classes in any of the libraries that it downloads. To use it, just add the following line to your code's bootstrap process:
require 'vendor/autoload.php';
You can find out more on how to install Composer, configure autoloading, and other best-practices for defining dependencies at getcomposer.org.
- Supports all the API of TWS
<?php
require_once 'vendor/autoload.php';
use Tws\Common\TwsClient;
use Tws\Common\TwsConnect;
use Tws\Exception\TwsConnectException;
use Guzzle\Http\Exception\ClientErrorResponseException;
use Guzzle\Service\Exception\ValidationException;
$config = array('api_url' => 'http://*************/api/v1/',
'consumer_key' => '**********',
'consumer_secret' => '*************');
$auth = new TwsConnect($config);
// get the token of the user
try{
$auth->connect('no-reply@talkspirit.fr', 'password');
if(!$auth->checkValidToken()) {
echo "Token not valid";
exit;
}
$client = TwsClient::factory($auth->getConfig());
// get the profile of the connected user
$me = $client->getMe();
print_r($me);
} catch (TwsConnectException $e) {
echo $e->getMessage().PHP_EOL;
} catch (ClientErrorResponseException $e) {
echo $e->getMessage().PHP_EOL;
} catch (ValidationException $e) {
echo $e->getMessage().PHP_EOL;
}