如何将多个身份验证 ID(例如密码和电子邮件)传递给 "webApp2_extras" 用户模型的 user_create 方法?
How to pass multiple auth ids e.g password and email, to the user_create method of the "webApp2_extras" user model?
def create_user(cls, auth_id, unique_properties=None, **user_values):
"""Creates a new user.
:param auth_id:
A string that is unique to the user. Users may have multiple
auth ids. Example auth ids:
- own:username
- own:email@example.com
- google:username
- yahoo:username
当我只想通过多个身份验证ID时,请帮助解释我做错了什么
创建用户后,您可以使用User.add_auth_id(auth_id)
功能添加额外的身份验证ID。
def create_user(cls, auth_id, unique_properties=None, **user_values):
"""Creates a new user.
:param auth_id:
A string that is unique to the user. Users may have multiple
auth ids. Example auth ids:
- own:username
- own:email@example.com
- google:username
- yahoo:username
当我只想通过多个身份验证ID时,请帮助解释我做错了什么
创建用户后,您可以使用User.add_auth_id(auth_id)
功能添加额外的身份验证ID。