We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When using the Linkedin Provider the auth fails with error 'Client authentication failed'
link to repo: repo link to deploy: deploy
The text was updated successfully, but these errors were encountered:
I have the same problem, does anyone know of a solution to temporarily fix this?
Sorry, something went wrong.
Also Having problems with linkedin, any solutions for this?
fixed with this on my auth.config.js:
import Linkedin from "@auth/core/providers/linkedin"; import { defineConfig } from "auth-astro"; export default defineConfig({ providers: [ Linkedin({ clientId: import.meta.env.LINKEDIN_CLIENT_ID, clientSecret: import.meta.env.LINKEDIN_CLIENT_SECRET, issuer: "https://www.linkedin.com/oauth", jwks_endpoint: "https://www.linkedin.com/oauth/openid/jwks", authorization: { params: { scope: "profile email openid" } }, async profile(profile) { return { id: profile.sub, name: profile.name, firstname: profile.given_name, lastname: profile.family_name, email: profile.email, }; }, }), ], debug: true, });
No branches or pull requests
When using the Linkedin Provider the auth fails with error 'Client authentication failed'
link to repo: repo
link to deploy: deploy
The text was updated successfully, but these errors were encountered: