Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save skolhustick/f40d57ba60f74f5259e52e76f6d75a17 to your computer and use it in GitHub Desktop.
Save skolhustick/f40d57ba60f74f5259e52e76f6d75a17 to your computer and use it in GitHub Desktop.
import { getSession } from 'next-auth/react'
export default async function handler (req, res) {
const session = await getSession({ req })
console.log({ session })
res.status(200).json({ session })
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment