Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

请问请求头部怎么加呢?我配置了全局的Header,可是请求接口时并不会把这个全局的Header加上去 #32

Open
christan-duplicate opened this issue Dec 1, 2021 · 0 comments

Comments

@christan-duplicate
Copy link

christan-duplicate commented Dec 1, 2021

用的是:NSwag
全局这样加的


builder.Services.AddOpenApiDocument(c =>
{
    c.UseControllerSummaryAsTagDescription = true;

    c.AddSecurity("client", new OpenApiSecurityScheme
    {
        Description = "client for request",
        Name = "client",
        In = OpenApiSecurityApiKeyLocation.Header,
        Type = OpenApiSecuritySchemeType.ApiKey
    });

    c.AddSecurity("apiKey", Enumerable.Empty<string>(), new OpenApiSecurityScheme
    {
        Description = "Authorization for request",
        Name = "Authorization",
        In = OpenApiSecurityApiKeyLocation.Header,
        Type = OpenApiSecuritySchemeType.ApiKey
    });

    c.UseHttpAttributeNameAsOperationId = true;
    c.UseRouteNameAsOperationId = true;

});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant