Failed Silent Auth Login Required

Hello,
I have done a lot of readings about this issue but still can’t find a way to work my app.
This is the error log:
“error”: {
“message”: “Login required”,
“oauthError”: “login_required”,
“type”: “oauth-authorization”
}
i tried all suggested solutions. incognito mode, blocking 3rd party extensions etc.
one solution is to switching to a paid account but i will do that after development. till then i need support to make it work. please any help is highly appreciated.

and har analyzer says:

Cache control

Server’s cache control ( no-cache, no-store )

Cache data missing

The cache information is missing from the entry

hello everyone,
i understand that this is related to browers cookie policies. i am using auth0-spa-js and i see blocked cookies from auth0 but i can’t find a way to workaround this and get my app working. I would appreciate if you could help me with this.
thanks,
tj

Hey guys, I had the same issue and to understand I think you can see a good discussion at Failed Silent Auth - Login required
I’m also using auth0-spa-js on a react app, If you followed the quickstart for spas on auth0 there’s a file react-auth0-spa.js in that file in the Auth0Provider function there’s useEffect hook
in it, there’s a part where it checks if the user is authenthicated and sets the user.

if (isAuthenticated) {
        const user = await auth0FromHook.getUser();
        setUser(user);
      }

What you can do is add an else statement in which you can call auth0FromHook.loginWithRedirect

else {
        await auth0FromHook.loginWithRedirect({
          appState: {targetUrl: window.location.pathname}
        });
      }

this will re-authenticate the user by refreshing the page, it caters for when there is cookie related issue.