Skip to content

How to get cookies server-side in a Next.js app

New Course Coming Soon:

Get Really Good at Git

Accessing cookies while server-side rendering in Next.js can be harder than you think. Here's how I solved it.

I had this problem. My app depended on cookies for authentication, and using Next.js apparently my cookies were not set on first page initialization.

I had this code, which was in charge of hitting a GET endpoint using Axios:

Bookings.getInitialProps = async ctx => {
  const response = await axios.get('http://localhost:3000/api/bookings/list')

  return {
    bookings: response.data
  }
}

I had Passport.js on the server side endpoint, but it failed to authenticate the user on the SSR page, because it didn’t find any cookie.

I had to change my code to this, adding the cookies to the headers:

Bookings.getInitialProps = async ctx => {
  const response = await axios({
    method: 'get',
    url: 'http://localhost:3000/api/bookings/list',
    headers: ctx.req ? { cookie: ctx.req.headers.cookie } : undefined
  })

  return {
    bookings: response.data
  }
}

The key to making cookies available in the backend was adding:

headers: ctx.req ? { cookie: ctx.req.headers.cookie } : undefined

to the Axios configuration.

Are you intimidated by Git? Can’t figure out merge vs rebase? Are you afraid of screwing up something any time you have to do something in Git? Do you rely on ChatGPT or random people’s answer on StackOverflow to fix your problems? Your coworkers are tired of explaining Git to you all the time? Git is something we all need to use, but few of us really master it. I created this course to improve your Git (and GitHub) knowledge at a radical level. A course that helps you feel less frustrated with Git. Launching Summer 2024. Join the waiting list!

Here is how can I help you: