Hi there
I have one question regarding elytron-oidc-client:
Does elytron-oidc-client take care of refreshing token when it expires if I specified token-timeout in configuration? I do not want to use
always-refresh-token config, beacuse that would lead to unnecessary traffic.
Thank you and best regards
Dalibor
<subsystem xmlns="urn:wildfly:elytron-oidc-client:2.0">
<provider name="test-provider">
<provider-url>
https://someurl.com/sso/auth/realms/test-realm</provider-url>
<principal-attribute>preferred_username</principal-attribute>
<autodetect-bearer-only>true</autodetect-bearer-only>
</provider>
<secure-deployment name="test-web.war">
<provider>test-provider</provider>
<bearer-only>true</bearer-only>
<client-id>test-client-id</client-id>
<credential name="secret" secret="test" token-timeout="60000"/>
</secure-deployment>
</subsystem>