I’m trying to use checkSession(auth0js v9) but I couldn’t make it work.
I get 400 then timeout error.
checkSession() {
let _this = this
return new Promise((resolve, reject) => {
_this.auth.checkSession({
"audience": "https://domain.auth0.com/userinfo",
"scope": "openid profile",
}, (err, authResult) => {
if (err)
reject(err)
resolve(authResult)
})
})
}