我知道,这里已经谈了很多时间,我读到了这些线索中的大多数,但我看不到我的文字。
问题在于,我正试图利用比喻的皮来缩短古戈格尔幼苗的延伸。 在我这样做之前,我保存了当地储存中的用户标识和缩影。
这样做的守则是:
$.ajax({
url:"http://api.bit.ly/v3/validate",
dataType: jsonp ,
data:{
login: login,
apiKey: apiKey,
x_login :"test",
x_apiKey :"test"
},
success:function (jo, textStatus, jqXHR) {
if (jo.status_code == 200) {
setItem( dg_BitlyApiKey , apiKey);
setItem( dg_BitlyLogin , login);
alert( Saved );
} else {
alert( Incorrect login and/or apiKey! )
}
}
});
我确实有我的许可:permissions”:“tabs”、“notifications”、“http://*/*”、“https://*/*”
,但我仍然保留:
Refused to load script from http://api.bit.ly/v3/validate?callback=jQuery17204477599645033479_1334062200771&login=&apiKey=&x_login=test&x_apiKey=test&_=1334062201506 because of Content-Security-Policy.
文字本身在展期之外发挥作用,因此我假定问题在文字内,但得到许可。
我在这里做了什么错误呢?