Fiddler:如何在 gzip 编码响应中使用 oSession.utilFindInResponse
我正在尝试使用 Fiddler 在响应包含特定单词时中断并实时编辑响应。 但是,oSession.utilFindInResponse 函数似乎未成功匹配,因为响应使用 GZIP 编码。 有可能解决这个问题吗? 我是提琴手规则的新手,但可能有一种方法可以动态更改 http 压缩?
谢谢
I'm trying to use Fiddler to break when the response contains a specific word and edit the response live.
However, it seems that the oSession.utilFindInResponse function does not match successfully because the response is using GZIP encoding.
Is it possible to get around this ?
I'm new to fiddlers rules but there might be a way to change http compression on the fly ?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在会话对象上调用 oSession.utilDecodeResponse() 将从响应中删除 HTTP 分块和压缩。
Calling oSession.utilDecodeResponse() on the session object will remove HTTP chunking and compression from the response.