You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
According to the documentation, the "containing" class should have this property added:
// property of the containing class
private var authState: OIDAuthState?
The currentAuthFlow property is supposed to be in the AppDelegate.
In order to automatically use refresh tokens before expiry, I need to wrap my Rest calls using the authState property from above. However, those classes don't have access to the login/logout view controller. Can I safely move the property to the AppDelegate as well or are there any hidden issues I am not aware of in doing so?
The text was updated successfully, but these errors were encountered:
According to the documentation, the "containing" class should have this property added:
The currentAuthFlow property is supposed to be in the AppDelegate.
In order to automatically use refresh tokens before expiry, I need to wrap my Rest calls using the authState property from above. However, those classes don't have access to the login/logout view controller. Can I safely move the property to the AppDelegate as well or are there any hidden issues I am not aware of in doing so?
The text was updated successfully, but these errors were encountered: