Hello, i am currently developing an Application using a React Frontend and a Flask Backend.
My problem is that the silent request of the access token is not working. On desktop devices everything works fine.
I found this post
https://community.auth0.com/t/silent-authorization-not-working-after-login-signup/37114
and followed the instructions to implement rotational refresh tokens. However, the problem that im not able to get a refresh token on mobile devices remains. When i enable cross-site-tracking on the mobile browsers, it does work indeed.
My Auth0 Provider in React looks as follows:
<Auth0Provider
domain=".."
clientId=".."
redirectUri={process.env.REACT_APP_LOGIN_REDIRECT}
useRefreshTokens
cacheLocation="localstorage"
onRedirectCallback={onRedirectCallback}>
<App />
</Auth0Provider>
and my Auth0 Configuration looks as follows:
Does anyone have an idea what still causes the problem ?
Thanks in advance !
Tim