Reqable, one of the leading developer tools, introduced MCP support in version 3.2, making it possible to connect Reqable with AI. As a result, API debugging becomes much more efficient. In this article, we will look at how AI can take over much of the API debugging workflow.
What Is JSON Path? This Guide Is All You Need!
JSON Path is an expression syntax for searching and extracting specific content from JSON data. When JSON structures get complex—deeply nested layers or huge arrays—browsing and locating values becomes inefficient. JSON Path was created as a regex-like syntax to solve this, but it remains much simpler than regular expressions.
Introducing the Reqable 3.0 Update
Hello! After four months of development and two months of beta testing, we're excited to officially release Reqable 3.0 today. Here's a rundown of what's new.
How to intercept traffic on non-rooted Android devices
For non-rooted Android devices, CA certificates can only be installed in the user directory. However, after Android 7.0, the client cannot trust the CA certificate in the user directory, resulting in SSL handshake failure. So, how to solve this problem?
Reqable + Proxifier forces MITM to capture traffic
Reqable desktop app uses the system network proxy to capture traffic, but it has limitations. For example, some applications or network libraries ignore the system network proxy settings and the traffic does not go through Reqable. In this case, Proxifier is needed. This article specifically introduces how to use Proxifier and Reqable to solve this issue.
How to capture Flutter based application traffic
Flutter uses Dart as thed evelopment language, but Dart SDK is not proxy-aware, which means the application doesn’t use the proxy configuration of the system and sends the data directly to the server. We usually set up a network proxy for Wi-Fi to intercept the traffic. Obviously, this does not work for the Flutter application.