捕获IE资源请求
我正在尝试为 Internet Explorer 创建自定义 HTTP 请求/响应记录器。在我的应用程序中,我有一个嵌入式浏览器对象。我有一个指向 IWebBrowser2 接口的指针。该接口具有 BeforeNavigate2() 和 DocumentComplete() 方法,仅针对基页请求调用这些方法。但是,不会针对资源请求(例如 JavaScript、图像和样式表文件)调用这些方法。
是否有一个捕获资源请求的接口,或者有其他方法来捕获资源请求?
I am trying to create a custom HTTP request/response logger for Internet Explorer. In my application I have an embedded browser object. I have a pointer to IWebBrowser2 interface. This interface has BeforeNavigate2() and DocumentComplete() methods that get invoked only for base page requests. However those methods don’t get invoked for resource requests (such as JavaScript, images and style sheets files).
Is there an interface that captures requests for resources, or is there any other way to capture resource requests?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以按照 Fiddler 的方式设置 HTTP 代理,其级别低于 BHO。
您还可以尝试 DownloadBegin 事件。
最后,您可以实现自己的可插入协议 HTTP(或者您可能需要 MIME 过滤器)。
You can set up an HTTP proxy the way Fiddler does, which is at a lower level than the BHO.
You can also try the DownloadBegin event.
Lastly you can implement your own pluggable protocol for HTTP (or maybe you want a MIME filter).