Skip to content

Instantly share code, notes, and snippets.

@badcrocodile
Created January 18, 2018 00:25
Show Gist options
  • Save badcrocodile/764df15345da39a077887f83b68910d6 to your computer and use it in GitHub Desktop.
Save badcrocodile/764df15345da39a077887f83b68910d6 to your computer and use it in GitHub Desktop.
Using guzzle with api
// Using Guzzle
$client = new Client();
$response = $client->get($this->api_url_path);
$this->api_data = $response->getBody()->getContents();
var_dump($this->api_data);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment