We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Example Swagger/OpenAPI definition:
components: securitySchemes: Basic: type: "http" scheme: "basic" Security_Token: type: "http" description: "Access Key:Secret Key" scheme: "bearer" openapi: "3.0.1" info: version: '3' title: test description: example for Auth paths: /something: post: summary: Auth test responses: 201: content: text/plain: schema: type: "string" description: "Created" 401: content: text/plain: schema: type: "string" description: "Authorization failed" security: [{Basic: []}, {Security_Token: []}]
Swagger-UI configuration options:
SwaggerUIBondle({ dom_id: '#swagger-ui', deepLinking: true, presets: [ SwaggerUIBundle.presets.apis, SwaggerUIStandalonePreset ], plugins: [ SwaggerUIBundle.plugins.DownloadUrl ], layout: 'StandaloneLayout', defaultModelExpandDepth: "2", defaultModelsExpandDepth: "0", displayRequestDuration: "true", docExpansion: "none", oauth2RedirectUrl: "/swagger-ui/oauth2-redirect.html", operationsSorter: "method", tagsSorter: "alpha", tryItOutEnabled: "true", urls: [{url: "/api/docs/openapi/API v3", name: "API v3"}], validatorUrl: "" })
Incorrect header if non-ASCII characters are used during authorize
Steps to reproduce the behavior:
-H 'Authorization: Basic 0KDQtdC80L7QvdGC0L3QuNC6OtCg0LXQvNC+0L3RgtC90LjQug=='\
Same problem: Issue 2456
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Q&A (please complete the following information)
Content & configuration
Example Swagger/OpenAPI definition:
Swagger-UI configuration options:
Describe the bug you're encountering
Incorrect header if non-ASCII characters are used during authorize
To reproduce...
Steps to reproduce the behavior:
Expected behavior
-H 'Authorization: Basic 0KDQtdC80L7QvdGC0L3QuNC6OtCg0LXQvNC+0L3RgtC90LjQug=='\
Screenshots
Additional context or thoughts
Same problem: Issue 2456
The text was updated successfully, but these errors were encountered: