捕获IE资源请求

发布于 2024-08-09 22:28:55 字数 243 浏览 5 评论 0原文

我正在尝试为 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

日记撕了你也走了 2024-08-16 22:28:55

您可以按照 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).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文