dio_http2_adapter

Creator: coderz1093

Last updated:

Add to Cart

Description:

dio http2 adapter

dio_http2_adapter #

An adapter that combines HTTP/2 and dio. Supports reusing connections, header compression, etc.
Getting Started #
Install #
Add the dio_http2_adapter package to your
pubspec dependencies.
Usage #
import 'package:dio/dio.dart';
import 'package:dio_http2_adapter/dio_http2_adapter.dart';

void main() async {
final dio = Dio()
..options.baseUrl = 'https://pub.dev'
..interceptors.add(LogInterceptor())
..httpClientAdapter = Http2Adapter(
ConnectionManager(idleTimeout: Duration(seconds: 10)),
);

Response<String> response;
response = await dio.get('/?xx=6');
for (final e in response.redirects) {
print('redirect: ${e.statusCode} ${e.location}');
}
print(response.data);
}
copied to clipboard
Ignoring a bad certificate #
void main() async {
final dio = Dio()
..options.baseUrl = 'https://pub.dev'
..interceptors.add(LogInterceptor())
..httpClientAdapter = Http2Adapter(
ConnectionManager(
idleTimeout: Duration(seconds: 10),
onClientCreate: (_, config) => config.onBadCertificate = (_) => true,
),
);
}
copied to clipboard
Configuring the proxy #
void main() async {
final dio = Dio()
..options.baseUrl = 'https://pub.dev'
..interceptors.add(LogInterceptor())
..httpClientAdapter = Http2Adapter(
ConnectionManager(
idleTimeout: Duration(seconds: 10),
onClientCreate: (_, config) =>
config.proxy = Uri.parse('http://login:password@192.168.0.1:8888'),
),
);
}
copied to clipboard

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.