Web API permissions for the Django REST Framework
Project description
djangorestframework-api-key
🔐 Web API permissions for the Django REST Framework.
This project is based on (yet not a fork of) the unmaintained django-rest-framework-api-key project.
Features
Allow non-human clients to safely use your API.
Non-human clients may be frontend apps, third-party backends or any other service which does not have a user account but needs to interact with your API in a safe manner.
Intended to be:
- ✌️ Simple to use: create, manage and revoke API keys via the admin site.
- 🔒 Safe: secret keys are generated through cryptographic methods. They are only visible at creation, never shown again and never stored in the database.
There are important security aspects you need to consider before switching to an API key access control scheme. See Security.
Install
- Install from PyPI:
$ pip install djangorestframework-api-key
- Add the app to your
INSTALLED_APPS
:
# settings.py
INSTALLED_APPS = [
# ...,
'rest_framework',
'rest_framework_api_key',
]
Run the included migrations:
$ python manage.py migrate
Usage
Setting permissions
This package provides permission classes to allow external clients to use your API.
HasAPIKey
: this permission class requires all clients to provide a valid API key, regardless of whether they provide authentication details.HasAPIKeyOrIsAuthenticated
: if you want to allow clients to provide either an API key or authentication credentials, use this permission class instead.
As with every permission class, you can either use them globally:
# settings.py
REST_FRAMEWORK = {
'DEFAULT_PERMISSION_CLASSES': [
'rest_framework_api_key.permissions.HasAPIKey',
]
}
or on a per-view basis:
# views.py
from rest_framework_api_key.permissions import HasAPIKey
from rest_framework.views import APIView
class UserListView(APIView):
permission_classes = (HasAPIKey,)
# ...
Refer to DRF Docs - Setting the permission policy for more information on using permission classes.
Making authorized requests
Once API key permissions are enabled on your API, clients can pass their API key via the Api-Token
and Api-Secret-Key
headers (this is customizable, see Settings):
$ curl -H 'Api-Token: YOUR_API_TOKEN_HERE' -H 'Api-Secret-Key: YOUR_API_SECRET_KEY_HERE' http://localhost:8000/my-resource/
Settings
Note: values of header settings should be set according to the behavior of HttpRequest.META. For example,
HTTP_API_KEY
maps to theApi-Key
header.
API_TOKEN_HEADER
:
- Name of the header which clients use to pass their API token.
- Default value:
HTTP_API_TOKEN
.
API_SECRET_KEY_HEADER
:
- Name of the header which clients use the pass their API secret key.
- Default value:
HTTP_API_SECRET_KEY
.
Example project
See the example project for example usage in the context of a Django project.
Security
Generation and validation scheme
An API key is made of two parts:
- The API token: a unique generated public string of characters
- The API secret key: a generated, cryptographically secure string of characters that the client must keep private.
For security purposes, djangorestframework-api-key
does not store the secret key at all on the server. The latter is shown only once to the client upon API key creation.
To verify their identity, clients pass both the token and secret key, which will be used to compute a hash that will be in turn compared to a hash computed when the secret key was generated.
Caveats
API Keys ≠ Security: depending on your situation, you should probably not rely on API keys only to authenticate/authorize your clients. Doing so shifts the responsability of Information Security on your clients. This induces risks, especially if detaining an API key gives access to confidential information or write operations.
As a general advice, allow only those who require resources to access those specific resources. If your non-user client only needs to access a specific endpoint, add API permissions on that endpoint only.
Act responsibly.
Development
This section is aimed at developers and maintainers.
Install
Installing locally requires Pipenv and Python 3.7.
- Fork the repo
- Clone it on your local
- Install dependencies with Pipenv:
$ pipenv install --dev
- Activate using
$ pipenv shell
Tests
Run the tests using:
$ python runtests.py
Generating migrations
This package includes migrations. To update them in case of changes without setting up a Django project, run:
$ python makemigrations.py
CI/CD - Releases
Travis CI is in use to automatically:
- Test the package on supported versions of Python and Django.
- Release tagged commits to PyPI.
See .travis.yml
for further details.
Project details
Release history Release notifications | RSS feed
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
Hashes for djangorestframework-api-key-0.2.0.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 627899a9cc4d571be70478cdc714acd0df190901474da6d319d3108fff04ebfd |
|
MD5 | 52aa8dec2dc1cef1e6e2a8bca4d65560 |
|
BLAKE2b-256 | 32ee82ae31a6ea2a2c4896c0c218a852374b81a389c299803056b08526f849e7 |
Hashes for djangorestframework_api_key-0.2.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | f2d72af6e6e76f04d6814dd2f7cf669f54128c8d7c84508c2df30f57db35cf13 |
|
MD5 | 6e66c0de8265414f4426bc85b1422cdc |
|
BLAKE2b-256 | 59b764b56fc3f0a3fee40667b694764ac5c67902641805d45195bc53ebcf7f66 |