gpt4 book ai didi

jquery - 使用 jQuery 进行 Ajax 身份验证

转载 作者:行者123 更新时间:2023-12-03 22:54:01 25 4
gpt4 key购买 nike

我可以使用

接收请求的 xml
curl -X GET -u username:password url

但不与

$.get('url',
{username:"username",password:"password"},
function (data) {


});

没有 JavaScript 错误,没有跨域策略问题。这可能是一个语法错误,但我还没有找到像样的教程。请问有什么建议吗?

最佳答案

我认为您需要纯格式:

$.ajax({
type: 'GET',
url: 'url',
dataType: 'json',
//whatever you need
beforeSend: function (xhr) {
xhr.setRequestHeader('Authorization', make_base_auth(user, password));
},
success: function () {});
});

function make_base_auth(user, password) {
var tok = user + ':' + password;
var hash = btoa(tok);
return 'Basic ' + hash;
}

关于jquery - 使用 jQuery 进行 Ajax 身份验证,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10226333/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com