Problem Redirecting after google signin in express react app using passport-google-oauth20
问题 I have express backend and create-react-app2 as frontend , I am using setupProxy also. Now I have configured the app for google sign in however I am not getting proper redirect to index page after signin. Here is google oauth setup in console.developer.google.com I am using passport google oauth20 for authentication: Here my passport file: const GoogleStrategy = require('passport-google-oauth20').Strategy; const keys = require('./../keys/secret'); const {User} = require('./../models/user');