Don Cung

Results 15 comments of Don Cung

What version of the SDK are you using. Also just to check are you using any proguarding right now?

How are you passing the custom refresh provider to the sessions, or are you using the global version inside of BoxAuthentication? Can you add a break point to BoxSessionRefreshRequest inside...

For the refresh provider I'd recommend copying the user information from the previous authInfo. The authInfo is passed in to the method call you are getting so that you know...

Sure. I'll look into updating our documentation on this. In the mean time if you want to block for the initial session (assuming you are not on the UI thread)...

By main thread you are referring to UI thread? If so that is not recommended since the refresh is making an api call and can potentially take a while causing...

Sorry for the late reply. I'm not entirely familiar with Xamarin, and the version number you listed is unfamiliar to me. We did complete a refactor of our application recently...

If you do not want the login activity to ever appear you will want to set an AuthenticationRefreshProvider either globally in BoxAuthentication or locally in your session. Then you can...

The reason you are seeing the choose account UI is because the BoxSession object is being constructed with null for the user id. This has a special meaning to the...

Generally shouldn't be, we use the SDK in our application. Are you still using your database to keep any refresh/access tokens or did you logout any of the users? It...

Looks like it should work. The SDK handles refreshing automatically so as long as you don't explicitly call logout or get an event that would trigger an invalid refresh the...