How to protect api call from proxy

I am working on some application which is like API call. while i add proxy to mobile and see the response in web debugging tools. I can also see the parameters and parameters of the api call. enter image description here

while in other apps i dont see it and it is protected.

enter image description here

how can i figure it out?

+3


source to share


1 answer


The images say your API is using an insecure HTTP protocol while other applications are using HTTPS. The web API must run over HTTPS. HTTPS using SSL / TLS as the secure transport layer means that all data is encrypted before it connects online. So we don't care about any proxies



0


source







All Articles