disabled linkedin provider

This commit is contained in:
2024-02-19 12:49:51 +01:00
parent b0012689c0
commit c4a621e503
2 changed files with 18 additions and 18 deletions

View File

@@ -38,23 +38,23 @@ export const authConfig: NextAuthConfig = {
clientId: process.env.GOOGLE_ID,
clientSecret: process.env.GOOGLE_SECRET,
}),
// config based on https://github.com/nextauthjs/next-auth/issues/8831
LinkedinProvider({
clientId: process.env.LINKEDIN_ID,
clientSecret: process.env.LINKEDIN_SECRET,
authorization: { params: { scope: 'email openid' } },
issuer: 'https://www.linkedin.com',
jwks_endpoint: "https://www.linkedin.com/oauth/openid/jwks",
async profile(profile) {
return {
id: profile.sub,
name: profile.name,
firstname: profile.given_name,
lastname: profile.family_name,
email: profile.email
}
},
})
// // config based on https://github.com/nextauthjs/next-auth/issues/8831
// LinkedinProvider({
// clientId: process.env.LINKEDIN_ID,
// clientSecret: process.env.LINKEDIN_SECRET,
// authorization: { params: { scope: 'email openid' } },
// issuer: 'https://www.linkedin.com',
// jwks_endpoint: "https://www.linkedin.com/oauth/openid/jwks",
// async profile(profile) {
// return {
// id: profile.sub,
// name: profile.name,
// firstname: profile.given_name,
// lastname: profile.family_name,
// email: profile.email
// }
// },
// })
],
secret: process.env.AUTH_SECRET,
trustHost: true, // needs to be set to false for the NextJS to work behing Traefik