Newman(Postman) - 在 windows 身份验证下从 URL 导入集合

Newman(Postman) - Import collection from a URL under windows authentication

我正尝试 运行 newman 使用 url 中提到的 postman 集合 link

newman run http://localhost:62254/api/postman

唯一的问题是 url 在 windows 身份验证下,所以我收到 401 未经授权的响应,导致 newman 失败并出现以下错误。

the url "http://localhost:62254/api/postman" did not provide valid JSON data

我尝试通过如下请求传递凭据。但是没用。

http://username:password@localhost:62254/api/postman

如果我使用 'NTLM Authentication' 功能直接通过 Postman 访问端点,它工作正常。但是我不确定我是否可以将它与 newman 一起使用来获取集合本身。

我们无法在 Postman/Newman 中找到任何选项。所以最后我们让这个 URL 单独 (http://localhost:62254/api/postman) 在 Web 服务器中对匿名身份验证开放。