From 80b2985ecaaaf55d316de156785fa385731649a3 Mon Sep 17 00:00:00 2001 From: <> Date: Tue, 2 Dec 2025 16:32:16 +0000 Subject: [PATCH] Deployed 442444f with MkDocs version: 1.6.0 --- api-guide/authentication/index.html | 2 +- api-guide/serializers/index.html | 2 +- search/search_index.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/api-guide/authentication/index.html b/api-guide/authentication/index.html index e24f5b684..64c1be59c 100644 --- a/api-guide/authentication/index.html +++ b/api-guide/authentication/index.html @@ -849,7 +849,7 @@ REST_FRAMEWORK = {

JSON Web Token Authentication

JSON Web Token is a fairly new standard which can be used for token-based authentication. Unlike the built-in TokenAuthentication scheme, JWT Authentication doesn't need to use a database to validate a token. A package for JWT authentication is djangorestframework-simplejwt which provides some features as well as a pluggable token blacklist app.

Hawk HTTP Authentication

-

The HawkREST library builds on the Mohawk library to let you work with Hawk signed requests and responses in your API. Hawk let's two parties securely communicate with each other using messages signed by a shared key. It is based on HTTP MAC access authentication (which was based on parts of OAuth 1.0).

+

The HawkREST library builds on the Mohawk library to let you work with Hawk signed requests and responses in your API. Hawk lets two parties securely communicate with each other using messages signed by a shared key. It is based on HTTP MAC access authentication (which was based on parts of OAuth 1.0).

HTTP Signature Authentication

HTTP Signature (currently a IETF draft) provides a way to achieve origin authentication and message integrity for HTTP messages. Similar to Amazon's HTTP Signature scheme, used by many of its services, it permits stateless, per-request authentication. Elvio Toccalino maintains the djangorestframework-httpsignature (outdated) package which provides an easy-to-use HTTP Signature Authentication mechanism. You can use the updated fork version of djangorestframework-httpsignature, which is drf-httpsig.

Djoser

diff --git a/api-guide/serializers/index.html b/api-guide/serializers/index.html index fb7f141af..16ce7b17a 100644 --- a/api-guide/serializers/index.html +++ b/api-guide/serializers/index.html @@ -1007,7 +1007,7 @@ serializer.data

ModelSerializer

Often you'll want serializer classes that map closely to Django model definitions.

-

The ModelSerializer class provides a shortcut that let's you automatically create a Serializer class with fields that correspond to the Model fields.

+

The ModelSerializer class provides a shortcut that lets you automatically create a Serializer class with fields that correspond to the Model fields.

The ModelSerializer class is the same as a regular Serializer class, except that: