Export single ASM Event Log over API
Hello,
I looked at the forum and also documentation but couldn't find anything.
I am trying to export single log Security ›› Event Logs : Application: Requests with the VT support id over API. (v 15)
I replicate all the steps and am successfully capable of writing the HTML file w/ python.
The only difference is that one specific line has missing base64 data, and the HTML file is not rendered correctly, making it unuseful. Only redacted part is less, and unfortunately, it contains sensitive info, I can not provide more info. But the rest of the file is the same.
window.requestsData = conv_value_REQUESTS_DATA_PLACEHOLDER ("eyj//redacted....==);
First, I thought something was wrong with the requests library of python, but the HTTP response (800kb approx.) was successfully written to the file. I tried other libraries, and the result was the same.
My question is, did anyone do something like that before, and/or do you have any other suggestions?
Thank you.
Hello,
After days of debugging, I discovered that I am querying the support id as a List object.
As a result, API does not return an error instead, the particular place is empty. After changing it to a string and everything works as expected.