使用express-ntlm身份验证对TFS API进行身份验证

时间:2019-03-01 21:02:39

标签: express tfs ntlm express-ntlm

如何使用<div class="wrapper"> <!-- .wrapper --> <div class="box"> <!-- .wrapper > .box --> <h1>Wrapper</h1> <!-- .wrapper > .box h1 --> </div> <div class="box-wrap"> <!-- .box-wrap --> <div class="box"> <!-- .box-wrap .box --> <h1>Box-wrap</h1> <!-- .box-wrap .box h1 --> </div> <div class="box"> <!-- .box-wrap .box --> <h1>Box</h1> <!-- .box-wrap .box h1 --> </div> </div> </div> express,创建一个express-ntlm端点,通过点击TFS api在TFS中为我创建一个错误?

我现在可以使用http://localhost:3000/api/bug/来做到这一点,这就是我的做法。

request-ntlm-promise

问题是我必须在const ntlm = require('request-ntlm-promise'); const ntlmOptions = { username: 'myUserName', password: 'myPassword', url: 'http://tfsinstance/collection/project/_apis/wit/workitems/$bug?api-version=4.1', headers: { 'Content-Type': 'application/json-patch+json' } }; const tfsBugObject =[{ 'op': 'add', 'path': '/fields/System.Title', 'value': 'Test title' }, { 'op': 'add', 'path': '/fields/Microsoft.VSTS.TCM.SystemInfo', 'value': 'Test system info' }, { 'op': 'add', 'path': '/fields/Microsoft.VSTS.TCM.ReproSteps', 'value': 'test reproduction steps' }]; ntlm.post(ntlmOptions, tfsBugObject).then((response) => { return res.send(response); }); 对象中提供用户名和密码。这样做不会像当前用户点击express API那样在TFS中创建错误,而是以用户“ myUserName”创建错误。

使用ntlmOptions软件包,是否可以使用从该软件包返回的NTLM凭证对express-ntlm进行http.post

TFS要求身份验证才能使用该API。

我希望使用http://tfsinstance/collection/project/...可以执行以下操作。

express-ntlm

然后

const express = require('express');
const ntlm = require('express-ntlm');
const http = require('http');
const app = express();

app.use(ntlm({ domain: 'mydomain', domaincontroller: 'ldap://domaincontroller' });

1 个答案:

答案 0 :(得分:0)

express-ntlm充当客户端和域控制器之间的代理。因此,域控制器将与客户端进行身份验证,express-ntlm只是充当中间角色,直到身份验证成功为止。

如果您可以使用某种API用户并使用express-ntlm来获取正确的用户名并将其传递给TFS API,这将是最简单的方法,否则我建议您创建自己的用户名客户端和TFS API之间的代理。