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

◆ fetch_request()

fl::promise< response > fl::fetch_request ( const fl::string & url,
const RequestOptions & options )

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

Definition at line 299 of file fetch.cpp.

299 {
300 // Create a fetch_options with the provided options
301 fetch_options request(url, options);
302
303 // Use the helper function to execute the request
304 return execute_fetch_request(url, request);
305}
Fetch options builder (fluent interface)
Definition fetch.h:200
fl::promise< response > execute_fetch_request(const fl::string &url, const fetch_options &request)
Internal helper to execute a fetch request and return a promise.
Definition fetch.cpp:72

References execute_fetch_request().

+ Here is the call graph for this function: