defaultAuth
.getUser("e5TXAefQdgUFtnyM3vIyIbL1ihp2")
.then(userPromise => {
console.log(userPromise);
})
.then(something => {})
.catch(something => {});
该程序永远挂起; 但是它通过添加
退出then(something => {
process.exit();
});
这是已定义/正确的行为,还是有解决此问题的优美方法