I'm trying to learn the Facebook API and now I came across an error (another) and I couldn't really understand, even by searching on google.
This is the error :
Refused to load the script 'data:application/x-javascript;base64,LyohICRGaWxlVmVyc2lvbj0xLjYuMTczICovIA…ExMTIyQTYyNjUzRjZDQzcyOEIwRjZFRjJGRkMxQ0E3QjU3OUY0RDIyNERBRDY0QUI2RDRFQUFD'
because it violates the following Content Security Policy directive:
"script-src https://*.facebook.com http://*.facebook.com https://*.fbcdn.net
http://*.fbcdn.net *.facebook.net *.google-analytics.com *.virtualearth.net *.google.com 127.0.0.1:* *.spotilocal.com:*
chrome-extension://lifbcibllhkdhoafpjfnlhfpfgnpldfl 'unsafe-inline'
'unsafe-eval' https://*.akamaihd.net http://*.akamaihd.net".
The thing is I followed the directions from the dev section of Facebook.com And this is my code.
</head>
<body>
<div id="fb-root"></div>
window.fbAsyncInit = function() {
// init the FB JS SDK
FB.init({
appId : '205530275330', // App ID from the App Dashboard
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?
});
};
(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 = "//connect.facebook.net/en_US/all" + (debug ? "/debug" : "") + ".js";
ref.parentNode.insertBefore(js, ref);
}(document, /*debug*/ false));
(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = "//connect.facebook.net/en_US/all.js#xfbml=1&appId=APP_ID";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));
<fb:login-button show-faces="false" width="200" max-rows="1"></fb:login-button>
</body>
I mostly read about Chrome extension problems but not for Facebook API so I'm kinda lost now..
Thanks !