Is there any way to see the requests generated by the http-kit?

I am working on an application using the http-kit client library, and I think it generates requests that have a problem. Since requests go over https, I cannot just sniff them, and I also could not find a way to force the http-kit to use a proxy server, such as Charles, to view the contents of the packets.

Is there any way to see them? I want to compare them with the same queries in Chrome.

+4
source share
1 answer

This really works with the http-kit and outputs a lot of information: http://docs.oracle.com/javase/7/docs/technotes/guides/security/jsse/ReadDebug.html

, Java Clojure:

-Djavax.net.debug=all
+2

Source: https://habr.com/ru/post/1665753/


All Articles