UNPKG

next-auth

Version:

Authentication for Next.js

31 lines (28 loc) 703 B
import type { OAuthConfig, OAuthUserConfig } from "." export interface CognitoProfile extends Record<string, any> { sub: string name: string email: string picture: string } export default function Cognito<P extends CognitoProfile>( options: OAuthUserConfig<P> ): OAuthConfig<P> { return { id: "cognito", name: "Cognito", type: "oauth", wellKnown: `${options.issuer}/.well-known/openid-configuration`, idToken: true, profile(profile) { return { id: profile.sub, name: profile.name, email: profile.email, image: profile.picture, } }, style: { logo: "/cognito.svg", bg: "#fff", text: "#C17B9E" }, options, } }