Adrian Kashivskyy
Adrian Kashivskyy
As libxml cannot be imported to Swift directly, ResponseDetective currently uses `RDTBodyDeserializer`, `RDTXMLBodyDeserializer` and `RDTHTMLBodyDeserializer` types, thus making its unwanted Objective-C nature public. Ideally, I'd like to remove all traces...
Currently ResponseDetective prints `` for bodies in the following situations: 1. when the body is empty, i.e. has 0 bytes; 2. and when the body cannot be deserialized, i.e. has...
ResponseDetective should support `multipart/form-data` requests, deserializing each data segment as if they were at the root level. The output of body section should provide information on all segments: ```none Segment...
Logging long request/response bodies may block the main thread significantly. Logging should be moved to background thread.
Using a custom `URLProtocol` subclass to intercept HTTP(S) traffic surely results in being a good citizen, but, as a way to debug apps, it comes with disadvantages: 1. First of...