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
This looks like the same issue as #80, except this affects the proxy mode rather than the mock server.
Given the following securitySchemes:
securitySchemes
securitySchemes: Session: type: apiKey in: cookie name: session APIKey: type: apiKey in: header name: "X-API-Key"
In both of the following cases a request with the given security section will log a violation of "API Key X-API-Key not found in header":
security
# Optional security security: - {} - APIKey: [] # Either Cookie or API Key security required security: - Session: [] - APIKey: []
No violation is logged for the cookie authentication which is present in the request in both cases.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
This looks like the same issue as #80, except this affects the proxy mode rather than the mock server.
Given the following
securitySchemes
:In both of the following cases a request with the given
security
section will log a violation of "API Key X-API-Key not found in header":No violation is logged for the cookie authentication which is present in the request in both cases.
The text was updated successfully, but these errors were encountered: