Top "Guzzle" questions

Guzzle is a PHP HTTP client that makes it easy to send HTTP requests and trivial to integrate with web services.

Class 'GuzzleHttp\Client' not found

I am using BOTH Guzzle and Codeigniter 3.0 for the first time. Also I admit I am using php namespace for …

php codeigniter guzzle
Guzzle and HTTPS

I want to use Guzzle and Silex to send request to https pages. With http url I have a response : …

https silex guzzle
Setting up cookies for Guzzle CookieJar

I am doing unit testing in PHP for a site that requires authentication. Authentication is cookie based, so I need …

php cookies guzzle
How to add headers in Guzzle http

I'm building a small application in Laravel 5.5 where I'm using Guzzle Http to get call the api url and get …

php laravel laravel-5.5 guzzle guzzlehttp
Using Guzzle promises asyncronously

I am attempting to use guzzle promises in order to make some http calls, to illustrate what I have, I …

php asynchronous promise guzzle
Fatal error: Call to undefined method GuzzleHttp\Client::request() with Guzzle 6

I'm using Guzzle 6 with Laravel 5.2. I'm trying to access a simple internal API: use GuzzleHttp\Client; $client = new Client(['base_…

php laravel guzzle laravel-5.2
Guzzle not sending PSR-7 POST body correctly

It is either not being sent, or not being received correctly. Using curl direct from the command line (using the …

guzzle psr-7
Guzzle 6 download file

Need help using Guzzle 6 for downloading a file from a rest API. I don't want the file to be saved …

php guzzle guzzle6
How to crawl with php Goutte and Guzzle if data is loaded by Javascript?

Many times when crawling we run into problems where content that is rendered on the page is generated with Javascript …

php web-crawler guzzle scraper goutte
Use Guzzle to HTTP GET to external API with Symfony

I am new to Symfony development so excuse me if this is a dumb question. I am trying to GET …

php http symfony guzzle