28 lines
407 B
PHP
28 lines
407 B
PHP
<?php
|
|
|
|
class MYHTTPCLIENT
|
|
{
|
|
|
|
|
|
|
|
// Create the http client
|
|
public static function sendPost($dataToBot)
|
|
{
|
|
include_once APPPATH.'/vendor/autoload.php';
|
|
|
|
if(LOGTOBOT == true)
|
|
{
|
|
$client = new \GuzzleHttp\Client();
|
|
$response = $client->post( BOTURL, [
|
|
'headers' => ['Content-Type' => 'application/json'],
|
|
'body' => json_encode($dataToBot)
|
|
]);
|
|
//return $response;
|
|
}
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
?>
|