May 23, 2016
As some of you may know the Parse hosted service is shutting down on January 28, 2017. I was looking for an alternative because I don’t want to self-host a Parse Server. First of all I read some blog posts and revised the features of Parse that are used by my small app showmaniac.
Feature Requirements:
Firebase seems like the easiest and most popular alternative in my case. I was really quick rewriting the front-end JS code and everything, but the most difficult task was migrating the small user base from Parse to Firebase:
I had 2 different types of user authentications: Email with Password and Facebook oAuth. When exporting the User Data from Parse this looks like this:
Unfortunately Firebase doesn’t allow importing users, so I just found this stackoverflow question, which can’t do the trick, but it got me thinking!
Here are the 2 solutions, for the 2 types of users I had.
It was quite easy to write a small JS script by using the Firebase Web API. This script will authenticate with Facebook using an existing OAuth 2.0 access token - the access token was saved (and updated when the user logs in) in your Parse Database.
The downside, it does only work for active users, so when the expiration date is expired, the login will fail :( – That’s why I added a check for not making an extra call to Firebase:
If you want to run this JS script here, just replace the parseUsers
array and the firebase URL.
The REAL question is: How can you import users from Parse to Firebase, when the password is bcyrpted?
The only answer and solution that worked for me was to:
Let’s go in more detail and show some code examples. When the user comes to your app and the Parse user is still logged in, you need them to logout and login again to create a Firebase authentication.
My login form is also my register form (was always like this), which makes it easier now. So when the login function (see below) is called this happens:
I currently use AngularFire, but you can also accomplish this with the latest Firebase SDK.
For Facebook Authentications you can do the same, but there will be 2 pop-up authentication windows, which is not very nice. That’s why I would recommend only getting the FB Parse user, when the necessary data is not yet set for the FB Firebase user. This code gets called after the user has been authenticated via Facebook to Firebase:
Next time the user logs in via Email/Password or Facebook, no additional request will be made to Parse, which means:
A successful sign up to your Firebase project completes the migration of this user!
All active users can be safely moved to Firebase, without them even noticing. If they do not login until Parse shuts down, they will lose their data & account - so it may be nice to notify your users, that they should login (once) in the next months. ;)
Firebase.authWithOAuthToken() AngularFire - Users and Authentication StackOverflow - Q1 StackOverflow - Q2