@ -28,6 +28,12 @@ The middleware function receives:
!!! tip
This technique is used in the tutorial about <ahref="https://fastapi.tiangolo.com/tutorial/sql-databases/"target="_blank">SQL (Relational) Databases</a>.
!!! tip
Have in mind that custom proprietary headers can be added <ahref="https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers"target="_blank">using the 'X-' prefix</a>.
But if you have custom headers that you want a client in a browser to be able to see, you need to add them to your <ahref="https://fastapi.tiangolo.com/tutorial/cors/"target="_blank">CORS configurations</a>, using the parameter `expose_headers` documented in <ahref="https://www.starlette.io/middleware/#corsmiddleware"target="_blank">Starlette's CORS docs</a>.
### Before and after the `response`
You can add code to be run with the `request`, before any *path operation* receives it.
To do that, you can create a response as described in <ahref="https://fastapi.tiangolo.com/tutorial/response-directly/"target="_blank">Return a Response directly</a>.
Then set Cookies in it, and then return it:
```Python hl_lines="10 11 12"
{!./src/response_cookies/tutorial001.py!}
```
## More info
To see all the available parameters and options, check the <ahref="https://www.starlette.io/responses/#set-cookie"target="_blank">documentation in Starlette</a>.
Create a response as described in <ahref="https://fastapi.tiangolo.com/tutorial/response-directly/"target="_blank">Return a Response directly</a> and pass the headers as an additional parameter:
```Python hl_lines="10 11 12"
{!./src/response_headers/tutorial001.py!}
```
!!! tip
Have in mind that custom proprietary headers can be added <ahref="https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers"target="_blank">using the 'X-' prefix</a>.
But if you have custom headers that you want a client in a browser to be able to see, you need to add them to your <ahref="https://fastapi.tiangolo.com/tutorial/cors/"target="_blank">CORS configurations</a>, using the parameter `expose_headers` documented in <ahref="https://www.starlette.io/middleware/#corsmiddleware"target="_blank">Starlette's CORS docs</a>.