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

serpapi logo
SerpApi

The Web Search API for Your LLM and AI Applications

Visit SerpApi

The latest

View all →
Major performance improvements & security patches for Filament v4.12 and v5.7! image

Major performance improvements & security patches for Filament v4.12 and v5.7!

Read article
Laravel Boost Project Rules: Teach Agents Your Conventions image

Laravel Boost Project Rules: Teach Agents Your Conventions

Read article
Extract an Image's Dominant Color in Laravel image

Extract an Image's Dominant Color in Laravel

Read article
Image Dominant Color and HEIC Support in Laravel 13.24 image

Image Dominant Color and HEIC Support in Laravel 13.24

Read article
Official Laravel Zed Extension: LSP for PHP & Blade image

Official Laravel Zed Extension: LSP for PHP & Blade

Read article
Laravel Head: Manage Meta Tags, Open Graph, and JSON-LD image

Laravel Head: Manage Meta Tags, Open Graph, and JSON-LD

Read article