Bryce Blankinship
Results
2
issues of
Bryce Blankinship
```authenticator.use( new GoogleStrategy({ clientID: process.env.GOOGLE_OAUTH_CLIENT_ID, clientSecret: process.env.GOOGLE_OAUTH_CLIENT_SECRET, callbackURL: process.env.BASE_URL + '/auth/google/callback' }, async ({ accessToken, refreshToken, extraParams, profile }) => { //TODO: create the user in the database! console.log(profile.emails[0].value) return...