I have working on an application where we use Auth0 to handle complete user authentication. In this case, We do not consume any Auth0 API onbehalf of the user but just authentication. Once the user successfully signed-in, we need to fetch IdToken and append it with each backend API request. Since the IdToken is enough for authentication, We do not need the AccessToken.
The problem is, I can get AccessToken using getAccessTokenSilently()
but there is no such method to get IdToken. Is there any workaround?