我将网站部署到Firebase托管,但是身份验证不再起作用。我收到以下错误: “错误:无效来源:https://websiteurl.firebaseapp.com”
我已将此网址添加到我的个人资料中“应用程序”标签下的auth0允许的来源和允许的网络来源。下面是我的登录代码:
login = (callback) => {
var that = this;
that.callback = callback;
this.auth0.popup.authorize({
redirectUri: ‘ https://websiteurl.firebaseapp.com’,
owp: true
}, function(err, authResult) {
if (authResult && authResult.accessToken && authResult.idToken) {
that.setSession(authResult);
typeof callback === ‘function’ && callback();
} else if (err) {
console.log(err);
alert(Error: ${err.error}. Check the console for further
details.);
}
});
}
任何帮助将不胜感激。谢谢!
*编辑:更改了回调网址