Fixed error code documentation for request.json

Clarify that a 415 error is raised when Content-Type is incorrect, while a 400 error is raised when the body is not valid JSON.

This aligns the patterns documentation with the API reference.
This commit is contained in:
Jason 2025-12-27 12:10:03 -05:00
parent 2579ce9f18
commit 9ebdd5c543

View file

@ -244,8 +244,9 @@ Receiving JSON in Views
Use the :attr:`~flask.Request.json` property of the Use the :attr:`~flask.Request.json` property of the
:data:`~flask.request` object to decode the request's body as JSON. If :data:`~flask.request` object to decode the request's body as JSON. If
the body is not valid JSON, or the ``Content-Type`` header is not set to the body is not valid JSON, a 400 Bad Request error will be raised. If
``application/json``, a 400 Bad Request error will be raised. the ``Content-Type`` header is not set to ``application/json``, a 415
Unsupported Media Type error will be raised.
.. code-block:: python .. code-block:: python