SwaggerUI中是否支持多个oauth2身份验证登录提供程序?

时间:2018-10-04 05:33:01

标签: asp.net-core oauth-2.0 swagger swagger-ui

我可以使用类似于

的代码获得多个登录选项以显示在SwaggerUI中
    services.AddSwaggerGen(c =>
    {
        c.AddSecurityDefinition("Google", new OAuth2Scheme
        {
            Description = "Google",
            Type = "oauth2",
            Flow = "implicit",
            TokenUrl = "https://www.googleapis.com/oauth2/v3/token",
            AuthorizationUrl = "https://accounts.google.com/o/oauth2/auth"
        });

        c.AddSecurityDefinition("Microsoft", new OAuth2Scheme
        {
            Description = "Microsoft",
            Type = "oauth2",
            Flow = "implicit",
            TokenUrl = "blah",
            AuthorizationUrl = "blah"
        });

        c.AddSecurityDefinition("Bearer", new ApiKeyScheme
        {
            Description = "Standard Authorization header using the Bearer scheme. Example: \"bearer {token}\"",
            In = "header",
            Name = "Authorization",
            Type = "apiKey"
        });

        c.OperationFilter<SecurityRequirementsOperationFilter>();

和类似

    app.UseSwaggerUI(c =>
    {
        c.OAuthClientId(this.Configuration["Authentication:Google:ClientId"]);
        c.OAuthClientSecret(this.Configuration["Authentication:Google:ClientSecret"]);
        c.OAuthAppName("blah");
        c.OAuthScopeSeparator(string.Empty);
        c.OAuthAdditionalQueryStringParams(new { audience = this.Configuration["Authentication:Google:ClientId"], scope = "openid profile email" });
        c.OAuthUseBasicAuthenticationWithAccessCodeGrant();
    });

如果我仅配置了一个oauth提供程序,则可以正常运行。问题是Google和Microsoft登录选项都将使用UseSwaggerUI方法中声明的默认ClientId和ClientSecret等。

是否可以在Swagger UI中支持多个登录提供程序及其相关配置?

0 个答案:

没有答案