thisbejim / Pyrebase

A simple python wrapper for the Firebase API.
2.05k stars 525 forks source link

How to set %DISPLAY NAME% using pyrebase ? #436

Open vikramsamak opened 1 year ago

vikramsamak commented 1 year ago

How to set display name of user while sign up process ? So it can be used during verification email sending procedure.

AsifArmanRahman commented 1 year ago

Unfortunately, the APIs of firebase doesn't allow setting username while signing up. It can be done after a user signs up (for creating an account with email and password). For signing in with gmail/FB the username is set as per that account name. You can use firebase-rest-api for social login. @vikramsamak

vikramsamak commented 1 year ago

Thanks