Skip to content

talkspirit/tws-sdk-php

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

48 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

TWS SDK for PHP

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

Getting started

Installing via Composer

The recommended way to install tws-sdk-php is through Composer.

  1. Add tws/tws-sdk-php as a dependency in your project's composer.json file:

     {
         "require": {
             "tws/tws-sdk-php": "dev-master"
         }
     }
    
  2. Download and install Composer:

     curl -s http://getcomposer.org/installer | php
    
  3. Install your dependencies:

     php composer.phar install
    
  4. 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.

Features

  • Supports all the API of TWS

HTTP basics

<?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;
}

Releases

No releases published

Packages

No packages published

Languages