Last active
February 15, 2020 09:12
-
-
Save aashish-chaubey/636d40b706dafb6ae04aafe21d08b98d to your computer and use it in GitHub Desktop.
manual user registraion
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import firebase_admin | |
| from firebase_admin import credentials | |
| from firebase_admin import auth | |
| cred = credentials.Certificate('secreatFile.json') | |
| default_app = firebase_admin.initialize_app(cred) | |
| # Search a user by email, ig registered | |
| user = auth.get_user_by_email('[email protected]') | |
| # Example to register a new user | |
| user = auth.create_user(email='[email protected]', email_verified=True, phone_number='+15555550101', password='johndoe', display_name='John Doe',disabled=False) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment