19

我有一个 ASP.NET Web Api 2 应用程序。我在其中添加了 Swashbuckle(Swagger for .NET)。它显示我的端点没有问题,但为了发送请求,我需要将 Authorization 标头附加到该请求。如果我理解正确,我需要修改 index.html 文件(https://github.com/swagger-api/swagger-ui#how-to-use-it)所以我 git 克隆了 Swashbuckle 项目为了修改 index.html 并添加一些标题。

这是在 Swashbuckle 中随请求发送 Authorization 标头的唯一方法吗?

4

4 回答 4

11

为了使用 Swagger UI 发送带有请求的 Authorization 标头,我需要:

  1. 给定我的程序集的名称是:My.Assembly,它包含一个文件夹:Swagger,我放置了我的自定义 index.html,我在 SwaggerConfig.cs 中添加了这一行:

     c.CustomAsset("index", thisAssembly, "My.Assembly.Swagger.index.html");
    

请注意,index.html 会加载 javascript 和 css 文件。为了加载这些文件,我必须将文件路径中的所有点都更改为虚线。我不知道为什么必须这样做,但它解决了加载文件的问题......

  1. 在 index.html 文件中,我修改了

    addApiKeyAuthorization()

函数看起来像这样:

function addApiKeyAuthorization() {
        var key = encodeURIComponent($('#input_apiKey')[0].value);
        if (key && key.trim() != "") {
            var value = "auth-scheme api_key=123456,order_id=56789";
            var authKeyHeader = new SwaggerClient.ApiKeyAuthorization("Authorization", value, "header");
            window.swaggerUi.api.clientAuthorizations.add("Authorization", authKeyHeader);
        }
    }

注意我将“查询”更改为“标题”。

  1. 我也取消了这段代码的注释:

    var apiKey = "this field represents header but can be anything as long as its not empty";
    $('#input_apiKey').val(apiKey);
    

它将在第二个文本字段中显示文本,但只要它不为空,它包含的内容似乎并不重要。

这对我有用,使我能够加载自定义 index.html 文件。现在我正在考虑让 Swagger UI 用户能够操纵标头参数的值......

于 2015-05-26T10:55:16.073 回答
4

我在 js 文件中添加了以下代码,并将其作为嵌入式资源添加到我的 web api 项目中。当您构建并运行 Swagger 时,api_key 文本框将被替换为授权密钥文本框,您可以在其中粘贴您的 AuthKey,并且对于每个请求,swagger 会将其添加到请求标头中。

(function () {

    $(function () {
        var basicAuthUI =
         '<div class="input"><input placeholder="Authorization Token" id="input_token" name="token" type="text"></div>';
            $(basicAuthUI).insertBefore('#api_selector div.input:last-child');
            $("#input_apiKey").hide();
            $('#input_token').change(addAuthorization);
    });

    function addAuthorization() {
        var token = $('#input_token').val();

        if (token && token.trim() !== "" ) {
            window.swaggerUi.api.clientAuthorizations.add("api_key", new window.SwaggerClient.ApiKeyAuthorization("Authorization", "Bearer " + token, "header"));
            console.log("authorization added: Bearer = " + token);
        }
    }

})();
于 2016-06-30T14:01:00.127 回答
1

我认为通过修改index.html来发送授权头不是一个好方法。您只能添加一些设置来实现这一点。
这是我的解决方案: 1.
Starup.cs ConfigureServices方法中添加设置

    public void ConfigureServices(IServiceCollection services)
    {
        services.AddSwaggerGen(config => {
            config.SwaggerDoc("v1", new OpenApiInfo() { Title = "WebAPI", Version = "v1" });
            config.AddSecurityDefinition("Bearer", new OpenApiSecurityScheme
            {
                Name = "Authorization",
                In = ParameterLocation.Header,
                Type = SecuritySchemeType.ApiKey,
                Scheme = "Bearer"
            });
            config.AddSecurityRequirement(new OpenApiSecurityRequirement
            {
                {
                    new OpenApiSecurityScheme
                    {
                        Reference = new OpenApiReference
                        {
                            Type = ReferenceType.SecurityScheme,
                            Id = "Bearer"
                        }
                    },
                    Array.Empty<string>()
                }
            });
        });
    }

2.在Startup.cs 配置方法中添加设置

    public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
    {
        app.UseSwagger();
        app.UseSwaggerUI(c => c.SwaggerEndpoint("/swagger/v1/swagger.json", "API Document"));
    }

添加设置后,运行这个项目,可以找到一个 Authorization button swagger page,可以用来设置授权头。

于 2020-12-16T06:01:32.553 回答
0

对于不记名令牌,我是这样做的:我仅使用 swashbuckle 来生成 swagger.json 文件,并使用 Swagger.Net 来显示最新的 SwaggerUI 版本(3.xx)并对其进行自定义:

所以在我的项目引用中,我添加了(通过 nuget):

参考

大摇大摆的

在 index.html 中:

<input id="bearer-code-input" type="text" placeholder="Enter Bearer Token here" style="width: auto" value="yourtoken" />

然后在 SwaggerUIBundle 构造函数中:

const ui = SwaggerUIBundle({
...,
requestInterceptor: function (req) {
req.headers = {
'Authorization': 'Bearer ' + document.getElementById('bearer-code-
input').value
, 'Accept': 'application/json',
'Content-Type': 'application/json'
};
return req;
},
... })

结果显示: 结果

我还自定义了很多其他功能(Json 模型绑定器、查询字符串解析、自定义 SwaggerGenerator 以覆盖 ConflictingActionsResolver 的默认行为以便能够处理多个路由路径,但它不在此线程的范围内)

于 2017-10-26T15:16:00.407 回答