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.
Supported versions
- Python: 3.4, 3.5, 3.6, 3.7
- Django: 1.11 (except on Python 3.7), 2.0, 2.1 (except on Python 3.4)
- Django REST Framework: 3.8+
Features
Allow clients that are not supposed to have a user account (e.g. external services) to safely use your API.
Intended to be:
- 🚀 Simple to use: create, manage and revoke API keys via the admin site.
- 🔒 Safe: the key is only visible at creation and never shown again.
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.
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
Set permission classes
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.
Make authorized requests
Once API key permissions are enabled on your API, clients can pass their API key via the Api-Key
header (this is customizable, see Settings):
$ curl -H 'Api-Key: YOUR_API_KEY_HERE' http://localhost:8000/my-resource/
Settings
API_KEY_HEADER
:
- Name of the header which clients use to pass their API key.
- Default value:
HTTP_API_KEY
(which means clients should use theApi-Key
header — see the docs on HttpRequest.META).
Example project
See the example project for example usage in the context of a Django project.
Development
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 rest_framework_api_key
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
File details
Details for the file djangorestframework-api-key-0.1.2.tar.gz
.
File metadata
- Download URL: djangorestframework-api-key-0.1.2.tar.gz
- Upload date:
- Size: 7.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.4.2 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 92f73b74643d055ea55143b0b78a30dd79948b0ac512ebe91523571a394f541e |
|
MD5 | 93d8d8c295e711040a2da8b9e930a426 |
|
BLAKE2b-256 | a09ab9134119f906b5ea34ea1a563d981728c47908dd955e4bf8fba72a7c11de |
File details
Details for the file djangorestframework_api_key-0.1.2-py3-none-any.whl
.
File metadata
- Download URL: djangorestframework_api_key-0.1.2-py3-none-any.whl
- Upload date:
- Size: 11.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.4.2 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d45b9b214cd6355c19ea27d55520dca613313e39e848b371bded6f53ac182b00 |
|
MD5 | 87c344e73f6bdf61a1983a47c8a1d9c6 |
|
BLAKE2b-256 | 97742b17ab20ab28042e682dfc7d3cdb17278367f573847c5e5de3d170594c57 |