Hi @mwebb,
Welcome to the Auth0 Community!
When using the Angular SDK’s getAccessTokenSilent()
method, it fetches a new access token and returns the response from the /oauth/token
endpoint, omitting the refresh token. This is mentioned in the Angular SDK’s API Reference. This method would fit your use-case for getting a new access token with passing an audience.
The Refresh Token might not work here since it depends on the initial request’s parameters and cannot be changed when obtaining a new access token.
Let me know how this goes for you.
Thanks,
Rueben