tws/tws-sdk-php
Composer 安装命令:
composer require tws/tws-sdk-php
包简介
TWS SDK for PHP
关键字:
README 文档
README
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
- Docs: connect.talkspirit.com
- Console: console.talkspirit.com
Installing via Composer
The recommended way to install tws-sdk-php is through Composer.
-
Add
tws/tws-sdk-phpas a dependency in your project'scomposer.jsonfile:{ "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.
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; }
统计信息
- 总下载量: 1.34k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 3
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: Unknown
- 更新时间: 2013-02-07