FiddleCore 中的自动回复器
是否可以为 FiddleCore 开发类似 AutoResponder 的操作?
在这个问题中它说我们应该等待新版本的Fiddler。出来了。现在怎么办?
is it possible to develop an AutoResponder like actions for FiddleCore?
in this question it said that we should wait for new version of Fiddler. it's out. what now?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,您可以使用 FiddlerCore 编写类似 AutoResponder 的功能。 FiddlerCore 包包含一个允许您加载 .SAZ 流量存档捕获的类。
然后,您可以通过挂钩 BeforeRequest 方法并使用 oSession.utilCreateResponseAndBypassServer() 方法来回放加载的响应。
您需要检查 URL 和/或其他数据以确定要返回哪个响应,并将响应数据从加载的会话复制到新响应中。
Yes, you can write an AutoResponder-like feature using FiddlerCore. The FiddlerCore package includes a class that allows you to load a .SAZ traffic archive capture.
You can then play back the responses that you loaded by hooking the BeforeRequest method, and using the oSession.utilCreateResponseAndBypassServer() method.
You'd check the URL and/or other data to figure out which response to return, and copy the response data out of the loaded session into the new response.