Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Firebase Auth linking anonymous auth user with custom auth user

So I saw here: https://firebase.google.com/docs/auth/web/account-linking#link-auth-provider-credentials-to-a-user-account That it is now possible to link user accounts in Firebase. I also saw that Firebase provides the functionality of anonymous authentication, where it creates a user session for a user, without any credentials.

In our application we normally use CustomAuthentication with Firebase, as we have our own authentication service. This works perfectly, and we are able to use the same Auth system in-between systems that use Firebase, and the ones that don't.

Now we got to the point where we wanted to take advantage of the anonymous authentication of Firebase, to allow users to use the apps without registering, and just transfer their details after they log in. So I thought that account linking is what I need. But I can't find a way to link an anonymous account with a custom authentication account. Is something like this possible with Firebase?

like image 456
domderen Avatar asked Jun 16 '16 16:06

domderen


People also ask

Can you create a user with the same credentials in Firebase?

You can allow users to sign in to your app using multiple authentication providers by linking auth provider credentials to an existing user account. Users are identifiable by the same Firebase user ID regardless of the authentication provider they used to sign in.

How does anonymous authentication work in Firebase?

You can use Firebase Authentication to create and use temporary anonymous accounts to authenticate with Firebase. These temporary anonymous accounts can be used to allow users who haven't yet signed up to your app to work with data protected by security rules.

How do I add a username to Firebase authentication?

You create a new user in your Firebase project by calling the createUserWithEmailAndPassword method or by signing in a user for the first time using a federated identity provider, such as Google Sign-In or Facebook Login.


2 Answers

I have not found linking between anonymous and custom signIns too, so I just use signInAnonymously and pass it's uid to signInWithCustomToken.

Step 1. To be able acheive this, you should grab an uid from signInAnonymously function like this:

var uid;
auth().signInAnonymously().then(user => {
  uid = user.uid;
});

Step 2. Save current user data like this:

database().ref(`users/${uid}`).set({ some: 'data' });

Step 3. Send this uid to your server which returns custom token. On your server you just pass this uid to firebase.auth().createCustomToken(uid) function and send this custom token back. It will contain the uid.

Step 4. When you receive custom token, you can sign in with it like this:

auth().signInWithCustomToken(authKey);

And that's it. You are signed in with your custom token and can access your anonymous user data saved on the step 2.

like image 181
Galiaf47 Avatar answered Sep 25 '22 06:09

Galiaf47


I had a similar problem but I believe Firebase does not allow this type of linking because it would require linking two separate firebase user ids: the id of the custom token created user and the id of the anonymous user.

Firebase docs say:

Users are identifiable by the same Firebase user ID regardless of the authentication provider they used to sign in.

So handling linking between two user ID's would cause inconsistencies.

I got around this problem by doing a merge of the data between the two accounts.

For example (from Firebase docs):

// Get reference to the currently signed-in user
var prevUser = auth.currentUser;
// Sign in user with another account
auth.signInWithCredential(credential).then(function(user) {
  console.log("Sign In Success", user);
  var currentUser = user;
  // Merge prevUser and currentUser accounts and data
  // ...
}, function(error) {
  console.log("Sign In Error", error);
});
like image 29
TAlekhiNezh Avatar answered Sep 21 '22 06:09

TAlekhiNezh