Is it possible to read all the HTTP Request/Responses' header and body in a webpage through javascript or through any of its framework?
Screenshot of the required field (opens in the same window)
For example:- Like the way I could view/copy them, through my browser's developer tools.
To my understanding, if I could get hold onto an object or event that fires these requests then I can access the responseText property to fulfill my requirement.
My question is how do I do that? Is it even possible to get all the responseText for all the responses received in my webpage?
(As it has been rendered successfully, then possibly I should be able to access them as well, isn't it?)
I'm just a beginner, so not sure if my question is meaningful. Thanks for all the replies.