Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 Pyrebase 以便在我的项目中使用 Firebase。我已经能够使用电子邮件和密码成功创建用户。用户对象有一个名为 的字段displayName。创建时如何在其中输入值?
displayName
从我在 repo 的Auth实现中可以看到,它不提供设置用户显示名称的功能。
Auth
Pyrebase 所基于的底层 REST API确实具有设置用户帐户信息(包括他们的显示名称)的方法,因此可以将其包含在 Pyrebase 中。我建议在 Github repo 上提交功能请求。
user=auth.sign_in_with_email_and_password(email,password) info = auth.get_account_info(user['idToken']) displayname = info['users'][0]['displayName']