FastLED 3.9.15
Loading...
Searching...
No Matches

◆ fetch_request()

fl::task::Promise< Response > fl::net::http::fetch_request ( const fl::string & url,
const RequestOptions & options )

Generic request with options (like fetch(url, options))

Definition at line 629 of file fetch.cpp.hpp.

629 {
630 // Create a FetchOptions with the provided options
631 FetchOptions request(url, options);
632
633 // Use the helper function to execute the request
634 return execute_fetch_request(url, request);
635}
Fetch options builder (fluent interface)
Definition fetch.h:195
Definition url.h:15
fl::task::Promise< Response > execute_fetch_request(const fl::string &url, const FetchOptions &request)
Internal helper to execute a fetch request and return a promise.

References execute_fetch_request().

+ Here is the call graph for this function: