Hybrid App Login Issues

Hi @employee451,

I’m not very familiar with the stack you’re using, but as far as the third-party cookie issue, have you tried using cacheLocation: "localstorage" in your Auth0Provider component? Also, are you specifying an API identifier for the audience in the provider component?

<Auth0Provider
  domain={REACT_APP_AUTH0_DOMAIN}
  client_id={REACT_APP_AUTH0_CLIENT_ID}
  audience={API_IDENTIFIER}
  redirect_uri={window.location.origin}
  onRedirectCallback={onRedirectCallback}
  useRefreshTokens
  cacheLocation="localstorage"
>

FAQ: Why is authentication lost after refreshing my single page application?