英文:
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.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论