gpt4 book ai didi

带密码的 AJAX 请求

转载 作者:太空宇宙 更新时间:2023-11-03 14:39:13 24 4
gpt4 key购买 nike

我有以下 PHP/CURL。我需要通过 JS/AJAX (Axios) 发送它

如何适配JS?

$username = 'test';
$password = 'test';

$curl_handle = curl_init();
curl_setopt($curl_handle, CURLOPT_URL, 'https://example.com/pc_api/index.php/token');
curl_setopt($curl_handle, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($curl_handle, CURLOPT_SSL_VERIFYPEER, 0);
curl_setopt($curl_handle, CURLOPT_USERPWD, $username . ':' . $password);
curl_setopt($curl_handle, CURLOPT_HTTPAUTH, CURLAUTH_BASIC);

最佳答案

axios一起使用, 使用 auth 进行基本身份验证:

axios({
method: 'get',
url: 'https://example.com/pc_api/index.php/token',
responseType: 'json', // default is json
auth: {
username: 'test',
password: 'test'
}
}).then(function(response) {
console.log(response);
}).catch(function(error) {
console.log(error);
});

检查 request config params

关于带密码的 AJAX 请求,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44696870/

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