Firebase Auth
Firebase Auth component is used to authenticate users.
Example
Creating a new user with given username and password.
Blocks
create user with email and password
Create a new user with given email and password.
Type | Explanation | Required |
---|---|---|
Firebase Auth | Firebase Auth Component | Yes |
String | Yes | |
String | Password | Yes |
sign in user with email and password
Sign in a user with given email and password.
Type | Explanation | Required |
---|---|---|
Firebase Auth | Firebase Auth Component | Yes |
String | Yes | |
String | Password | Yes |
sign in anonymously
Sign in a user with an anonymous credential.
Type | Explanation | Required |
---|---|---|
Firebase Auth | Firebase Auth Component | Yes |
is logged in
True if logged in.
get email
Retrieve the email of the current user.
get Uid
Retrieve the unique identification of the current user.
send password reset email to
Send a password reset email to the given email.
Type | Explanation | Required |
---|---|---|
Firebase Auth | Firebase Auth Component | Yes |
String | Email address | Yes |
sign out
Sign out the logged in user.
Events
onCreateUserComplete
Triggered after create user block is used.
onSignInUserComplete
Triggered after sign in user block is used.
onResetPasswordEmailSent
Triggered after reset password block is used.