We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9cb4350 commit f1f3552Copy full SHA for f1f3552
packages/core/src/providers/facebook.ts
@@ -84,7 +84,12 @@ export default function Facebook<P extends FacebookProfile>(
84
id: "facebook",
85
name: "Facebook",
86
type: "oauth",
87
- authorization: "https://www.facebook.com/v15.0/dialog/oauth?scope=email",
+ authorization: {
88
+ url: "https://www.facebook.com/v15.0/dialog/oauth",
89
+ params: {
90
+ scope: 'email',
91
+ },
92
93
token: "https://graph.facebook.com/oauth/access_token",
94
userinfo: {
95
// https://developers.facebook.com/docs/graph-api/reference/user/#fields
0 commit comments