我已经使用Auth0设置了自定义登录表单。
我可以使用以下内容登录:
export default function auth0Login(webAuth, {email, password}) {
return webAuth.auth
.passwordRealm({
username: email,
password,
realm: AUTH0_DB_CONNECTION,
scope: 'openid profile email'
});
}
并且可以通过
进行身份验证export default function getWebAuth() {
return new Auth0({
domain: AUTH0_DOMAIN,
clientId: AUTH0_CLIENT_ID,
redirectUri: 'pingo33://pingo33.auth0.com/ios/pingo33/signin',
scope: 'openid profile'
});
}
认证后如何重定向到'/singin'
?我在允许的回调中
pingo33://pingo33.auth0.com/ios/pingo33/signin
我希望能够获取在响应URL中传递的令牌进行登录
谢谢