pythonasyncioapiasyncfastapiframeworkjsonjson-schemaopenapiopenapi3pydanticpython-typespython3redocreststarletteswaggerswagger-uiuvicornweb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
861 B
861 B
You can define Cookie parameters the same way you define Query
and Path
parameteres.
Import Cookie
First import Cookie
:
{!./tutorial/src/cookie_params/tutorial001.py!}
Declare Cookie
parameteres
Then declare the cookie parameters using the same structure as with Path
and Query
.
The first value is the default value, you can pass all the extra validation or annotation parameteres:
{!./tutorial/src/cookie_params/tutorial001.py!}
!!! info
Cookie
is a "sister" class of Path
and Query
. It also inherits from the same common Param
class.
!!! info
To declare cookies, you need to use Cookie
, because otherwise the parameters would be interpreted as query parameteres.
Recap
Declare cookies with Cookie
, using the same common pattern as Query
and Path
.