http
http copied to clipboard
A composable API for making HTTP requests in Dart.
Months ago i created a function to send images as base64 to my server in order to save them and it worked. Today i used that function and i am...
On the web `HttpRequest` supports `abort`: https://api.dart.dev/stable/2.8.1/dart-html/HttpRequest/abort.html We have a proposal for adding abort on the `dart:io` `HttpClientRequest`: https://dart-review.googlesource.com/c/sdk/+/147339 We need to come up with a design for supporting `abort`...
Closes #321, closes #623, closes #692 Fixes #293 Add a Uri field to BaseResponse with the final, potentially redirected, url for the content. The field is nullable for backwards compatibility...
This fixes the upload part of https://github.com/dart-lang/http/issues/465 I had also tried to include the download progress, but that did not work as expected. And it is why easier to do...
Flutter App crashed after getting this exception **Exception has occurred. SocketException (SocketException: OS Error: No route to host, errno = 113, address = 10.162.18.32, port = 60208)** THE same URL...
Hi amazing developers, Perhaps this is already on the agenda before, but the `http` library combines multiple `set-cookie`s in the response header into a comma-separated list that is set in...
dart2js will stop supporting internet explorer soon - so all supported browser should support `fetch` which allows for streaming. I'm not sure if streaming works on firefox so that will...
According to the docs it says: > If you're making multiple requests to the same server, you can keep open a persistent connection by using a Client rather than making...
Currently when using Multipart fields, the headers that are sent for each fields are hard-coded and can't be changed by the caller. I need to be able to change the...
I'm trying to upload a image file using MultipartRequest, it dosen't seem to work. I checked using postman, api seem to work fine. Not sure whats wrong with the MultipartRequest....