Ask Your Question
0

What is the correct way to write an authorize function in Typescript for NextAuthJS?

asked 2023-05-12 13:17:24 +0000

huitzilopochtli gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
0

answered 2023-05-12 13:45:02 +0000

pufferfish gravatar image

Here is an example of an authorize function in Typescript for NextAuthJS:

import { NextApiRequest, NextApiResponse } from "next";
import { Session } from "next-auth";
import { Provider } from "next-auth/providers";

type AuthorizeOptions = {
  provider: Provider;
  session: Session;
  req: NextApiRequest;
  res: NextApiResponse;
};

export default async function authorize(
  options: AuthorizeOptions
): Promise<boolean> {
  // Check if user is authenticated with the given provider
  const { provider, session } = options;
  const { accessToken } = session.user as { accessToken?: string };
  if (provider.id === "google" && accessToken) {
    // Use Google's OAuth2 API to validate the user's access token
    const url = `https://www.googleapis.com/oauth2/v1/tokeninfo?access_token=${accessToken}`;
    const res = await fetch(url);
    const data = await res.json();
    if (data.audience === "1234567890.apps.googleusercontent.com") {
      // User is authenticated and authorized
      return true;
    }
  }
  // User is not authorized
  return false;
}

This function checks if the user is authenticated with the given provider (in this case, Google) and if their access token is valid. If the user is authorized, the function returns true. Otherwise, it returns false. This function can be used in the callbacks object when configuring NextAuthJS.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2023-05-12 13:17:24 +0000

Seen: 14 times

Last updated: May 12 '23