nodejs获取WebAPI(Windows验证)

Posted WesChan

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nodejs获取WebAPI(Windows验证)相关的知识,希望对你有一定的参考价值。

处理了很多天,终于使用Nodejs可以发出请求至WebAPI,能够正常处理数据了

首先加入npm包

npm install httpntlm

在app.js中加入代码

var httpntlm = require(\'httpntlm\');
var fs = require(\'fs\');

var options = {
    url: \'http://get001.mygroup.com/InstantNoodle_SIT/Workbench/api/v1/styleproduct/1/1\',
    username: \'chenwes\',
    password: \'999\',
    domain: \'gfg8\',
    headers: {
        \'Accept\': \'application/json\',
        \'Content-Type\': \'application/json\'
    },
    json: {
        "filterType": "LEAF",
        "filters": [
            {}
        ],
        "attributeName": "item_number",
        "searchOperator": "eq",
        "filterValue": "15CNLI001CL"
    }
};

return new Promise(function (resolve, reject) {
    httpntlm.post(options,
        function (err, resp) {
            if (err) {
                reject(err);
            }            
            console.log(resp.headers);
            console.log(\'-----------------------------------------\');
            console.log(resp.body);

            fs.writeFile("http.html", resp.body, function (err) {
                if (err) {
                    return console.log(err);
                }
                console.log("The file was saved!");
            });
        });
});

 

参考:https://www.npmjs.com/package/httpntlm

http://stackoverflow.com/questions/33153979/how-to-post-data-using-node-http-ntlm

以上是关于nodejs获取WebAPI(Windows验证)的主要内容,如果未能解决你的问题,请参考以下文章

使用 Windows 身份验证在 Web API 控制器中获取 NetworkCredential 或客户端凭据

通过 Angular 调用时,Windows 身份验证不适用于 WebAPI

Windows 身份验证和 Angular 4 应用程序

服务器端 webapi 调用上的 Windows 身份验证失败

.Net Core WebAPI CORS 与 Windows 身份验证

如何在 Web API 的 Owin 身份验证的 Provider 类中获取 Windows 登录?