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
Currently, there's no way to Authenticate when using the CLI.
https://www.python-httpx.org/quickstart/#authentication
Add flags and/or .env variable checking to enable this.
The text was updated successfully, but these errors were encountered:
addressed by #13
Sorry, something went wrong.
When providing an Authorization header, the CLI arg parser splits on whitespace.
Authorization
-H Authorization:Bearer <TOKEN> fails to be read correctly.
-H Authorization:Bearer <TOKEN>
quotes can be used get around arg parsing issue but the string quotes need to be elided during CLI arg parsing. -H Authorization:'Bearer <TOKEN>'
-H Authorization:'Bearer <TOKEN>'
No branches or pull requests
Currently, there's no way to Authenticate when using the CLI.
https://www.python-httpx.org/quickstart/#authentication
Add flags and/or .env variable checking to enable this.
The text was updated successfully, but these errors were encountered: