0
我試圖自定義auth0註冊選項卡。我試圖在點擊註冊按鈕到我自己的網站進行付款時重定向用戶。 以下代碼位於app.js文件中,不起作用。我在哪裏可以從auth0中找到默認代碼,還是需要像我一樣創建Auth0Lock的另一個實例?自定義註冊從auth0彈出
var lock = new Auth0Lock(
'ClientId',
'AppDomain',
{
auth: {
redirect: 'components/template/template.html'
}
}
);
lock.on("authenticated", function (authResult) {
lock.getProfile(authResult.idToken, function (error, profile) {
if (error) {
console.log("error");
}
localStorage.setItem('token', authResult.idToken);
localStorage.setItem('profile', JSON.stringify(profile));
});
});