News

๐Ÿ”ฅ Download the Response of an HTTP Request in Laravel

Published
๐Ÿ”ฅ Download the Response of an HTTP Request in Laravel image

Marcel Pociot shared a tip on using the Laravel HTTP client method sink() to write a response to a file:

The sink request option is also available in the Guzzle HTTP client library, formerly the save_to request option:

$client->request('GET', '/stream/20', ['sink' => '/path/to/file']);
 
// PHP stream
$resource = \GuzzleHttp\Psr7\Utils::tryFopen('/path/to/file', 'w');
$stream = \GuzzleHttp\Psr7\Utils::streamFor($resource);
$client->request('GET', '/stream/20', ['sink' => $stream]);

If you'd like to learn more about all the excellent features Laravel's HTTP request class provides, check out the HTTP Requests documentation. The PendingRequest source is another excellent resource to see how Laravel's HTTP client works under the hood.

Paul Redmond photo

Staff writer at Laravel News. Full stack web developer and author.

Filed in

Sponsored

laravelcloud logo
Laravel Cloud

Easily create and manage your servers and deploy your Laravel applications in seconds.

Visit Laravel Cloud

The latest

View all →
CPX: The Composer Package Executor for PHP image

CPX: The Composer Package Executor for PHP

Read article
Laravel AI SDK Adds Human-in-the-Loop Tool Approval image

Laravel AI SDK Adds Human-in-the-Loop Tool Approval

Read article
Pest 5 Released With Test Impact Analysis, Agent Verification, and Evals image

Pest 5 Released With Test Impact Analysis, Agent Verification, and Evals

Read article
Queue-SQL: Run Mass Deletes and Updates Across Parallel Queue Jobs image

Queue-SQL: Run Mass Deletes and Updates Across Parallel Queue Jobs

Read article
Blade Formatting in Laravel Pint image

Blade Formatting in Laravel Pint

Read article
Inertia DevTools Is Now on the Chrome Web Store image

Inertia DevTools Is Now on the Chrome Web Store

Read article