Cross-Origin-Embedder-Policy - HTTP 编辑
HTTP Cross-Origin-Embedder-Policy
(COEP) 响应标头可防止文档加载未明确授予文档权限(通过 CORP或者 CORS)的任何跨域资源 。
Header type | Response header |
---|---|
Forbidden header name | no |
语法
Cross-Origin-Embedder-Policy: unsafe-none | require-corp
指令
unsafe-none
- 这是默认值. 允许文档获取跨源资源,而无需通过CORS协议或
Cross-Origin-Resource-Policy
头。 require-corp
- 文档只能从相同的源加载资源,或显式标记为可从另一个源加载的资源。
如果跨源资源支持CORS,则crossorigin
属性或Cross-Origin-Resource-Policy
头必须使用它来加载资源,而不会被COEP阻止。
示例
某些功能取决于跨域隔离
为了节省时间你可以只接受类似于SharedArrayBuffer
或者 Performance.now()
对象, 只要你的文档有一个值被设置为require-corp
的 COEP 头部.
Cross-Origin-Embedder-Policy: require-corp Cross-Origin-Opener-Policy: same-origin
你可以看看这个头部 Cross-Origin-Opener-Policy
,这样你设置起来会做的更好。
检查 cross origin isolation 是否成功,你可以再次测试crossOriginIsolated
这个属性 是否对窗口和工作的上下文有效:
if (crossOriginIsolated) {
// Post SharedArrayBuffer
} else {
// Do something else
}
避免CORS阻塞COEP
If you enable COEP using require-corp
and have a cross origin resource that needs to be loaded, it needs to support CORS and you need to explicitly mark the resource as loadable from another origin to avoid blockage from COEP. For example, you can use the crossorigin
attribute for this image from a third-party site:
<img src="https://www.wenjiangs.com/wp-content/uploads/2020/mozilla/img.png" crossorigin>
规范说明
Specification |
---|
HTML Living Standard Cross-Origin-Embedder-Policy header |
浏览器兼容性
BCD tables only load in the browser
The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.参阅
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论