I am trying to capture a list of outgoing HTTP request from a website,
this HTTP request come from JavaScript events such as onLoad, onClick
and Ajax. In total I have about 20 requests going out and I want to be
able to capture all this in a ruby object so that I can examine exactly
what’s been sent from each request.
Let me know if there is a ruby gem which does this, I know Net/HTTP.
But so far I only been able to capture details of the main request that
is going out nothing else.
I am trying to capture a list of outgoing HTTP request from a website,
this HTTP request come from JavaScript events such as onLoad, onClick
and Ajax. In total I have about 20 requests going out and I want to be
able to capture all this in a ruby object so that I can examine exactly
what’s been sent from each request.
Sorry, are you talking about capturing requests made to a third-party
server from your app, or responses from your app to requests from
a browser?
Because normally, web applications receive “requests”.
I am trying to capture a list of outgoing HTTP request from a website,
this HTTP request come from JavaScript events such as onLoad, onClick
and Ajax. In total I have about 20 requests going out and I want to be
able to capture all this in a ruby object so that I can examine exactly
what’s been sent from each request.
Sorry, are you talking about capturing requests made to a third-party
server from your app, or responses from your app to requests from
a browser?
Yes, that’s exactly what I meant request sent from my app to third
party.
Because normally, web applications receive “requests”.
Well in my case I have outgoing traffic with query strings and I want to
be able to track them.