wildix/s2s-client-php
最新稳定版本:2.0.0
Composer 安装命令:
composer require wildix/s2s-client-php
包简介
php sdk wildix
README 文档
README
Wildix Integration is a PHP HTTP client that makes it easy to send HTTP requests and trivial to integrate with web services.
$ composer require wildix/s2s-client-php
Example
Create instance
$config = [ 'host' => 'https://example-host.com', 'app_id' => 'APP_ID', 'secret_key' => 'APP_SECRET', 'app_name' => 'APP_NAME', ]; $client = new \Wildix\Integrations\Client($config, []);
Create custom instance defaults
Params using all params from guzzle http client.
$config = [ 'host' => 'https://example-host.com', 'app_id' => 'APP_ID', 'secret_key' => 'APP_SECRET', 'app_name' => 'APP_NAME', ]; //example params $params = [ // You can set any number of default request options. 'timeout' => 2.0 ]; $client = new \Wildix\Integration\Client($config, $params);
Example 'GET' query
$options = [ 'params' => [ 'param1'=>'value1', 'param2'=>'value2', ] ]; $response = $client->get('/api/v1/example/', $options); echo $response->getStatusCode(); // 200 echo $response->getHeaderLine('content-type'); // 'application/json; charset=utf8' echo $response->getBody()->getContents(); // '{"type": "result", "result": {}}'
Request method aliases
$client->get(apiPoint[, $options])
$client->delete(apiPoint[, $options])
$client->post(apiPoint[, $options])
$client->put(apiPoint[, $options])
Examples
For convenience aliases have been provided for supported request methods. $options = [ 'params' => [ 'param1'=>'value1', 'param2'=>'value2', ], 'body' => [ 'field1'=>'value1', 'field2'=>'value2', ], 'headers' => [ 'content-type' => 'application/json' ] ]; $client->post(apiPoint[, $options]);
Request options config
$options = [ // 'params' are the URL parameters to be sent with the request 'params' => [ 'param1'=>'value1', 'param2'=>'value2', ], // 'body' is the data to be sent as the request body 'body' => [ 'field1'=>'value1', 'field2'=>'value2', ], // 'headers' are custom headers to be sent 'headers' => [ 'content-type' => 'application/json' ] ];
统计信息
- 总下载量: 13k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 9
- 点击次数: 1
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2020-03-02