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
OpenAPI 3.0 supports usage of multiple API Keys.
components: securitySchemes: apiKey: type: apiKey in: header name: X-API-KEY appId: type: apiKey in: header name: X-APP-ID security: - apiKey: [] appId: []
However, X-APP-ID header is not properly appended to codesnippet during generation producing
curl --request POST \ --url https://petstore.com/api/v1/pet/ \ --header 'X-API-Key: REPLACE_KEY_VALUE' \ --header 'content-type: application/json' \ --data '{}'
The text was updated successfully, but these errors were encountered:
No branches or pull requests
OpenAPI 3.0 supports usage of multiple API Keys.
However, X-APP-ID header is not properly appended to codesnippet during generation producing
The text was updated successfully, but these errors were encountered: