requests_inspector_plus 1.0.0 copy "requests_inspector_plus: ^1.0.0" to clipboard
requests_inspector_plus: ^1.0.0 copied to clipboard

A Flutter package for logging REST-APIs and GraphQL requests with runtime capture gating, sensitive-data masking and GraphQL operation labelling, accessible by shaking your phone to open the RequestsI [...]

Stand With Palestine

requests_inspector_plus ๐Ÿ•ต #

pub package

A Flutter package for logging API requests (Http Requests & GraphQL) requests.

requests_inspector_plus is a fork of requests_inspector by Abdelazeem Kuratem, extended with runtime capture gating, sensitive-data masking and GraphQL operation labelling.

Main Features: #

  1. Log your Http request, GraphQL and WebSockets.
  2. Intercept your requests and responses for testing.
  3. Share request details as json, cURL, or HAR file to re-run it again (ex. Postman).

And more and more

To get the RequestsInspector widget on your screen:
  1. ๐Ÿ“ฑ๐Ÿ’ƒ : Shake your phone.

  2. ๐Ÿ“ฑ๐Ÿ‘ˆ : Long-Press on any free space on the screen.

Also you can share the request details as (Log, cURL command, or HAR file) with your team to help them debug the API requests.

From Inspector to Postman ๐Ÿงก ๐ŸŽ‰๏ธ Now you can extract cURL command from the inspector to send the request again from your terminal or Postman ๐Ÿ’ช๐Ÿ’ช

HAR File Support ๐Ÿ“ฆ ๐ŸŽ‰๏ธ You can now share requests as HAR (HTTP Archive) files! HAR files are a standard format that can be imported into various tools like Postman, Proxyman, or any HAR-compatible tool for debugging and analysis. You can share HAR files in two formats:

  • HAR text: Copy the HAR content as text
  • HAR file (.har): Share as a downloadable .har file

The HAR format includes complete request/response details, headers, timing information, and more, making it perfect for comprehensive API debugging and sharing with your team.


Setup #

First, add it at the top of your MaterialApp with enabled: true.

void main() {
  runApp(const RequestsInspector(
    child: MyApp(),
  ));
}

1. RESTful API: #

Using Dio, pass by RequestsInspectorInterceptor() to Dio.interceptors and we are good to go ๐ŸŽ‰๏ธ๐ŸŽ‰๏ธ.

final dio = Dio()..interceptors.add(RequestsInspectorInterceptor());

Masking sensitive information

Pass a SensitiveDataMasker to redact secret values (tokens, passwords, cookies, ...) from the headers, query parameters, request body, GraphQL variables and response body before they are stored for display. Masking is applied only to the logged copy โ€” the real outgoing request and the live response are never altered.

final dio = Dio()
  ..interceptors.add(
    RequestsInspectorInterceptor(
      // Uses SensitiveDataMasker.defaultMaskedKeys when `maskedKeys` is omitted.
      masker: SensitiveDataMasker(
        maskedKeys: {'authorization', 'password', 'staticToken'},
        placeholder: '***',
        // Optional: customize the masked value per key.
        // maskValueBuilder: (key, value) => '<redacted $key>',
      ),
    ),
  );

Matching is by key name, case-insensitively, and works recursively through nested maps/lists and even JSON encoded inside string values.

Toggling capture at runtime

Pass an isEnabled ValueListenable<bool> (e.g. a ValueNotifier) to turn capture on/off at runtime โ€” while it is false nothing is recorded and the request/response stoppers are skipped. When omitted, capture is always on.

final networkLogEnabled = ValueNotifier<bool>(false);
final dio = Dio()
  ..interceptors.add(
    RequestsInspectorInterceptor(isEnabled: networkLogEnabled),
  );

// later, from a developer-options switch:
networkLogEnabled.value = true;

If you don't use Dio then don't worry #

In your API request just add a new RequestDetails using RequestInspectorController filled with the API data.

InspectorController().addNewRequest(
    RequestDetails(
        requestName: requestName,
        requestMethod: RequestMethod.GET,
        url: apiUrl,
        queryParameters: params,
        statusCode: responseStatusCode,
        responseBody: responseData,
        ),
    );

Real Restful example #

a. Normal InspectorController().addNewRequest.

Future<List<Post>> fetchPosts() async {
  final dio = Dio();
  final params = {'userId': 1};

  final response = await dio.get(
    '[https://jsonplaceholder.typicode.com/posts](https://jsonplaceholder.typicode.com/posts)',
    queryParameters: params,
  );

  final postsMap = response.data as List;
  final posts = postsMap.map((postMap) => Post.fromMap(postMap)).toList();

  InspectorController().addNewRequest(
    RequestDetails(
      requestName: 'Posts',
      requestMethod: RequestMethod.GET,
      url: '[https://jsonplaceholder.typicode.com/posts](https://jsonplaceholder.typicode.com/posts)',
      queryParameters: params,
      statusCode: response.statusCode ?? 0,
      responseBody: response.data,
    ),
  );

  return posts;
}

b. Using RequestsInspectorInterceptor.

