我一直在使用CORS-Proxy来处理http请求,这对我来说很好。最近我遇到了一个用于发送电子邮件的API(通过https请求),这需要http基本身份验证。我想知道如何实现这一点。
这是我使用的代理服务器: https://github.com/gr2m/CORS-Proxy
考虑到这一点 https://github.com/Rob--W/cors-anywhere 这个支持https但没有基本身份验证。
答案 0 :(得分:0)
你看过MDN example了吗?这应该对你有用:
var invocation = new XMLHttpRequest();
var url = 'http://bar.other/resources/credentialed-content/';
function callOtherDomain(){
if(invocation) {
invocation.open('GET', url, true);
invocation.withCredentials = true;
invocation.onreadystatechange = handler;
invocation.send();
}
或者您也可以在每个请求上添加必要的请求标头(但这不是必需的):
invocation.setRequestHeader('Authorization', btoa(unescape(encodeURIComponent(username + ":" + password))));