外部(CDN 托管)图像请求 URL 在 IE8 中通过 https 重写在画布页面上,请求 proxy.php

发布于 2024-12-07 14:08:46 字数 808 浏览 0 评论 0原文

我在 Facebook 上有一个基于画布的应用程序,需要加载大量图像,因此我使用 JavaScript 创建它们。

var img = new Image();
img.src = document.location.protocol + '//example.cloudfront.net/example_path/example.png';

这些图像托管在 Amazon 的 CDN 上,其基本 URL 类似于:

https://example.cloudfront.net/example_path/example.png

托管在云(EC2,也是 Amazon)中的应用程序的 URL 类似于:

https://cloud.example.com/path_to_app/

它适用于大多数浏览器,但不适用于 IE (8)。

在 IE 中,如果我检查创建的图像的 src 属性,它会显示正确的 URL,但浏览器发出以下请求:

GET /path_to_app/proxy.php?url=https://example.cloudfront.net/example_path/example.png HTTPS/1.1

我的服务器上没有 proxy.php服务器,“代理”一词也没有出现在我的代码中,无论是客户端还是服务器端。

对于通过 https 提供的 iframe 画布页面中的外部托管内容,是否有一些我不知道的内容?

I have a canvas-based app on Facebook wit a lot of images to load, so I'm creating them in JavaScript.

var img = new Image();
img.src = document.location.protocol + '//example.cloudfront.net/example_path/example.png';

The images are hosted on Amazon's CDN, their base URL is similar to:

https://example.cloudfront.net/example_path/example.png

The URL of the app, hosted in a cloud (EC2, also Amazon) is similar to:

https://cloud.example.com/path_to_app/

It works on most browsers, but not in IE (8).

In IE, if I inspect the src property of a created image, it shows the correct URL, but the browser makes the following request:

GET /path_to_app/proxy.php?url=https://example.cloudfront.net/example_path/example.png HTTPS/1.1

There is no proxy.php on my server, nor is the word 'proxy' present anywhere in my code, neither client- nor server-side.

Is there something I don't know about externally hosted content in an iframe canvas page, served over https?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

诠释孤独 2024-12-14 14:08:46

我发现了问题。

我在 IE 中使用 flashcanvas 来模拟元素。 Flash存在跨域资产访问安全问题,因此小程序通过代理php脚本请求它们(实际上包含在发行版中,哈哈)。

问题是,flashcanvas 源代码被最小化/混淆,因此字符串“proxy”不可见。

I found the problem.

I'm using flashcanvas in IE to emulate the <canvas> element. There are cross-domain asset access security issues with Flash, so the applet requests them via a proxy php script (actually included in the distribution, lol).

Trouble was, the flashcanvas source code is minimized/obfuscated, so the string 'proxy' is not visible.

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