Android-Request-Inspector-WebView
Android-Request-Inspector-WebView copied to clipboard
Inspect and intercept full HTTP requests sent from Android WebViews
First of all, I deeply appreciate this very good project. I wonder If a changed request does not make any problem when I change some body content. ex. override fun...
Fix finding a request; optimization of saving requests.
It would be good to have a feature to capture the response body as well. **Desired Syntax** ```kotlin val response = super.shouldInterceptRequest(view, webViewRequest) println(response.body) return response ```
Hello! I'm loading a webpage that is always doing the same POST request and most of the times I'm able to get request body using this library. However, sometimes when...
In order to customize `logWebViewRequest`, it should be open. Currently it is not open.
Currently, the recorded events are stored in an unbound ArrayList inside RequestInspectorJavaScriptInterface, but after many requests this could easily be too big. It would be nice if along Inspector config...