|
|
@ -20,57 +20,7 @@ This same technique applies to `Query`, `Cookie`, and `Header`. 😎 |
|
|
|
|
|
|
|
Declare the **cookie** parameters that you need in a **Pydantic model**, and then declare the parameter as `Cookie`: |
|
|
|
|
|
|
|
//// tab | Python 3.10+ |
|
|
|
|
|
|
|
```Python hl_lines="9-12 16" |
|
|
|
{!> ../../docs_src/cookie_param_models/tutorial001_an_py310.py!} |
|
|
|
``` |
|
|
|
|
|
|
|
//// |
|
|
|
|
|
|
|
//// tab | Python 3.9+ |
|
|
|
|
|
|
|
```Python hl_lines="9-12 16" |
|
|
|
{!> ../../docs_src/cookie_param_models/tutorial001_an_py39.py!} |
|
|
|
``` |
|
|
|
|
|
|
|
//// |
|
|
|
|
|
|
|
//// tab | Python 3.8+ |
|
|
|
|
|
|
|
```Python hl_lines="10-13 17" |
|
|
|
{!> ../../docs_src/cookie_param_models/tutorial001_an.py!} |
|
|
|
``` |
|
|
|
|
|
|
|
//// |
|
|
|
|
|
|
|
//// tab | Python 3.10+ non-Annotated |
|
|
|
|
|
|
|
/// tip |
|
|
|
|
|
|
|
Prefer to use the `Annotated` version if possible. |
|
|
|
|
|
|
|
/// |
|
|
|
|
|
|
|
```Python hl_lines="7-10 14" |
|
|
|
{!> ../../docs_src/cookie_param_models/tutorial001_py310.py!} |
|
|
|
``` |
|
|
|
|
|
|
|
//// |
|
|
|
|
|
|
|
//// tab | Python 3.8+ non-Annotated |
|
|
|
|
|
|
|
/// tip |
|
|
|
|
|
|
|
Prefer to use the `Annotated` version if possible. |
|
|
|
|
|
|
|
/// |
|
|
|
|
|
|
|
```Python hl_lines="9-12 16" |
|
|
|
{!> ../../docs_src/cookie_param_models/tutorial001.py!} |
|
|
|
``` |
|
|
|
|
|
|
|
//// |
|
|
|
{* ../../docs_src/cookie_param_models/tutorial001_an_py310.py hl[9:12,16] *} |
|
|
|
|
|
|
|
**FastAPI** will **extract** the data for **each field** from the **cookies** received in the request and give you the Pydantic model you defined. |
|
|
|
|
|
|
@ -100,35 +50,7 @@ Your API now has the power to control its own <abbr title="This is a joke, just |
|
|
|
|
|
|
|
You can use Pydantic's model configuration to `forbid` any `extra` fields: |
|
|
|
|
|
|
|
//// tab | Python 3.9+ |
|
|
|
|
|
|
|
```Python hl_lines="10" |
|
|
|
{!> ../../docs_src/cookie_param_models/tutorial002_an_py39.py!} |
|
|
|
``` |
|
|
|
|
|
|
|
//// |
|
|
|
|
|
|
|
//// tab | Python 3.8+ |
|
|
|
|
|
|
|
```Python hl_lines="11" |
|
|
|
{!> ../../docs_src/cookie_param_models/tutorial002_an.py!} |
|
|
|
``` |
|
|
|
|
|
|
|
//// |
|
|
|
|
|
|
|
//// tab | Python 3.8+ non-Annotated |
|
|
|
|
|
|
|
/// tip |
|
|
|
|
|
|
|
Prefer to use the `Annotated` version if possible. |
|
|
|
|
|
|
|
/// |
|
|
|
|
|
|
|
```Python hl_lines="10" |
|
|
|
{!> ../../docs_src/cookie_param_models/tutorial002.py!} |
|
|
|
``` |
|
|
|
|
|
|
|
//// |
|
|
|
{* ../../docs_src/cookie_param_models/tutorial002_an_py39.py hl[10] *} |
|
|
|
|
|
|
|
If a client tries to send some **extra cookies**, they will receive an **error** response. |
|
|
|
|
|
|
|