Я пытаюсь реализовать OAuthStrategy для API отчетов Google Analytics, и для этого мне нужен refre sh токен, но я получаю refre sh token в undefined, если кто-то знает об этом, пожалуйста, помогите мне.
const computeConnectedUser = strategy => (req, accessToken, refreshToken, profile, done) => {
console.log('accessToken =>', accessToken);
console.log('refreshToken =>', refreshToken);// undefined
return done(false, { strategy, accessToken, refreshToken, ...profile });
}
const oAuth2Strategy = new OAuth2Strategy({
authorizationURL: 'https://accounts.google.com/o/oauth2/v2/auth',
tokenURL: 'https://www.googleapis.com/oauth2/v4/token',
clientID: 'xxxxxx',
clientSecret: 'xxxxxx',
callbackURL: "http://localhost:3000/auth/google/callback",
passReqToCallback: true
}, computeConnectedUser('oauth2'));
passport.use(oAuth2Strategy);
app.get('/auth/google', passport.authenticate('oauth2', {
authType: 'rerequest',
accessType: 'offline',
prompt: 'consent',
session: false,
includeGrantedScopes: true,
scope: ['https://www.googleapis.com/auth/analytics.readonly',
'https://www.googleapis.com/auth/analytics'
]
}));
app.get('/auth/google/callback',
passport.authenticate('oauth2', { session: false, failureRedirect: '/auth/google' }),
function(req, res) {
// Successful authentication, redirect home.
console.log('res.body=>', res.accessToken);
return res.status(200).json({ token: res.accessToken });
});