Ошибка: invalid_request Отсутствует обязательный параметр: scope (Restify & Passportjs w/ Google OAuth2)
Итак, я столкнулся с проблемой с моим приложением Node.js, использующим Restify и Passportjs (стратегия Google OAuth2). Когда я использую passport.authenticate()
, это дает мне следующую ошибку:
400. Это ошибка.
Ошибка: invalid_request
Отсутствует обязательный параметр: область
Еще несколько лет назад я обнаружил еще один вопрос об этом ( недействительный запрос с пропущенным: область действия с использованием Google Passportjs в Google Oauth2). Автор сказал, что наконец-то исправил это сам, но не опубликовал исправление.
Кто-нибудь еще сталкивался с этим и смог это исправить? Я не могу понять это. Вот мой код:
authController.js
var passport = require('passport');
var GoogleStrategy = require('passport-google-oauth20').Strategy;
var auth = {
google: {
clientID: '<ID>',
clientSecret: '<SECRET>',
callbackURL: 'https://localhost:8080/auth/google/return',
scope: ['profile', 'email']
}
};
passport.use(new GoogleStrategy({
clientID: auth.google.clientID,
clientSecret: auth.google.clientSecret,
callbackURL: auth.google.callbackURL
}, function(accessToken, refreshToken, profile, cb) {
return cb(null, profile.id);
}));
module.exports.authenticate = passport.authenticate('google', { scope: auth.google.scope });
module.exports.isAuthenticated = passport.authenticate('google', { successRedirect: '/hello/succeed', failureRedirect: '/hello/fail' });
server.js
var restify = require('restify'),
fs = require('fs'),
bodyParser = require('body-parser'),
authController = require('./controllers/authController');
// Placeholder handler.
function respond(req, res, next) {
res.send('hello ' + req.params.name);
return next();
}
// Create server.
var api = restify.createServer({
certificate: fs.readFileSync('server.crt'),
key: fs.readFileSync('server.key'),
name: 'BQ:IQ Question Writer'
});
// Setup authentication
api.get('/auth/google', authController.authenticate);
api.get('/auth/google/return', authController.isAuthenticated);
// Setup routes.
api.get('/hello/:name', respond);
api.head('/hello/:name', respond);
api.listen(8080, function() {
console.log('%s listening at %s', api.name, api.url);
});
1 ответ
Кажется, я пропустил следующий код после инициализации сервера:
api.use(restify.plugins.queryParser({ mapParams: false }));
Как только я добавил эту строку, я больше не видел ошибку Google, и процесс вернулся к моему коду.