12

将 chrome 更新到版本 88.0.4324.104 后,从控制台窗口出现以下错误

Error with Permissions-Policy header: Parse of permission policy failed because of errors reported by strctured header parser.

从 ASP.NET Core 3.1 和 Aurelia SPA 开发的应用程序。尝试将以下中间件添加到后端

app.Use(async (context, next) =>
           
{      
         context.Response.Headers.Add("Permission-Policy", "geolocation 'none';midi 'none';notifications 'none';push 'none';sync-xhr 'none';microphone 'none';camera 'none';magnetometer 'none';gyroscope 'none';speaker 'self';vibrate 'none';fullscreen 'self';payment 'none';");
         await next(); 
});

但仍然收到控制台错误。

4

1 回答 1

17

我有同样的问题,它是这样解决的:

您创建权限策略的方式不同。

Permissions-Policy: fullscreen=(self "https://example.com"), geolocation=*, camera=()

自从这被称为功能政策以来的重大变化

于 2021-01-26T10:53:27.060 回答