Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Getting ajax history

Is it possible to get a history of all past ajax calls from the browser?

If not, are there any ffx plugins or similar that will store all your ajax request in a similar way to the normal browser history?

like image 291
wheresrhys Avatar asked Oct 15 '22 09:10

wheresrhys


1 Answers

Hopefully not. This sounds remotely evil and tends to violate same origin policy. I mean, if this existed someone could, for instance, monitor all of a 3rd parties' activity on any web 2.0 site like gmail.

If this is for use within a single site, you want to have someone write a library that wraps the ajax calls and records a history and then get all the developers to use that instead of making ajax calls directly.

Maybe you want this Yahoo library as pointed out in this question.

I've used Firebug to debug a site that utilized ajax calls. So there is a ffx monitoring capability.

like image 127
Paul Avatar answered Oct 20 '22 00:10

Paul