dio_curl_logger_interceptor

Creator: coderz1093

Last updated:

0 purchases

dio_curl_logger_interceptor Image
dio_curl_logger_interceptor Images

Languages

Categories

Add to Cart

Description:

dio curl logger interceptor

This package helps in debugging API requests using dio HTTP networking package
Features #

Works with app requests types (GET, POST, DELETE, PUT, OPTIONS, ...)
Works with app body types (Form data, Form URL encoded, Raw JSON, Raw text, ...)
Compatibility with Postman

Getting started #
attach the interceptor to a dio instance as follows,
remember to keep the logging interceptor at last to log all headers & fields added from other interceptors
final dio = Dio();

dio.interceptors.add(DioCurlLoggerInterceptor());
copied to clipboard
Usage #
You can also have some customization as you want, you can:

Customize how to print the curl (by default using log from dart:developer)
You can determine whether to print the cURL onRequest or onResponse & onError
see the following examples for more

// Customize how to print the curl
final dio = Dio();

// Write to a file for example:
final Directory directory = await getApplicationDocumentsDirectory();
final File file = File('${directory.path}/app_log.txt');

dio.interceptors.add(DioCurlLoggerInterceptor(onPrint: (final cURL) async {
print('cURL is: $cURL');
await file.writeAsString(cURL);
}));
copied to clipboard
// Determine when to print the cURL
final dio = Dio();

// [DEFAULT] this will print the cURL right before sending the the request to the server
dio.interceptors.add(DioCurlLoggerInterceptor(sendOnRequest: true));

// this will print the cURL once response arrive, either succeed or when exception happens
dio.interceptors.add(DioCurlLoggerInterceptor(sendOnRequest: false));
copied to clipboard
Contribution #
All contributions are welcome!
If you like this project then please click on the 🌟 it'll be appreciated or if you wanna add more epic stuff you can submit your pull request and it'll be gladly accepted 🙆‍♂️
or if you found any bug or issue do not hesitate opening an issue on github

License

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

Files In This Product:

Customer Reviews

There are no reviews.