While I am using the curl command
curl -s https://www.google.com/
through os process sampler in jmeter , I can see the response in ViewResultsTree.
However while running the below command from os process sampler, I can't see anything in the response in ViewResultsTree.The url is our internal one which needs certificate to validate.
curl -s -kX GET -H 'Accept: application/json' --cert 'abc.crt:<passphrase>' --key 'abc.key' https://example.com/accounts/12345/statuses
The same curl command , If I run from command line( i.e Terminal), I can see the response as json.
Is anything missing?