something like the below then? use GuzzleHttp\Cli...
# general-english
j
something like the below then? use GuzzleHttp\Client; $client = new Client([ 'headers' => [ 'Authorization' => 'Bearer ' . $token, 'Accept' => 'application/json', ] ]); $response = $client->request('GET', 'https://api.example.com/endpoint');
6 Views