Natan Braslavski
Natan Braslavski
@theonlygusti Try replace the callbalckURL with full address http://.... or https:// for example: callbackURL: 'http://localhost:5000/google/callback' Also make sure this URL is registered in your app Console Hope it helps
I can share with you my code, hope it will help @johnRivs , @theonlygusti ``` passport.use('google', new GoogleStrategy({ clientID: process.env.ClientID, clientSecret: process.env.ClientSecret, callbackURL: process.env.CallbackURL, // => http://localhost:5000/auth/google/callback scope: [ 'https://www.googleapis.com/auth/userinfo.profile',...
Did someone solved it? @damianobarbati @sdemoor @mstade
Thanks a lot! @damianobarbati The reason it didn't work for me is that I set the params in the strategy I had to set them for the connection URL This...