FLUTTER ECOSYSTEM

Abdelazeem777/requests_inspector

Abdelazeem777/requests_inspector open-source repository details.

Projektcover von requests_inspector
Stars
21
Forks
47
Letzter Push (UTC)
16.08.2026
Projektstatus
Aktiv
Abdelazeem Kuratem GitHub avatar
GITHUB User

Abdelazeem Kuratem ↗

Coffee Machine ☕ + Code Machine👨‍💻= Better World 🌍✨

Egypt
SprachenDartC++CMakeHTMLRubySwiftCKotlinObjective-C

Von diesem Repository veröffentlichte Pakete

Verwendete Abhängigkeiten

Abhängigkeiten 12 Einträge

Original-README

Englischer Projektschnappschuss. Aktuelle Inhalte auf GitHub.

Projekt-README ein-/ausklappen

Stand With Palestine

https://raw.githubusercontent.com/Abdelazeem777/requests_inspector/main/images/logo_with_text_right.png

requests_inspector 🕵

pub package

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

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.

https://raw.githubusercontent.com/Abdelazeem777/requests_inspector/main/images/mobile_list.jpg https://raw.githubusercontent.com/Abdelazeem777/requests_inspector/main/images/mobile_request.jpg

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 💪💪

https://raw.githubusercontent.com/Abdelazeem777/requests_inspector/main/images/curl_share_request.gif

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());
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

<img src = "https://raw.githubusercontent.com/Abdelazeem777/requests_inspector/main/images/mobile_list.jpg" width ="280" /> <img src = "https://raw.githubusercontent.com/Abdelazeem777/requests_inspector/main/images/mobile_request.jpg" width ="280" />


2. GraphQl:

To use requests_inspector 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 (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.

<img src="https://raw.githubusercontent.com/Abdelazeem777/requests_inspector/main/images/stopper_feature.gif" width="280"/>


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

https://raw.githubusercontent.com/Abdelazeem777/requests_inspector/main/images/web_list.png https://raw.githubusercontent.com/Abdelazeem777/requests_inspector/main/images/web_request.png https://raw.githubusercontent.com/Abdelazeem777/requests_inspector/main/images/mac_list.png https://raw.githubusercontent.com/Abdelazeem777/requests_inspector/main/images/mac_request.png https://raw.githubusercontent.com/Abdelazeem777/requests_inspector/main/images/linux_list.png https://raw.githubusercontent.com/Abdelazeem777/requests_inspector/main/images/linux_request.png

🤝 Contributors

Contributors helping improve requests_inspector: 💻🎨📖🚧

https://avatars.githubusercontent.com/u/30933932?v=4?s=100
Abdelazeem
https://avatars.githubusercontent.com/u/50274195?v=4?s=100
Belal
https://avatars.githubusercontent.com/u/87443208?v=4?s=100
Mostafa
https://avatars.githubusercontent.com/u/29352955?v=4?s=100
Abdelrahman
https://avatars.githubusercontent.com/u/122436156?v=4?s=100
Anthony
https://avatars.githubusercontent.com/u/6766413?v=4?s=100
M Hussein
https://avatars.githubusercontent.com/u/44924680?v=4?s=100
Vadym
https://avatars.githubusercontent.com/u/10387795?v=4?s=100
M Gawdat
https://avatars.githubusercontent.com/u/67749770?v=4?s=100
Anas
https://avatars.githubusercontent.com/u/43591891?v=4?s=100
Moaz
https://avatars.githubusercontent.com/u/72160249?v=4?s=100
Michelle
https://avatars.githubusercontent.com/u/32640450?v=4?s=100
Abdullah
https://avatars.githubusercontent.com/u/41107620?v=4?s=100
Ahmed
https://avatars.githubusercontent.com/u/77892673?v=4?s=100
Nourhan
https://avatars.githubusercontent.com/u/16952651?v=4?s=100
Anthony
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:

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

📃 License

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

🎉 Thank you for using Requests Inspector!