我正在尝试在Chrome扩展程序中使用facebook sj sdk。 我在我的扩展程序init上执行此操作:
window.fbAsyncInit = function() {
// init the FB JS SDK
FB.init({
appId: 'APP_ID', // App ID from the App Dashboard
//channelUrl : '//www.example.com/', // Channel File for x-domain communication
status: true, // check the login status upon init?
cookie: true, // set sessions cookies to allow your server to access the session?
xfbml: true // parse XFBML tags on this page?
});
// Additional initialization code such as adding Event Listeners goes here
console.log(FB);
};
// Load the SDK's source Asynchronously
(function(d, debug) {
var js, id = 'facebook-jssdk', ref = d.getElementsByTagName('script')[0];
if (d.getElementById(id)) {
return;
}
js = d.createElement('script');
js.id = id;
js.async = true;
js.src = "http://connect.facebook.net/en_US/all" + (debug ? "/debug" : "") + ".js";
ref.parentNode.insertBefore(js, ref);
}(document, /*debug*/false));
我收到了这个错误:
拒绝加载脚本'http://connect.facebook.net/en_US/all.js',因为它违反了以下内容安全策略指令:“script-src'self'chrome-extension-resource :”
我将清单中的权限设置为http://*/
。如何从扩展程序加载sdk?
答案 0 :(得分:6)
这是因为您尝试从Chrome扩展程序加载外部脚本。出于安全原因,要防止跨站点脚本,您需要在manifest.json
文件中获得特殊权限。
"content_security_policy": "script-src 'self' https://connect.facebook.net; object-src 'self'"
确保使用https://而不是http://。