0

我在这里有一个简单的 webapp2 Auth+Session 示例:https ://github.com/coto/webapp2_auth (AppEngine + Python2.7)

创建新用户时,我无法向用户实体添加更多属性(例如电子邮件)。

谁能帮我?有没有办法通过使用 user_attributes 来做到这一点?

谢谢

4

1 回答 1

0

答案是将参数添加到 create_user 方法,如下所示:

user = self.auth.store.user_model.create_user(username, password_raw=password, mail=email, shoes = "Chile", ip="120.12.34.123")

于 2012-01-26T02:51:51.520 回答