Reputation: 9827
I have some HTTPS POST REST API URLs in my mobile app (both Android and iOS) and I was wondering if its possible to sniff those urls?
Upvotes: 2
Views: 2369
Reputation: 14274
The urls CAN be sniffed with package sniffers, on proxy servers, gateways, etc. However, since you're using SSL (and as long as you don't disabled certificate checks), both your post parameters and the responses will be encrypted.
Upvotes: 3