Firebase身份验证 – 身份平台 – 定价

huangapple go评论48阅读模式
英文:

Firebase authentication - identity platforom - pricing

问题

Still, I can't understand about firebase pricing on authentication with the identity platform.

I have a question. I own an app that integrates Firebase authentication which is the type of Social, Anonymous, and Email+Password.

The question is did you charge only sign-ups or sign-in or both using either type of authentication mentioned above? Why should I ask? Because Auth0 offers only charges applicable on sign-ups and unlimited logins.

Another question, Do I get charged to check if a user is signed in or not using

updateUI(currentUser);

So, kindly request you to clarify it. Thank you.

updateUI(currentUser);
英文:

Still, I can't understand about firebase pricing on authentication with the identity platform.

I have a question. I own an app that integrates Firebase authentication which is the type of Social, Anonymous, and Email+Password.

The question is did you charge only sign-ups or sign-in or both using either type of authentication mentioned above? Why should I ask? Because Auth0 offers only charges applicable on sign-ups and unlimited logins.

Another question, Do I get charged to check if a user is signed in or not using

FirebaseUser currentUser = mAuth.getCurrentUser();
updateUI(currentUser);

So, kindly request you to clarify it. Thank you.

FirebaseUser currentUser = mAuth.getCurrentUser();
updateUI(currentUser);

答案1

得分: 1

I own an app that integrates Firebase authentication which is the type of Social, Anonymous, and Email+Password the question is did you charge only sign-ups or sign-in or both using either type of authentication mentioned above?

根据我从定价概览官方文档了解的情况:

Any account that has signed in within a given month is considered an active user.

一个用户在一个月内进行了登录操作被视为活跃用户。

A sign-up operation can also be considered a sign-in operation. The difference between these two operations is that the sign-up operation also creates the user in Firebase authentication.

注册操作也可以被视为登录操作。这两种操作之间的区别在于注册操作还会在Firebase身份验证中创建用户。

Another question, Do I get charged to check if a user is signed in or not using

另一个问题,我会被收费来检查用户是否已登录吗?

To check if a user is signed in or not, you only have to check the user object against nullity, which is not a chargeable operation.

要检查用户是否已登录,您只需检查用户对象是否为空,这不是一项需要付费的操作。

英文:

> I own an app that integrates Firebase authentication which is the type of Social, Anonymous, and Email+Password the question is did you charge only sign-ups or sign-in or both using either type of authentication mentioned above?

As far as I understand from the official documentation regarding the pricing overview:

> Any account that has signed in within a given month is considered an active user.

A sign-up operation can also be considered a sign-in operation. The difference between these two operations is that the sign-up operation also creates the user in Firebase authentication.

> Another question, Do I get charged to check if a user is signed in or not using

To check if a user is signed in or not, you only have to check the user object against nullity, which is not a chargeable operation.

huangapple
  • 本文由 发表于 2023年6月26日 22:52:18
  • 转载请务必保留本文链接:https://go.coder-hub.com/76557824.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定