Future<List<Post>> fetchPosts() async {
  final dio = Dio()..interceptors.add(RequestsInspectorInterceptor());
  final response = await dio.get('[https://jsonplaceholder.typicode.com/posts](https://jsonplaceholder.typicode.com/posts)');

  final postsMap = response.data as List;
  final posts = postsMap.map((postMap) => Post.fromMap(postMap)).toList();

  return posts;
}

Finaly, Shake your phone to get the Inspector #


2. GraphQl: #

To use requests_inspector_plus with graphql_flutter library. you jus need to wrap your normal HttpLink with our GraphQLInspectorLink and we are done.

Example:

 Future<List<Post>> fetchPostsGraphQlUsingGraphQLFlutterInterceptor() async {
 Future<List<Post>> fetchPostsGraphQlUsingGraphQLFlutterInterceptor() async {
  final client = GraphQLClient(
    cache: GraphQLCache(),
    link: Link.split(
      (request) => request.isSubscription,
      GraphQLInspectorLink(WebSocketLink('ws://graphqlzero.almansi.me/api')),
      GraphQLInspectorLink(HttpLink('[https://graphqlzero.almansi.me/api](https://graphqlzero.almansi.me/api)')),
    ),
  );
  const query = r'''query {
    post(id: 1) {
      id
      title
      body
    }
    }''';

  final options = QueryOptions(document: gql(query));
  final result = await client.query(options);
  if (result.hasException) {
    log(result.exception.toString());
  } else {
    log(result.data.toString());
  }
  var post = Post.fromMap(result.data?['post']);
  return [post];
}

Stopper (Requests & Responses) #

requests_inspector_plus (Stopper) enables your to stop and edit requests (before sending it to server) and responses (before receiving it inside the app).

  • First, you need to add navigatorKey to your MaterialApp then pass it to RequestsInspector to show Stopper dialogs.
final navigatorKey = GlobalKey<NavigatorState>();

void main() => runApp(
  RequestsInspector(
    // Add your `navigatorKey` to enable `Stopper` feature
    navigatorKey: navigatorKey,
    child: const MyApp(),
  ),
);

// ...

@override
Widget build(BuildContext context) {
  return MaterialApp(
    navigatorKey: navigatorKey, // <== Here!
    // ...
  • Second, just enable it from Inspector and it will stop all your requests and responses.

For Web, Windows, MacOS and Linux #

Obviously, The shaking won't be good enough for those platforms ๐Ÿ˜…

So you can specify showInspectorOn with ShowInspectorOn.LongPress.

void main() {
  runApp(const RequestsInspector(
    enabled: true,
    showInspectorOn: ShowInspectorOn.LongPress
    child: MyApp(),
  ));
}

OR, you can just pass ShowInspectorOn.Both to open the Inspector with Shaking or with LongPress.

void main() {
  runApp(const RequestsInspector(
    enabled: true,
    showInspectorOn: ShowInspectorOn.Both,
    child: MyApp(),
  ));
}

Some images #

๐Ÿค Contributors #

Contributors helping improve requests_inspector_plus: ๐Ÿ’ป๐ŸŽจ๐Ÿ“–๐Ÿšง


Abdelazeem

Belal

Mostafa

Abdelrahman

Anthony

M Hussein

Vadym

M Gawdat

Anas

Moaz

Michelle

Abdullah

Ahmed

Nourhan

Anthony

Dwiky

How to Contribute #

We welcome contributions from everyone! Here's how you can help:

  1. Report Issues: Found a bug or have a feature request? Open an issue
  2. Submit Pull Requests: Have a fix or improvement? We'd love to review your PR!
  3. Improve Documentation: Help us make the docs clearer and more comprehensive
  4. Share Feedback: Let us know how you're using the package and what could be better

To add yourself as a contributor, simply follow the contribution guidelines and your efforts will be recognized here!


Future plans: #

  • โœ… Add support for GraphQL.
  • โœ… Enhance the GraphQL request and response displaying structure.
  • โœ… Improve the request tab UI and add expand/collapse for each data block.
  • โœ… Better UI.
  • โœ… Support Dark/Light Modes.
  • โœ… Powerful JSON Tree View.
  • โœ… Collapsable separated sections.
  • โœ… Click to Copy Content of each section.
  • โœ… 'WillPopScope' is deprecated and shouldn't be used. Use PopScope instead. The Android predictive back feature will not work with WillPopScope.
  • โŒ Add search inside the request details page.
  • โŒ Add Http Interceptor.

๐Ÿ“ƒ License #

This project is licensed under the MIT License - see the LICENSE file for details.

๐ŸŽ‰ Thank you for using Requests Inspector! #

0
likes
130
points
93
downloads

Documentation

API reference

Publisher

verified publisherdwiky.my.id

Weekly Downloads

A Flutter package for logging REST-APIs and GraphQL requests with runtime capture gating, sensitive-data masking and GraphQL operation labelling, accessible by shaking your phone to open the RequestsInspector widget.

License

MIT (license)

Dependencies

collection, connectivity_plus, dio, flutter, gql, graphql, graphql_flutter, provider, sensors_plus, share_plus

More

Packages that depend on requests_inspector_plus