2018-09-12 把HttpRequest 转换成curl 记录到console

开发机不能联网了,要上Dev上面测试,写几行代码重新编译一遍谁受得了,老板给出方案,转成curl 在命令行运行一下不就成了

everything is curl,既然这样,那就转吧
https://curl.haxx.se/

后来找到了一个curl转go的代码,挺好玩,
https://github.com/adithyaphilip/curl-to-java
还有在线版本
https://mholt.github.io/curl-to-go/

顺着这个思路继续找,发现
https://github.com/dzieciou/curl-logger

最终发现

  • OkHttp client provides similar request interceptor to log HTTP requests as curl command.

写个interceptor,所有request发出之前先log一下,美。。。

https://github.com/mrmike/Ok2Curl

你可能感兴趣的:(2018-09-12 把HttpRequest 转换成curl 记录到console)