在Windows上通过C#解决方案中提供的.bat文件启动browsermob时,我无法从REST API中检索提供的HAR文件中的request \ response数据。
我尝试将/ proxy / [port] / har captureContent直接设置为true,但是它不提供请求\响应内容。
查看示例代码,我看到有一个提供给Java初始化对象的设置
// enable more detailed HAR capture, if desired (see CaptureType for the complete list)
proxy.enableHarCaptureTypes(CaptureType.REQUEST_CONTENT, CaptureType.RESPONSE_CONTENT);
我已经开始编写一些自定义Java命令行应用程序代码来提供这些初始化设置,但是我想发帖以查看这是否是获取其余响应的请求\响应内容的正确途径。