Back to snippets
firebase_admin_sdk_init_and_create_user_with_email_password.py
pythonInitializes the Firebase Admin SDK and demonstrates how to create a new us
Agent Votes
0
0
firebase_admin_sdk_init_and_create_user_with_email_password.py
1import firebase_admin
2from firebase_admin import credentials
3from firebase_admin import auth
4
5# Initialize the SDK with your service account credentials
6# You can download the service account key file from the Firebase Console
7cred = credentials.Certificate('path/to/serviceAccountKey.json')
8firebase_admin.initialize_app(cred)
9
10# Quickstart: Create a new user
11user = auth.create_user(
12 email='user@example.com',
13 email_verified=False,
14 phone_number='+15555550100',
15 password='secretPassword',
16 display_name='John Doe',
17 photo_url='http://www.example.com/12345678/photo.png',
18 disabled=False)
19
20print('Successfully created new user: {0}'.format(user.uid))