Top "Guzzle" questions

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

Limit connecting time with Guzzle HTTP PHP client

I'm using Guzzle to open a list of url-s and get the headers. Some of the urls are taking too …

php guzzle
PHP - Why Use Guzzle Instead of cURL?

In my application, I originally began using cURL to retrieve data from various APIs. Today, I tried using Guzzle to …

php laravel curl guzzle
Set proxy in Guzzle

I have a problem with set proxy in guzzle that a blank page was shown while with curl everything works …

php curl proxy guzzle
Guzzle 6, get request string

Is there a way I can print out the full request as a string before or after it is sent? $…

php http guzzle guzzle6
How can I send Cookies with Guzzlehttp/guzzle 6?

I need to send a request with custom cookies. I have tried to set cookieJar like this: $cookieJar = CookieJar::fromArray(…

php cookies request guzzle get-request
Curl error : No route to host

So we're building a web application in PHP and we're trying to make requests to an external API. Problem is …

php apache ssl curl guzzle
Guzzle ~6.0 multipart and form_params

I am trying to upload file and send post parameters at the same time like this: $response = $client->post(…

php curl guzzle
Can you include raw JSON in Guzzle POST Body?

This should be soo simple but I have spent hours searching for the answer and am truly stuck. I am …

php json curl guzzle
Can't set Guzzle Content Type

I'm trying to request this way: $body = []; $body['holder_name'] = $full_name; $body['bank_code'] = $bank_number; $body['routing_number'] = $…

php laravel curl guzzle
How to autoload Guzzle in Laravel 4?

How can I autoload Guzzle in Laravel 4? I am encountering the following error when I try to create a new …

php laravel laravel-4 composer-php guzzle