contiamo / restful-react

A consistent, declarative way of interacting with RESTful backends, featuring code-generation from Swagger and OpenAPI specs 🔥
MIT License
1.87k stars 109 forks source link

Handle file downloads #391

Open amacleay-cohere opened 2 years ago

amacleay-cohere commented 2 years ago

Is your feature request related to a problem? Please describe. Sometimes, the response from an API we wish to use is some media type that can't easily be parsed into text, and I wish to receive it as a blob.

Describe the solution you'd like Respond to format: binary in the response description and return a blob from useGet/useMutate

Describe alternatives you've considered I can bypass restful-react processing by providing a type of */*, and I get back the raw Response object, thanks to #262, which is fine, although requires typescript hacking