createUser is not a function with Emberfire 2.0
See original GitHub issueHi There,
I have recently upgraded to Emberfire 2.0 and Firebase 3.0. The upgrade went very smooth over all. Everything seems to be forward compatible except for the “createUser” call. I am using Torii with email/password authentication.
When I try to call:
this.get('firebase').createUser({...})
I receive the error:
this.get(...).createUser is not a function
If you have nay feedback it would be most appreciated.
Thank you
Issue Analytics
- State:
- Created 7 years ago
- Comments:12 (5 by maintainers)
Top Results From Across the Web
createUser is not a function with Emberfire 2.0 #390 - GitHub
I am using Torii with email/password authentication. When I try to call: this.get('firebase').createUser({...}) I receive the error:
Read more >vuejs integration with firebase gives "createUser is not a ...
createUser is admin sdk function, check docs of managing users on ... I'm not familiar with the createUser method you are trying to...
Read more >Ember 2.0 Example App With Firebase And Login Authentication
This tutorial will cover the following concepts: EmberFire; torii/authentication; helpers; pods; utilities; routes; models; relationships ...
Read more >SOLVED - TypeError: Accounts.createUser is not a function
I am creating one app and getting the following error: TypeError: Accounts.createUser is not a function. Here is my Code:
Read more >[Solved]-Newbie Emberfire Querying-ember.js - appsloveworld
How to use emberfire to query a firebase db for all items with name equalTo xyz in ember.js 2.0.0? Is there a way...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Hey, yes the new Firebase 3.0 SDK changed the API. Now you use firebase.auth().createUserWithEmailAndPassword
I am working on a migration guide that will address all these changes.
Here is the updated way to do it:
@tstirrat I was wondering what advantage setting
email
on the user has, given it is stored in the Authentication table?