使用node.js中的Request v2.88.0进行摘要式身份验证

时间:2018-11-27 12:58:40

标签: node.js digest-authentication

当我尝试使用以下代码通过摘要身份验证进行访问时,出现了未授权错误。但是,当我尝试在Postman上发出请求时,它运行良好。

var options = {
    method: 'POST',
    uri: this._uri,
    auth: {
        user: 'vv',
        pass: 'pass',
        sendImmediately: false
    }
    body: {
        method: procedureName, 
        params: postParams, 
        id: 'jsonrpc',
    },
    json: true
};
request(
    options,
    function (error, response, body) {
        // body is the decompressed response body

    }
);

0 个答案:

没有答案