fastapi/docs/tutorial/response-cookies.md

518 B

You can create (set) Cookies in your response.

To do that, you can create a response as described in Return a Response directly.

Then set Cookies in it, and then return it:

{!./src/response_cookies/tutorial001.py!}

More info

To see all the available parameters and options, check the documentation in Starlette.