1. Go to this page and download the library: Download hilalahmad/http-client 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/ */
hilalahmad / http-client example snippets
bash
use Hilalahmad\HttpClient\HttpClient;
$url="url of api";
$headers=[
'Authorization: Bearer your-token', // depend on you
'Content-Type: application/json',
]
$response = HttpClient::get($url, $headers);
$datas = HttpClient::getResponse($response);
foreach($datas as $data){
echo $data->id;
}