在我将 Auth0 从版本 9 升级到版本 11 后,我在进行身份验证时遇到了问题。
我有一个请求 URL:https://my-domain.auth0.com/co/authenticate,我请求中的所有参数看起来都不错,除了用户名。它发送截断的电子邮件作为用户名参数,即如果我输入“someone@gmail.com”,它只发送“某人”作为用户名。
export class AuthService {
idToken: string;
lock = new Auth0Lock(myConfig.clientID, myConfig.domain, {
responseType: 'id_token token',
.........
params: {
--------------->>>>>>>>>> if I write here:
username: 'someone@gmail.com',
--------------->>>>>>>>>> then it sends this email as username parameter,
no matter what I type in the login form.
IS THERE A WAY TO WRITE SOMETHING LIKE username: 'email' (this one is not working)
}
}
});
有没有办法将完整的电子邮件作为用户名发送?