We’re using the approach suggested in the latest Auth0 / Angular 2+ Quickstart with the @auth0/auth0-spa-js library - with the the suggested http interceptor that calls getTokenSilently() to automatically refresh the token. This works great for almost all scenarios, but we sometimes need to send data to our API without triggering the refresh - so I need the access token.
Is there another way to obtain the access_token without calling getTokenSilently()? (we are trying to avoid storing the tokens in local storage, per the Auth0 security suggestions) Thank you.