Hi @chase-cannect,
The failed silent auth error message is indicating you are trying to authenticate with the prompt=none
query parameter but there isn’t an active session previously. Typically silent auth is used to re-authenticate without user interaction, and since there isnt an existing session, the error is thrown. This is justified by your Auth0 logs indicating a “Login required” error description. You can authenticate as usual by removing the prompt=none
scope and then include it back in future requests.
Secondly, the Chrome deprecation warning about not using third-party cookies will require you to use either custom domains or Refresh Token Rotation to get new access tokens. (Reference: Third-party cookie deprecation in Chrome - #6 by tyf)
Thanks,
Rueben