Hello everyone!
I am working on app where backend uses id_token to authorize users from different social providers (OIDC implicit code flow).
I can get retrieve id_token through oauth2/authorize redirect flow, but it’s valid only for 15 minutes.
Documentation said that id_token cannot be refreshed, so is there any way to get new id_token without users going through explicit oauth2/authorize redirect flow?
For example: API to make request to retrieve new id_token
Thank you!