You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
there is an issue if you login and hydra is redirecting you back to the website callback, you will be directly redirected to login again.
we have to investigate what is happening on production, since i cannot reproduce it locally/xzy.
we could start searching for this log:
// security/bootPassport.jsconstoAuthPassport={
token,
refreshToken
}constapiClient=JavaApiClientFactory.createInstance(newUserService(),appConfig.apiUrl,oAuthPassport)constuserRepository=newUserRepository(apiClient)userRepository.fetchUser(oAuthPassport).then(user=>{verified(null,user)}).catch(e=>{console.error('[Error] oAuth verify failed with "'+e.toString()+'"')verified(null,null)})
maybe the callback itself is not valid (url produced by hydra), by having a bad code/token. so we need to capture all urls in the browser.
The text was updated successfully, but these errors were encountered:
UPDATE:
the logs show different errors, but not the "verify failed", we should disable the auto-redirect to "/login" if something fails and show log the error as "login-failed" or something.
there is an issue if you login and hydra is redirecting you back to the website callback, you will be directly redirected to login again.
we have to investigate what is happening on production, since i cannot reproduce it locally/xzy.
we could start searching for this log:
maybe the callback itself is not valid (url produced by hydra), by having a bad code/token. so we need to capture all urls in the browser.
The text was updated successfully, but these errors were encountered: