Skip to content

Latest commit

 

History

History
128 lines (93 loc) · 3.07 KB

File metadata and controls

128 lines (93 loc) · 3.07 KB

import { Callout } from "nextra/components" import { Code } from "@/components/Code"

Google Provider

Resources

Setup

Callback URL

https://example.com/api/auth/callback/google

</Code.Next> <Code.Svelte>

https://example.com/auth/callback/google

</Code.Svelte>

Environment Variables

AUTH_GOOGLE_ID
AUTH_GOOGLE_SECRET

Configuration

import NextAuth from "next-auth"
import Google from "next-auth/providers/google"

export const { handlers, auth, signIn, signOut } = NextAuth({
  providers: [Google],
})

</Code.Next> <Code.Svelte>

import { SvelteKitAuth } from "@auth/sveltekit"
import Google from "@auth/sveltekit/providers/google"

export const { handle, signIn, signOut } = SvelteKitAuth({
  providers: [Google],
})

</Code.Svelte> <Code.Express>

import { ExpressAuth } from "@auth/express"
import Google from "@auth/express/providers/google"

app.use("/auth/*", ExpressAuth({ providers: [Google] }))

</Code.Express>

Notes

Refresh Token

Google only provides Refresh Token to an application the first time a user signs in.

To force Google to re-issue a Refresh Token, the user needs to remove the application from their account and sign in again: https://myaccount.google.com/permissions

Alternatively, you can also pass options in the params object of authorization which will force the Refresh Token to always be provided on sign in, however this will ask all users to confirm if they wish to grant your application access every time they sign in.

If you need access to the RefreshToken or AccessToken for a Google account and you are not using a database to persist user accounts, this may be something you need to do.

export const { handlers, auth, signIn, signOut } = NextAuth({
  providers: [
    GoogleProvider({
      clientId: process.env.GOOGLE_ID,
      clientSecret: process.env.GOOGLE_SECRET,
      authorization: {
        params: {
          prompt: "consent",
          access_type: "offline",
          response_type: "code",
        },
      },
    }),
  ],
})

Email Verified

Google also returns a email_verified boolean property in the OAuth profile.

You can use this property to restrict access to people with verified accounts at a particular domain.

export const { handlers, auth, signIn, signOut } = NextAuth({
  callbacks: {
    async signIn({ account, profile }) {
      if (account.provider === "google") {
        return profile.email_verified && profile.email.endsWith("@example.com")
      }
      return true // Do different verification for other providers that don't have `email_verified`
    },
  }
})