JWTAuth plugin for HTTPie.
Project description
JWTAuth (JSON Web Tokens) auth plugin for HTTPie.
Installation
Latest stable version:
$ pip install -U httpie-jwt-auth
Latest developing version:
$ pip install -U https://github.com/teracyhq/httpie-jwt-auth/archive/develop.zip
This version requires HTTPie v0.9.7 and above. If you can not use this new version, you can use: https://github.com/teracyhq/httpie-jwt-auth/tree/v0.2.1
Supported HTTPie Version
Supports HTTPie >= 1.0.0
httpie-jwt-auth can work with older versions of HTTPie
Usage
Normal:
$ http --auth-type=jwt --auth="<token>" example.org -h GET / HTTP/1.1 Accept: */* Accept-Encoding: gzip, deflate Authorization: Token_Prefix abc Connection: keep-alive Host: example.org User-Agent: HTTPie/0.9.7
By default, the Bearer prefix auth token is used, you can choose another prefix:
$ JWT_AUTH_PREFIX=JWT http --auth-type=jwt --auth="<token>" example.org -h
Also by default, the Authorization auth header is used, but you can choose another one:
$ JWT_AUTH_HEADER=X-Foobar-Authorization http --auth-type=jwt --auth="<token>" example.org -h
Sometimes you don’t need to expose the JWT token on the command line, you can use the environment variable:
$ export JWT_AUTH_TOKEN=secret
And it should work:
$ http teracy.com --auth-type=jwt -v GET / HTTP/1.1 Accept: */* Accept-Encoding: gzip, deflate Authorization: Bearer secret Connection: keep-alive Host: teracy.com User-Agent: HTTPie/0.9.7
You can combine the usage whatever you like for your cases.
Contributing
Please create pull requests to the develop branch by following http://dev.teracy.org/docs/workflow.html
Developing
We use Docker workflow for development now. To start developing:
Make sure to use teracy-dev by following: http://dev.teracy.org/docs/getting_started.html
Fork this repo and clone to ~/teracy-dev/workspace:
$ cd ~/teracy-dev/workspace
$ git clone <your_forked_repo>
$ cd httpie-jwt-auth
$ git remote add upstream git@github.com:teracyhq/httpie-jwt-auth.git
SSH into the VM to run commands as following:
$ cd ~/teracy-dev
$ vagrant ssh
$ ws
$ cd httpie-jwt-auth
$ docker-compose up # to test all the supported httpie versions with the most used Python version
$ docker-compose up httpie_latest # to test with the latest httpie version with the most used Python version
$ docker-compose -f docker-compose.yml -f docker-compose.py36.yml up # to test all the supported httpie versions with Python 3.6
Register your account at https://travis-ci.org and enable httpie-jwt-auth repo
Add the following settings to the travis-ci repo:
DOCKER_USER for the user or organization Docker namespace
DOCKER_USERNAME for the username of the Docker Hub
DOCKER_PASSWORD for the password of the Docker Hub
IMG_REPO for the docker repo on your DOCKER_USER account
IMG_REPO_PREFIX is optional
See .travis.yml for details
Start creating new Docker images to be shared within our community
FAQs
How to load JWT token from a file?
$ http --auth-type=jwt --auth="$(cat mytoken.txt)" example.org
How to use auth prefix other than default Bearer, for example Token_Prefix instead?
You could use environment variable to specify JWT_AUTH_PREFIX for permanent prefix usage:
$ export JWT_AUTH_PREFIX=Token_Prefix
and it should work:
$ http teracy.com --auth-type=jwt --auth="abc" -v GET / HTTP/1.1 Accept: */* Accept-Encoding: gzip, deflate Authorization: Token_Prefix abc Connection: keep-alive Host: teracy.com User-Agent: HTTPie/0.9.7
or for one time usage only with the specified jwt auth prefix:
$ JWT_AUTH_PREFIX=Token_Prefix http teracy.com --auth-type=jwt --auth="abc" -v GET / HTTP/1.1 Accept: */* Accept-Encoding: gzip, deflate Authorization: Token_Prefix abc Connection: keep-alive Host: teracy.com User-Agent: HTTPie/0.9.7
Discussions
Join us:
Get our news:
License
BSD License
Copyright (c) Teracy, Inc. and individual contributors. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. Neither the name of Teracy, Inc. nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file httpie-jwt-auth-0.4.0.tar.gz
.
File metadata
- Download URL: httpie-jwt-auth-0.4.0.tar.gz
- Upload date:
- Size: 5.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.42.1 CPython/3.8.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5b506e1eb3dae4f3cdcefb74d30420aaf904abf968d760870d6f2d84ca13c8bc |
|
MD5 | 26940aef07089fc277b7ecad8f69224a |
|
BLAKE2b-256 | eef88a7c5169c042e83d1fc22bc3cdafe993e5b94e0c0918cb9ebd6fcce2269c |
File details
Details for the file httpie_jwt_auth-0.4.0-py2.py3-none-any.whl
.
File metadata
- Download URL: httpie_jwt_auth-0.4.0-py2.py3-none-any.whl
- Upload date:
- Size: 6.1 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.42.1 CPython/3.8.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e4213e7da0df148ff65ef87b6770b36e9a4f116bf5461ee4c6efab1635a88f35 |
|
MD5 | ee18b5b97ac97790bdffe4ffe89c464b |
|
BLAKE2b-256 | 2c51a660cacf56a02dec98a27493ac6338579808aa591dfb040d69c87df19ff9 |