使用Firebase根据身份验证状态提供动态内容

时间:2019-04-28 03:06:18

标签: node.js firebase express firebase-authentication google-cloud-functions

是否有任何方法可以根据用户是否通过身份验证使用Firebase功能提供动态内容?

基本上,如何在不传递Firebase功能请求的情况下获得当前用户的身份验证状态?

谢谢!

1 个答案:

答案 0 :(得分:0)

无论是Cloud Functions还是其他服务,客户端都必须send an id token to the backend。如果后端需要了解有关登录前端的用户的某些信息,则无法避免。

当用户登录时,您可以使用callable function自动从客户端代码发送此ID令牌,但始终仍在发送。在任何其他情况下,您都必须自己安排发送此令牌。