Charles Proxy in Android Emulator
Learn how to use a tool called Charles Proxy with an Android emulator for capturing the traffic on your Android mobile application.
Join the DZone community and get the full member experience.
Join For FreeIn this article, we will discuss how to capture the traffic of your Android application using a tool called Charles Proxy. I recommend you continue reading, you will love it! At least, we love here at Apiumhub.
Developing a web application means immediately viewing and analyzing all HTTP requests that are made. Client requests and server responses are easily traceable and reproducible. Instead, when you are working with a mobile device, both physical and virtual, the analysis of this traffic is not as trivial.
Therefore we will present a tool that is very useful, as much in the case covered in this article, as in many others, Charles Proxy. This tool can be used to monitor all HTTP and HTTPS traffic, with certificates that the proxy itself provides us, with a duration of 24 hours.
Set Up Charles Proxy
First of all, we will configure our Charles Proxy. To do this, let’s go to Proxy in the menu and follow these steps:
- Proxy > Proxy Settings: We leave the port as default and activate “Enable transparent HTTP Proxying.”
Proxy > lL Proxy Settings: Activate “Enable SSL Proxying” and we add a new entry in Locations (Host: *, Port: *)
How to Set Up the Android Emulator
Once we set up Charles Proxy, we are going to set up our Android emulator. For that, when the time of launching it arrives, we will need to pass the IP of our Charles Proxy as an environment variable (in Charles Proxy: Help > Local IP Address), with something similar to the following command:
emulator -netdelay none -netspeed full -avd <emulador>
(If we have changed the port for another when we had to set up the Charles, we also have to change the port value.)
Once the emulator is opened, we will install the certificate that gives us Charles Proxy by opening from our mobile browser this URL. A dialog will automatically appear to install a new certificate on mobile as shown in the following picture:
It should be enough by putting a name and accepting the installation. Once all these steps are done, we go to Charlesproxy and click on the button “Start Recording” (Or also, from Proxy > Start Recording) and from now you will have any HTTP/HTTPS traffic exiting from the mobile. I leave you with a screenshot of the final result:
Published at DZone with permission of Oscar Galindo. See the original article here.
Opinions expressed by DZone contributors are their own.
Comments