Securing pages and API routes
You can easily protect client and server side rendered pages and API routes with NextAuth.js.
You can find working examples of the approaches shown below in the example project.
The methods getSession()
and getToken()
both return an object
if a session is valid and null
if a session is invalid or has expired.
Securing Pages
Client Side
If data on a page is fetched using calls to secure API routes - i.e. routes which use getSession()
or getToken()
to access the session - you can use the useSession
React Hook to secure pages.
import { useSession, getSession } from "next-auth/client"
export default function Page() {
const [session, loading] = useSession()
if (loading) return null
if (!loading && !session) return <p>Access Denied</p>
return (
<>
<h1>Protected Page</h1>
<p>You can view this page because you are signed in.</p>
</>
)
}
Server Side
You can protect server side rendered pages using the getSession()
method.
import { useSession, getSession } from "next-auth/client"
export default function Page() {
const [session, loading] = useSession()
if (typeof window !== "undefined" && loading) return null
if (session) {
return (
<>
<h1>Protected Page</h1>
<p>You can view this page because you are signed in.</p>
</>
)
}
return <p>Access Denied</p>
}
export async function getServerSideProps(context) {
const session = await getSession(context)
return {
props: { session },
}
}
This example assumes you have configured _app.js
to pass the session
prop through so that it's immediately available on page load to useSession
.
import { Provider } from "next-auth/client"
export default ({ Component, pageProps }) => {
return (
<Provider session={pageProps.session}>
<Component {...pageProps} />
</Provider>
)
}
Securing API Routes
Using getSession()
You can protect API routes using the getSession()
method.
import { getSession } from "next-auth/client"
export default async (req, res) => {
const session = await getSession({ req })
if (session) {
// Signed in
console.log("Session", JSON.stringify(session, null, 2))
} else {
// Not Signed in
res.status(401)
}
res.end()
}
Using getToken()
If you are using JSON Web Tokens you can use the getToken()
helper to access the contents of the JWT without having to handle JWT decryption / verification yourself. This method can only be used server side.
// This is an example of how to read a JSON Web Token from an API route
import jwt from "next-auth/jwt"
const secret = process.env.SECRET
export default async (req, res) => {
const token = await jwt.getToken({ req, secret })
if (token) {
// Signed in
console.log("JSON Web Token", JSON.stringify(token, null, 2))
} else {
// Not Signed in
res.status(401)
}
res.end()
}
You can use the getToken()
helper function in any application as long as you set the NEXTAUTH_URL
environment variable and the application is able to read the JWT cookie (e.g. is on the same domain).
Pass getToken
the same value for secret
as specified in pages/api/auth/[...nextauth].js
.
See the documentation for the JWT option for more information.