我正在尝试通过以下 javascript 代码将 swf 文件嵌入到页面(谷歌应用引擎页面):
<script type="text/javascript">
//This example uses dynamic publishing with swfObject. Login is handled in the swf
//Note we are passing in attribute object with a 'name' property that is same value as the 'id'. This is REQUIRED for Chrome/Mozilla browsers
swfobject.embedSWF("loader.swf", "flashContent", "640", "480", "10.2", null, null, null, {name:"flashContent"});
//REST OF THE CODE
</script>
它在HTTP上正常工作,但内容在HTTPS上不工作。我用谷歌搜索了很多,但我没有找到解决方案。我需要为 Secure Canvas URL 使用 HTTPS 来创建 facebook 应用程序。正如您在下面的评论中看到的那样,https 可以在 safari 上运行,但不能在Chrome上运行。
任何想法将不胜感激。