We are developing a script on Microsoft Dynamics application, however for couple of request we see the response body is captured in encrypted form.
Has anyone encountered similar issue in past?
Cybersecurity
DevOps Cloud (ADM)
IT Operations Cloud
If an answer to your question is correct, click on "Verify Answer" under the "More" button. The answer will now appear with a checkmark. Please be sure to always mark answers that resolve your issue as verified. Your fellow Community members will appreciate it!  Learn more
We are developing a script on Microsoft Dynamics application, however for couple of request we see the response body is captured in encrypted form.
Has anyone encountered similar issue in past?
Krishna Moorthy Lingasamy , Are you sure it is encrypted or just compressed with one of the compression options? Check your response header. You might exclude (some) compression options during your request, so LR can read/decompress it.
Reward contributions via likes or 'verified answers'
Hi JHF Remmelzwaa,
Your are right, Actually its not encryption its compressed response, I exclude "deflate", "br" in my header of the request and add only "web_add_header("Accept-Encoding","gzip"); to my request i can read the response in human readable format. Thank you for your help. i got solution from you