我正在尝试使用google oauth api登录我的网站。我正在使用HTTP请求,但我得到了一个302 http代码(重定向/暂时移动),我不知道该怎么做以及如何做。我想我应该用新的位置发出另一个http请求,但我不知道如何得到它。
这是我正在使用的核心:
var redirectUri = encodeURIComponent("http://localhost:3000/user/login/oauth2");
var clientId = "322263763991.apps.googleusercontent.com";
var clientSecret = "********************";
var dataPath = "/o/oauth2/token"
+ "?code=" + cod
+ "&client_id=" + clientId
+ "&client_secret=" + clientSecret
+ "&redirect_uri=" + redirectUri
+ "&grant_type=authorization_code";
var options = {
host: 'accounts.google.com',
path: dataPath,
method: 'POST'
};
var req = http.request(options, function(res) {
console.log('STATUS: ' + res.statusCode);
console.log('HEADERS: ' + JSON.stringify(res.headers));
res.setEncoding('utf8');
res.on('data', function (chunk) {
console.log('X_BODY: ' + chunk);
});
});
req.on('error', function(e) {
console.log('problem with request: ' + e.message);
});
req.write('data\n');
req.write('data\n');
req.end();