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
Hi, I'm trying to define JWT and API key security. Only first security schemes is displayed ith bump preview My spec looks like :
bump preview
... "components": { "securitySchemes": { "my_jwt": { "type": "http", "scheme": "bearer", "bearerFormat": "JWT" }, "my_api_key": { "type": "apiKey", "name": "Ocp-Apim-Subscription-Key", "in": "header" } } } ... ... "security": [ { "my_jwt": [], "my_api_key": [] } ] ...
Actual result :
curl \ -X GET https://{uri} \ -H "Authorization: Bearer $ACCESS_TOKEN"
Expected :
curl \ -X GET https://{uri} \ -H "Authorization: Bearer $ACCESS_TOKEN" \ -H "Ocp-Apim-Subscription-Key: $API_KEY"
The text was updated successfully, but these errors were encountered:
Hi @deka,
Thanks a lot for the feedback. We are taking a look on this and will let you know how to fix this as soon as possible.
Sorry, something went wrong.
Hello @deka,
sorry for the late reply. We have deployed a fix for this issue on bump.sh. Can you let me know if the result suits you?
Thank you 🙂
Thanks @paulRbr, it works as expected. Regards
No branches or pull requests
Hi,
I'm trying to define JWT and API key security.
Only first security schemes is displayed ith
bump preview
My spec looks like :
Actual result :
curl \ -X GET https://{uri} \ -H "Authorization: Bearer $ACCESS_TOKEN"
Expected :
The text was updated successfully, but these errors were encountered: