从请求到Firebase中的Cloud Function获取用户信息

时间:2018-09-21 13:28:23

标签: firebase firebase-authentication google-cloud-functions

我希望能够获取在Firebase中被调用的Cloud Function的用户信息。我有类似这样的内容,在用户登录应用后被调用:

exports.myFunction = functions.https.onRequest((req, res) => { ... }

我需要获取发出请求的登录用户的uid。有任何建议或意见吗?

1 个答案:

答案 0 :(得分:3)

有关发出请求的用户的信息不会与HTTPS函数调用一起自动传递。

您可以pass the ID token along yourself and decode/verify it in your function,也可以use a callable HTTPS function,后者会自动传递用户信息。