4

当我将 Autorest 托管在运行 IIS 的服务器 2012R2 上时,我能够使用我的 api 生成代码

但是,当我尝试使用 localhost url 运行它时,我收到一条无法读取的消息。

我可以在浏览器中阅读 swagger.json

我正在使用命令

autorest --input-file=https://localhost:44348/api-docs/v1/swagger.json
--output-folder=generated --csharp --namespace=DD.MyApp.Connector

输出是

AutoRest code generation utility [version: 2.0.4283; node: v10.11.0]
(C) 2018 Microsoft Corporation.
https://aka.ms/autorest
   Loading AutoRest core      'C:\Users\kirst\.autorest\@microsoft.azure_autorest-core@2.0.4289\node_modules\@microsoft.azure\autorest-core\dist' (2.0.4289)
   Loading AutoRest extension '@microsoft.azure/autorest.csharp' (~2.3.79->2.3.82)
   Loading AutoRest extension '@microsoft.azure/autorest.modeler' (2.3.55->2.3.55)
FATAL: swagger-document-override/md-override-loader - FAILED
FATAL: Error: Could not read 'https://localhost:44348/api-docs/v1/swagger.json'.
FATAL: swagger-document/loader - FAILED
FATAL: Error: Could not read 'https://localhost:44348/api-docs/v1/swagger.json'.
Process() cancelled due to exception : Could not read 'https://localhost:44348/api-docs/v1/swagger.json'.
  Error: Could not read 'https://localhost:44348/api-docs/v1/swagger.json'.

在github 上研究了这个问题后,我尝试使用 dotnet run 启动 api,但没有帮助。

我尝试在具有管理员权限的 dos 命令外壳中运行 autorest

根据 github 问题,我可以将 swagger.json 保存到文件并通过引用该文件生成代码。

这不是一个很好的解决方案。

4

1 回答 1

2

您是否尝试使用httpswith localhost?如果你没有在那里放证书,你不应该使用https.

尝试http://localhost...

于 2019-03-26T19:37:22.943 回答