如何 运行 基于网络的 Postman collection 和 Newman,基于 HTTPS 协议

How to run web based Postman collection with Newman, on HTTPS protocol

我正在尝试从免费的虚拟主机文本文件中 运行 collection,我可以 运行 轻松地使用:

newman run %https://mysite.txt%

现在我正在尝试在本地捕获来自 newman 运行 的发送请求,所以我在 CMD 中添加了这个命令:

set HTTP_PROXY=127.0.0.1:62248

这应该允许我的应用在像这样使用它时记录来自 Newman 的请求:

newman run %https://mysite.txt% --env-var HTTP_PROXY --insecure

(在本地托管文件上运行完美) 但是,由于 txt 文件由 https 协议托管,我收到以下错误:

error: collection could not be loaded
  unable to fetch data from url "https://mysite.txt"
  tunneling socket could not be established, cause=getaddrinfo ENOTFOUND 62248

我可以 运行 纽曼 collection 从安全的 https 网址在本地录制它,还是我应该先在本地下载并保存然后 运行 在本地?

我目前的临时(希望我能得到一个更好的)是从存储文件的任何地方下载文件,运行 Newman 在本地使用下载的文件。