UserInfo endpoint only fetched once after signIn
Hi,
my userInfo endpoint is only fetched once after signIn. After that, only the token endpoint will be fetched by signinSilent? This looks like a configuration issue to me, as there are no errors observable in console.

My current configuration is:
[...]
scope: 'openid profile',
response_type: 'code',
loadUserInfo: true,
monitorSession: true,
automaticSilentRenew: true,
[...]
Am I missing something here?
Normally your user's info doesn't change that often, so that's likely why calling userinfo on each token renewal wasn't added.
Thanks for the reply! I may have similar expectations as @materia2021 in #1115. Can I somehow fetch the userInfo endpoint manually, @brockallen ?
Yea, I guess you could. But there's not good way to then update the user's profile in the UserManager (other than doing it manually). I have an open issue to add that as a feature.