捕获ajax请求
我想捕获一个 ajax http 请求,并发送所有它的 headers/cookies/post params 来保存它,以便我稍后可以抓取它。
我找不到使用 Firefox 或 Chrome 执行此操作的好方法。 Firebug 截断了很长的帖子参数,在中间说“...Firebug 已达到 Firebug 请求大小限制...”,这对我没有帮助。
有什么建议吗?
I want to capture an ajax http request w/ all of its headers/cookies/post params being sent to save it so I can scrape it later.
I can't find a good way of doing this with firefox or chrome. Firebug truncates long post paramters saying "... Firebug request size limit has been reached by Firebug. ... " in the middle of it, which doesn't help me.
Any suggestions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(8)
您还可以使用 IEInspector 中的 Http Analyzer,这是一个与 Fiddler 类似的工具
You can also use Http Analyzer from IEInspector, this is a similar tool as Fiddler
我使用一个名为 LiveHTTPHeaders 的 Firefox 插件。它捕获您需要的所有内容,并且不像 Wireshark 或 Fiddler 那样低级别。使用起来非常简单快捷,只需启用、发出 ajax 请求并保存数据以供以后使用。
There is a Firefox plugin that I use called LiveHTTPHeaders. It captures everything you would need and isn't as low level as Wireshark or Fiddler. Very easy and quick to use, just enable, make the ajax request, and save the data for later.
您可以使用 apache jmeter 项目 的 jmeter 代理,
可以找到一个教程 此处(pdf 文件)
you can use the jmeter proxy for the apache jmeter project
a tutorial can be found here (pdf file)
我喜欢使用 HTTP Fox。一个可以捕获您所有请求的 Firefox 插件。它会捕获所有请求,甚至是非 AJAX 的请求,但它会为您提供请求和响应的原始数据。
I like to use HTTP Fox. A plugin for firefox that can capture all your requests. It will catch all requests even the ones that are not AJAX but it provides you the raw data for both the request and response.
尝试使用 HAR 文件如果可以的话,格式化。 Firebug(通过 NetExport)和 HttpWatch。
Try to use the HAR file format if you can. It is supported by tools such as Firebug (via NetExport) and HttpWatch.
我们的网络使用 PAC 脚本。所以我们必须在工具 -> 中检查“使用 PAC 脚本” Fiddler 选项 ->连接
Our network here uses a PAC script. So we had to check 'Use PAC Script' in Tools -> Fiddler Options -> Connections
增加firebug中的限制,它是extensions.firebug.netDisplayedPostBodyLimit属性。
Increase the limit in firebug, it's the extensions.firebug.netDisplayedPostBodyLimit property.
您可以使用Fiddler。它捕获您和服务器之间的所有端口 80 流量以供以后查看。然后,您可以在其中查看每个请求(正常和 ajax 调用)的所有标头、cookie、参数等。所有这些都以原始或有组织的形式进行。
事实证明,它在调试我的 ajax 重型 Web 应用程序时对我来说是无价的。
You can use Fiddler. It captures all port 80 traffic between you and the server for later review. In it you can then look at all the headers, cookies, parameters, etc.. all in Raw or organized forms for each and every request (both normal and ajax calls).
It has proven to be invaluable to me in debugging my ajax heavy web app.