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
say I have security spec in swagger like
"securityDefinitions": { "www-authenticate": { "type": "basic", } }
And it is used in the endpoints like
"security": [ { "www-authenticate": [] } ]
How do I supposed to send the username/password (test:test)? I've tried all the below options and nothing is working
set-auth www-authenticate test:test set-auth www-authenticate dGVzdDp0ZXN0 set-auth www-authenticate Basic dGVzdDp0ZXN0 set-auth www-authenticate 'Basic dGVzdDp0ZXN0' set-auth www-authenticate 'Authorization: Basic dGVzdDp0ZXN0'
The text was updated successfully, but these errors were encountered:
I have fixed it in my local fork: tigrankhachikyan@3c0a028
Sorry, something went wrong.
No branches or pull requests
say I have security spec in swagger like
And it is used in the endpoints like
How do I supposed to send the username/password (test:test)?
I've tried all the below options and nothing is working
The text was updated successfully, but these errors were encountered: