Skip to content

Commit

Permalink
added openid to facebook
Browse files Browse the repository at this point in the history
  • Loading branch information
fomalhautb committed Sep 16, 2024
1 parent 7d84ad1 commit 747e0eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/backend/src/oauth/providers/facebook.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export class FacebookProvider extends OAuthBaseProvider {
authorizationEndpoint: "https://facebook.com/v20.0/dialog/oauth/",
tokenEndpoint: "https://graph.facebook.com/v20.0/oauth/access_token",
redirectUri: getEnvVariable("STACK_BASE_URL") + "/api/v1/auth/oauth/callback/facebook",
baseScope: "public_profile email",
baseScope: "openid public_profile email",
openid: true,
jwksUri: "https://www.facebook.com/.well-known/oauth/openid/jwks",
authorizationExtraParams: options.facebookConfigId ? {
Expand Down

0 comments on commit 747e0eb

Please sign in to comment.