In this chapter we will authenticate users anonymously.
You need to enable anonymous authentication.
Step 1 - Enable Anonymous Auth
This is the same process as in our previous chapters. You need to open Firebase dashboard, click on Auth from side menu and SIGN-IN-METHOD inside tab bar.You need to enable anonymous authentication.
Step 2 - Signin Function
We can use signInAnonymously() method for this authentication.Example
firebase.auth().signInAnonymously() .then(function() { console.log('Logged in as Anonymous!') }).catch(function(error) { var errorCode = error.code; var errorMessage = error.message; console.log(errorCode); console.log(errorMessage); });
No comments:
Post a Comment