首页 > 解决方案 > 由于安全策略指令,ReCAPTCHA2 脚本加载错误

问题描述

在我的Angular应用程序中,当我尝试使用reCAPTCHA2.

vendor.js:184374 Refused to load the script 'https://www.google.com/recaptcha/api.js?onload=ngx_captcha_onload_callback&render=explicit&hl=en' because it violates the following Content Security Policy directive: "script-src 'self' 'unsafe-inline' 'unsafe-eval'". Note that 'script-src-elem' was not explicitly set, so 'script-src' is used as a fallback.

我正在使用这个Angular变体 - https://enngage.github.io/ngx-captcha/

我该如何解决这个问题?我当前的安全策略是contentSecurityPolicy = "default-src 'self' ; script-src 'self' 'unsafe-inline' 'unsafe-eval'; style-src 'self' 'unsafe-inline' ;img-src 'self' data: ; worker-src blob:"

我不想向所有类型的脚本打开 Web 应用程序。

标签: angular6recaptchacontent-security-policy

解决方案


尝试像这样修改它:

contentSecurityPolicy = "default-src 'self' https://www.gstatic.com/recaptcha/ https://www.gstatic.com/recaptcha/ ; script-src 'self' 'unsafe-inline' 'unsafe-eval'; style-src 'self' 'unsafe-inline' ;img-src 'self' data: ; worker-src blob:"

我刚刚添加了:

 https://www.gstatic.com/recaptcha/ https://www.gstatic.com/recaptcha/ 

推荐阅读