http
http copied to clipboard
A composable API for making HTTP requests in Dart.
There's already a TODO in window_handler.dart for this, but this just recently bit me. Basically we can get in a state in our application where if we have enough streams...
Is there a way to catch HTTP/2 ServerSocket call and redirect it to another URL?. I have found a way to do that for `get` requests but not for WebSocket...
Hi @natebosch! Could you release a new version of http2 without dart:io ([commit](https://github.com/dart-lang/http2/commit/83103b5e36426376cc9f206baa0861c94be5d223#diff-807e692308f0562976d7b9ff8ed3a9f9d9180b66bbd381ddc609b774470c9459))? It marks all packages depending on not supporting the js platform. More specifically, any package depending on...
The traffic from this package does not show up in the DevTools networking page. Does this package need to be adopted to support DevTools or vice versa? We should update...
in http2 demo there is such code to deal message; ``` var stream = transport.makeRequest(headers, endStream: true); await for (var message in stream.incomingMessages) { ``` but if the connection is...
Hi I have tested speed of http2 library and it is much slower comparing to http. I tested with client and server being on my local. Server is written in...
Hello! Thanks for the lib). I ran into the following problem. When server send me goaway frame, StreamHandler class create following exception: `StreamException( id, 'Remote end was telling us to...
Hi! I'm trying to use this package for a SSE server behind a http2 proxy. I'm able to connect to the server and get the first response but I'm unable...
A tcp-socket can be closed in one direction (the client can close one direction after it is done sending the request, and still listen for more response). We should support...
It would be nice if the library would support gzip content encoding out of the box the same way the HTTP1 Dart library does.