jgilfelt / chuck

An in-app HTTP inspector for Android OkHttp clients
Apache License 2.0
4.68k stars 452 forks source link

URL and the request is shown in an encoded format #23

Open gnumilanix opened 7 years ago

gnumilanix commented 7 years ago

It would be really easy to read the URL and request if it was decoded properly.

jgilfelt commented 7 years ago

It would be really easy to investigate your issue if you provided some details.

gnumilanix commented 7 years ago

The URL in the "Overview" tab and the data in the "Request" tab is shown like this: username%3Dchuck

instead of: username=chuck

jgilfelt commented 7 years ago

Thanks. I'm not sure I want to change this. Chuck doesn't encode anything, so if that's how you send your requests out over the network, then that is what should be recorded and displayed. However, I can see where it might be useful for form encoded bodies etc.

ZakTaccardi commented 7 years ago

@jgilfelt some type of manual formatting toggle would be cool - such as a "prettify" toggle that would automatically prettify json/xml etc, or decode like @gnumilanix has requested.

that way we can clearly see how it was sent over the wire, or optionally make it more human-readable