通过 curl
获取用户个人资料信息curl -i https://www.googleapis.com/userinfo/v2/me -H "Authorization: Bearer a-google-account-access-token"
通过节点https获取请求获取用户个人资料信息
const https = require('https');
function getUserData(accessToken) {
var options = {
hostname: 'www.googleapis.com',
port: 443,
path: '/userinfo/v2/me',
method: 'GET',
json: true,
headers:{
Authorization: 'Bearer ' + accessToken
}
};
console.log(options);
var getReq = https.request(options, function(res) {
console.log("\nstatus code: ", res.statusCode);
res.on('data', function(response) {
try {
var resObj = JSON.parse(response);
console.log("response: ", resObj);
} catch (err) {
console.log(err);
}
});
});
getReq.end();
getReq.on('error', function(err) {
console.log(err);
});
}
var token = "a-google-account-access-token";
getUserData(token)
如果我已拥有访问令牌,如何使用此google node api client library获取用户个人资料信息?我可以使用上面的代码来获取配置文件,但我认为最好使用谷歌api库来做到这一点,但我无法弄清楚如何使用这个节点google api客户端库。
可以通过播放此playground
获取临时访问令牌答案 0 :(得分:9)
您可以使用the google node api client library检索用户个人资料。在这种情况下,请检索访问令牌和刷新令牌作为https://www.googleapis.com/auth/userinfo.profile
的范围。示例脚本如下。使用此示例时,请设置您的ACCESS TOKEN。
var google = require('googleapis');
var OAuth2 = google.auth.OAuth2;
var oauth2Client = new OAuth2();
oauth2Client.setCredentials({access_token: 'ACCESS TOKEN HERE'});
var oauth2 = google.oauth2({
auth: oauth2Client,
version: 'v2'
});
oauth2.userinfo.get(
function(err, res) {
if (err) {
console.log(err);
} else {
console.log(res);
}
});
{
id: '#####',
name: '#####',
given_name: '#####',
family_name: '#####',
link: '#####',
picture: '#####',
gender: '#####',
locale: '#####'
}
如果我误解了你的问题,我很抱歉。
答案 1 :(得分:3)
2021 年解决方案
这个答案可能会偏离最初提出的问题,但我认为对于一些通过生成 AuthUrl 并将其发送到客户端然后在调用中接收数据响应在后端获取 google 用户信息的人来说,这将是有用的用户给客户端权限后返回的URL。
一些全局声明
import { google } from "googleapis";
const Oauth2Client = new google.auth.OAuth2(
googleCredentials.CLIENT_ID,
googleCredentials.CLIENT_SECRET,
googleCredentials.REDIRECT_URI
);
生成具有范围的 Auth URL
const SCOPE = [
'https://www.googleapis.com/auth/userinfo.profile', // get user info
'https://www.googleapis.com/auth/userinfo.email', // get user email ID and if its verified or not
];
const auth_url = Oauth2Client.generateAuthUrl({
access_type: "offline",
scope: SCOPE,
prompt: "consent",
state: "GOOGLE_LOGIN",
});
return res.json({ url: auth_url }); // send the Auth URL to the front end
在回调中获取用户数据
let code = req.query.code; // get the code from req, need to get access_token for the user
let { tokens } = await Oauth2Client.getToken(code); // get tokens
let oauth2Client = new google.auth.OAuth2(); // create new auth client
oauth2Client.setCredentials({access_token: tokens.access_token}); // use the new auth client with the access_token
let oauth2 = google.oauth2({
auth: oauth2Client,
version: 'v2'
});
let { data } = await oauth2.userinfo.get(); // get user info
console.log(data);
如果有任何混淆或错误,请随时在评论中讨论
答案 2 :(得分:0)
基于此分析器:https://stackoverflow.com/a/46780714/140164
这是实现相同结果的另一种更短的方法。
const { google } = require('googleapis');
const oauth2Client = new google.auth.OAuth2()
const tokenInfo = await oauth2Client.getTokenInfo(*YourAccessToken*);
console.log(tokenInfo);