-
-
Notifications
You must be signed in to change notification settings - Fork 228
This issue was moved to a discussion.
You can continue the conversation there. Go to discussion →
apiKey securityScheme support #600
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
Comments
I also am dealing with openapi docs that use Basic HTTP Authentication securitySchemes:
basicAuth:
type: http
scheme: basic I'm then adding to my request... security:
- basicAuth: []
|
Is it posible to fix by templates? |
Yes, it is. Workaround: Please follow this https://github.com/openapi-generators/openapi-python-client#using-custom-templates
|
Awesome, thanks for providing a workaround @Nov1kov ! |
Maybe it would be a good idea to just pass through the |
Sounds like another +1 for #202 |
This issue was moved to a discussion.
You can continue the conversation there. Go to discussion →
I'm using a third-party API which has this
securityScheme
:and this path (redacted as it is not my API):
The generated code for this API is:
The desired code is:
The text was updated successfully, but these errors were encountered: