Don Cung
Don Cung
We will try to improve our documentation for this use case. A failed refresh can cause a logout of the user since it means the access and refresh tokens cannot...
The sdk is designed to simplify the work flow required for most developer applications so we need control of the original input stream to handle error cases and progress reporting....
Always use the getBody method as the actual input stream varies. Also the sdk is designed such that send acts sychronously completing its job and cleans up. As such you...
The logout will only work on currently logged in accounts. However the webview will cache sso credentials for some time by default. The sdk should be clearing on disk cache,...
You can try clearing cookies like this, there are side effects if you have other webviews. CookieSyncManager.createInstance(this); CookieManager cookieManager = CookieManager.getInstance(); cookieManager.removeAllCookies(ValueCallback); On Sun, Jul 8, 2018, 8:06 PM BoyHasNnoName...