Environment:
vuejs single page application
auth0-js: 9.12.2
configuration:
{
domain: authConfig.domain,
clientID: authConfig.clientId,
redirectUri: ${window.location.origin}/callback
,
audience: authConfig.audience,
responseType: “token id_token”,
scope: “openid profile email full_access”
}
We use facebook-connection to sing users in.
Since a couple of days, checksession function started to return an errror.
here is the error message:
{
“original”: {
“error”: “login_required”,
“error_description”: “Login required”
},
“code”: “login_required”,
“description”: “Login required”,
“error”: “login_required”,
“error_description”: “Login required”
}
before now, every thing worked fine. I could refresh the page and still have valid session with auth0, but now every time I refresh the page I have to sing in again.