http_interop_http 0.7.0 copy "http_interop_http: ^0.7.0" to clipboard
http_interop_http: ^0.7.0 copied to clipboard

Interop-compatible wrapper over the standard Dart http package

example/example.dart

import 'dart:convert';

import 'package:http_interop/extensions.dart';
import 'package:http_interop/http_interop.dart';
import 'package:http_interop_http/http_interop_http.dart';

Future<void> main() async {
  final handler = OneOffHandler();
  final request = Request(
      'get',
      Uri.parse('https://example.com'),
      Body(),
      Headers.from({
        'User-Agent': ['R2-D2']
      }));
  final response = await handler.handle(request);
  print(response.statusCode);
  print(response.headers);
  print(await response.body.decode(utf8));
}
0
likes
140
pub points
66%
popularity

Publisher

verified publisherkarapetov.com

Interop-compatible wrapper over the standard Dart http package

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

http, http_interop

More

Packages that depend on http_interop_http