当用户刚刚加入该应用程序时,我想使用ipinfo获取其位置信息。
我尝试了这个,但是似乎没用
// Create User location table
export async function updateLocation(user: any): Promise<any> {
return await app.get('https://ipinfo.io', (req, res) => {
console.log(res, req)
return db.collection('users').doc(user.uid).set({
'contactInfo': {
res
}
}, { merge: true });
});
}
在firebase函数中,该怎么做?
//app.get('https://ipinfo.io', (req, res)
该请求似乎没有发送...
我正在使用cors和表达中间件