为什么 CORS 不适用?在 gcp app-engine 中

为什么 CORS 不适用?在 gcp app-engine 中

我正在尝试在网站上发布 marvin JS。

iframe和功能本身没有问题,但是在使用附加功能时就会出现问题。

当执行当前页面时,会出现以下消息。

[错误] SecurityError:阻止来源为“-mysitedomain.appspot.com”的框架访问跨源框架。协议、域和端口必须匹配。

阻止来源为“https://storage.googleapis.com”的框架访问来源为“https://-mysitedomain.appspot.com”的框架。协议、域和端口必须匹配。

这是与 CORS 相关的问题吗?

我另外将 CORS 添加到存储桶中,但问题并没有解决。

我的 CORS 设置文件:

[
    {
        "origin": ["*"],
        "method": ["*"],
        "responseHeader": ["*"],
        "maxAgeSeconds": 3600
    }
]

任何帮助,将不胜感激。

相关内容