Next.js Discord

Discord Forum

How to access cookies from Middleware.ts ?

Answered
Poyraz Hancılar posted this in #help-forum
Open in Discord
Hello everyone, I'll trying to access cookies from Middleware.ts file but it gives error on the screenshot. How can I access cookies? Thanks in advance.
Answered by Cape lion
It's request.cookie
and to access all the cookies you can use req.cookies.getAll()
https://nextjs.org/docs/app/building-your-application/routing/middleware
View full answer

2 Replies

Cape lion
It's request.cookie
and to access all the cookies you can use req.cookies.getAll()
https://nextjs.org/docs/app/building-your-application/routing/middleware
Answer
Thanks, I'll check that out.