I'm using IdentityServer4 with Angular 8 and Web API.
When a user registers I log them in automatically using the oidc-client userManager.signinSilent method.
I use the same method to update the access token after a user's claims have been updated. For example, the user may pay for a service so I need to update the user's claims and have this reflected in the access token for the UI.
Is this the correct way to update the access token?