I can't find any information on how to recover the response of a specific request from the network tab of the browser.
I have an issue when trying to poll remote API URL from browser as the remote domain does not have CORS configured correctly and I lack access to configure it so I must both launch the request and recover the response.
I have tried placing the request in an iframe and an async image download with the URL of the API. Both cases with the same issue. The request are executed but question is how to recover the response. I have looked at devtool.network both for chrome and mozilla but can find examples with the response being returned or a lot of information on the requests. I think my question can be related to API Reference for chrome.devtools.network That one never got solved. If somebody can share information on devtools with me or a workarround to my use case (avoid CORS) both would work as a solutions for me.
I only need to be pointed out in the way of documentation I can use or practical example of a web request response being recovered.