Accessing cookies in nextjs from server side can be tricky. In this blog you will learn how to do that

Access cookies in NextJS from server side

Accessing cookies in nextjs from server side can be tricky. In this blog you will learn how to do that

If you want to set an authentication system like jwt, then you have to store your token inside the client(browser). You store them either in localStorage or as a cookie. But when you perform any kind of server-side operation, then you don't have access to the client. So you can't access the cookies from the server-side. Then what is the solution?

The solution.

import { GetServerSideProps } from 'next'
export const getServerSideProps: GetServerSideProps = async (ctx) => {
const { req, res } = ctx
const {cookies} = req
return { props: { } }
}

I have created a YouTube video about this. You can check that out. If you like this video, please like and subscribe to my channel.

You can access the cookies from the request object inside the getServerSideProps data fetching method. You can learn about data fetching methods of nextjs from here .

getServerSideProps method takes context as a parameter. A context is a giant object. Request and Response object is inside the context object.

const { req, res } = ctx

In the request object you'll find a cookies object.

const { cookies } = req

All your cookies will be inside the cookies object.

So that's it for this blog.

Shameless Plug

I have made a video about how to build a carousel postcard with React, Material-UI, and Swiper.js. If you are interested you can check the video.

You can also demo the application form here

Screenshot of Insta Carousel

Please like and subscribe to Cules Coding. It motivates me to create more content like this.

If you have any questions, feel free to contact me on any social media as @thatanjan. Stay safe. Goodbye.

Shameless Plug

Want to create your own blog? Well, I am creating a video series where you will learn about how to create a JAMstack blog with Nextjs and Chakra-UI.

Lessons

Demo

You can demo the website from here

Features

  • Static Blog pages will make the website load faster.
  • Blogs will have code blocks with syntax highlighting and many embed components like youtube videos, GitHub gist, Tweets, and so many other things.
  • Autocomplete search feature for the blog posts.
  • Real-time view counter and so on.

Please like and subscribe to Cules Coding. It motivates me to create more content like this.

That's it for this blog. I have tried to explain things simply. If you get stuck, you can ask me questions.

By the way, I am looking for a new opportunity in a company where I can provide great value with my skills. If you are a recruiter, looking for someone skilled in full-stack web development and passionate about revolutionizing the world, feel free to contact me. Also, I am open to talking about any freelance project. I am available on Upwork

Contacts

Blogs you might want to read:

Videos might you might want to watch:

Previous Post10 reasons why I love Material-UI
Next PostWhat is Server Side Rendering?