krv
krv

Reputation: 2910

View HTTPS on FIddler on Android

I am trying to check which API an app is using and what data is being sent by the app.

I am using fiddler to intercept the data. However, I am unable to get what data is being sent. I assume this is because of HTTPS.

I am getting the following response in fiddler: enter image description here

enter image description here

How can I get the see the request/response data?

And How can I secure my API so no one can view my data :-)

-Thanks

Upvotes: 0

Views: 405

Answers (1)

Ruchira Randana
Ruchira Randana

Reputation: 4179

Please check the Fiddler documentation here. Basically, you need to

  1. Route your traffic to use the Fiddler as a proxy
  2. Install Fiddler's root certificate on your device's trusted list
  3. Be on the same network as the computer which has Fiddler

Upvotes: 1

Related Questions