我正在使用curl命令
curl -s https://www.google.com/
在jmeter中通过os进程采样器,我可以在ViewResultsTree中看到响应。
然而,当从os进程采样器运行以下命令时,我在ViewResultsTree中的响应中看不到任何内容。url是我们需要证书验证的内部URL。
curl -s -kX GET -H 'Accept: application/json' --cert 'abc.crt:<passphrase>' --key 'abc.key' https://example.com/accounts/12345/statuses
相同的curl命令,如果我从命令行(即终端)运行,我可以看到响应为json。
有什么遗漏?
答案 0 :(得分:0)
我通过在shell脚本中嵌入curl命令并从OS进程采样器运行shell脚本来完成解决方法,它工作正常