Guys,
I am planning to set the
refreshTokenExpirationInterval during oauth configuration.
since its a sealed class, how to set the custom expiration interval?
Any code snippet will help.
Solved! Go to Solution.
Hi,
You can set custom refresh token expiration interval as below ,
var oAuthUserConfiguration = OAuthUserConfiguration(portalUrl,clientId,redirectUri, Locale.US,
RefreshTokenExpirationInterval.Minutes(60))
Thanks
Rama
Hi,
You can set custom refresh token expiration interval as below ,
var oAuthUserConfiguration = OAuthUserConfiguration(portalUrl,clientId,redirectUri, Locale.US,
RefreshTokenExpirationInterval.Minutes(60))
Thanks
Rama