You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
# djangorestframework-api-key
1
+
# Django REST Framework API Key
2
2
3
3
API key permissions for the [Django REST Framework](https://www.django-rest-framework.org).
4
4
@@ -21,7 +21,7 @@ API key permissions for the [Django REST Framework](https://www.django-rest-fram
21
21
22
22
## Introduction
23
23
24
-
**`djangorestframework-api-key` is a powerful library for allowing server-side clients to safely use your API.** These clients are typically third-party backends and services (i.e. _machines_) which do not have a user account but still need to interact with your API in a secure way.
24
+
**Django REST Framework API Key is a powerful library for allowing server-side clients to safely use your API.** These clients are typically third-party backends and services (i.e. _machines_) which do not have a user account but still need to interact with your API in a secure way.
**Note**: this package requires Python 3.5+, Django 2.0+ and Django REST Framework 3.8+.
14
14
15
15
### Project setup
16
16
@@ -196,7 +196,7 @@ python manage.py migrate
196
196
```
197
197
198
198
!!! important
199
-
If `AbstractAPIKey` changes (e.g. because of an update to `djangorestframework-api-key`), you will need to **generate and apply migrations again** to account for these changes.
199
+
If `AbstractAPIKey` changes (e.g. because of an update to Django REST Framework API Key), you will need to **generate and apply migrations again** to account for these changes.
**`djangorestframework-api-key` is a powerful library for allowing server-side clients to safely use your API.** These clients are typically third-party backends and services (i.e. _machines_) which do not have a user account but still need to interact with your API in a secure way.
30
+
**Django REST Framework API Key is a powerful library for allowing server-side clients to safely use your API.** These clients are typically third-party backends and services (i.e. _machines_) which do not have a user account but still need to interact with your API in a secure way.
Copy file name to clipboardExpand all lines: docs/security.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,7 @@ The generated key that clients use to [make authorized requests](#making-authori
14
14
- Only a hashed version is stored in the database. The hash is computed using the default password hasher. [^1]
15
15
- The generated key is shown only once to the client upon API key creation.
16
16
17
-
[^1]: All hashers provided by Django should be supported. `djangorestframework-api-key` is tested against the [default list of `PASSWORD_HASHERS`](https://docs.djangoproject.com/en/2.2/ref/settings/#std:setting-PASSWORD_HASHERS). See also [How Django stores passwords](https://docs.djangoproject.com/en/2.2/topics/auth/passwords/#how-django-stores-passwords) for more information.
17
+
[^1]: All hashers provided by Django should be supported. This package is tested against the [default list of `PASSWORD_HASHERS`](https://docs.djangoproject.com/en/2.2/ref/settings/#std:setting-PASSWORD_HASHERS). See also [How Django stores passwords](https://docs.djangoproject.com/en/2.2/topics/auth/passwords/#how-django-stores-passwords) for more information.
0 commit comments