I am scripting SAP Fiori application and observed response of a request in Brotli encoded format (content-encoding: br).
I need to convert it to HTML format so I can capture 2 dynamic values from the response and pass along in the following requests.
Steps taken so far: I tried to convert it to gzip/deflate encoding by explicitly mentioning a header (ex: web_add_header("Accept-Encoding","gzip"); ) right before the request but the conversion takes lot of time while the br encoded response took negligible time. The whole point of compression is to optimize Response times, but I need to convert it to a humanreadable format so I can have the script pass. Could anyone please help let me know how to convert the Brotli encoded format to html without affecting the response time of the request. Thanks in advance!