1. Go to this page and download the library: Download wildix/s2s-client-php 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/ */
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]);
$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'
]
];
bash
$ composer
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.