我在下面看着的问题在这里计算器在什么即时尝试做没有运气。
Ajax的授权请求报头连连失败
jQuery的阿贾克斯未经授权401错误
发送跨域帖子凭据?
这里是我的代码,我现在有:
$(document).ready(function() {
$.ajax({
url: 'http://sample.domain.com/script.php?name1=value1&jsonp=?',
type: 'GET',
dataType: 'json',
contentType: "application/json",
beforeSend: function(xhr) {
xhr.setRequestHeader("Authentication", "Basic ZnJvbWFwcGx********uOnRoM24zcmQ1UmgzcjM=") //Some characters have been replaced for security but this is a true BASE64 of "username:password"
},
success: function(data){
alert(data);
}
});
});
</script>
子站点我是通过htpasswd文件进行密码保护。 该网站的登录使用在使用Base64编码使用的用户名/密码组合的作品对我蛮好。
IM在一个比该URL上不同的域运行此脚本就是为什么我的JSONP =? 在url
响应IM从浏览器控制台得到的是: GET http://sample.domain.com/script.php?name1=value1&jsonp=jsonp1334177732136 401 (Authorization Required)