Auth0通用登录中的自定义字段

时间:2018-08-30 22:58:46

标签: auth0

如果要在注册表单中添加名字和姓氏字段,我是否必须使用Auth0中的锁定?或者我也可以通过通用登录在注册中添加这些其他字段吗?

1 个答案:

答案 0 :(得分:2)

我们应该能够在您的信息中心中编辑hosted login page并添加其他字段。看起来像这样:

var lock = new Auth0Lock(config.clientID, config.auth0Domain, {
...
additionalSignUpFields: [{  
    name: "fullname", 
    placeholder: "Full name"
     }] ,
... 
});

当您的用户注册后,自定义字段将成为user_metadata的一部分。这里列出了限制(例如,该字段必须是字符串,不能超过500个字符,等等。):https://auth0.com/docs/libraries/custom-signup#custom-fields-limitations

希望有帮助!