Skip to content Skip to sidebar Skip to footer

Inconsistent Httpurlconnection Behaviours On Android - How To Debug?

I have a weird problem: Implementing an interface to a webserver in my Android App, I connect to it using a HttpsUrlConnection. The connection uses additional HTTP Basic authorizat

Solution 1:

You could set up a proxy such as Fiddler or Charles proxy (and I think there are firefox extensions as well) and point your app to the proxy instead. Even if you don't set it up to actually be a proxy (such that the requests actually work), as long as it captures the requests you should be able to compare the difference between the requests made from 4.0.3 vs. 2.3.5.


Post a Comment for "Inconsistent Httpurlconnection Behaviours On Android - How To Debug?"