如何通过获取请求传递凭据

时间:2017-08-20 12:03:59

标签: javascript node.js rest api fetch

当GET请求作为运行状况检查发送到RabbitMQ API时,我无法通过凭据来避免身份验证对话框。 如果我传递带有凭据的url (例如http://user:pass@localhost:15672/api/aliveness-test/%2F

它收到以下错误 -

rabbitCol.js:12 Uncaught (in promise) TypeError: Failed to execute 'fetch' on 'Window': Request cannot be constructed from a URL that includes credentials: http://user:pass@localhost:15672/api/aliveness-test/%2F
    at rabbitColChecking (rabbitCol.js:12)
    at allReqInt (allReqInt.js:5)
    at HTMLAnchorElement.onclick ((index):108)

如果我在网址中没有凭据的情况下发送此请求,它实际上发送了请求,但是在UI中弹出了身份验证对话框,这很烦人,也不是很好。

请求低于 -

var fetch = require('node-fetch');

    async function rabbitColChecking() {
        let index;
        const hostsRB = ['http://user:pass@host1:15672/api/aliveness-test/%2F', 'http://user:pass@host2:15672/api/aliveness-test/%2F', 'http://user:pass@host3:15672/api/aliveness-test/%2F', 'http://user:pass@host4:15672/api/aliveness-test/%2F];
        let lengthVal = hostsRB.length;
        for(let hostIndxRB = 0; hostIndxRB < lengthVal; hostIndxRB++) {
            index = hostIndxRB;
            let url = hostsRB[hostIndxRB];
            fetch(url, {method: 'GET', credentials:'same-origin', redirect: 'follow', agent: null, headers: {"Content-Type": "text/plain"}, timeout: 5000}
        ).then(function (hostindxRB, res) {
                handleLedResponseRB(res, hostindxRB);
            }.bind(null, hostIndxRB));
            await sleep(500);
        }
    }

发送此请求的触发器是&#34; onclick&#34;在一些HTML文件中运行。

我实际上尝试过我在网上看到的所有解决方案,但没有解决这个用例。

1 个答案:

答案 0 :(得分:6)

您可以使用授权标题通过提取发送您的用户名和密码,如下所示:

fetch(url, {
    method: 'GET',
    credentials: 'same-origin',
    redirect: 'follow',
    agent: null,
    headers: {
        "Content-Type": "text/plain",
        'Authorization': 'Basic ' + btoa('username:password'),
    },
    timeout: 5000
});

btoa是浏览器提供的功能。如果要在服务器端使用它,可以要求btoa npm模块来完成这项工作。

相关问题