You might see that the Dropbox Community team have been busy working on some major updates to the Community itself! So, here is some info on what’s changed, what’s staying the same and what you can expect from the Dropbox Community overall.
Forum Discussion
CarolinaK
8 years agoHelpful | Level 6
SwiftyDropbox "unlinkClients" not present in package, can't clear session
Hi,
I've recently noticed that I can't get rid of a session with my ios app. When I call `print(DropboxClientsManager.authorizedClient.debugDescription)` even when I call DropboxClientsManager...
- 8 years ago
This is what I used to delete all keychains from the app:
func deleteAllKeysForSecClass(_ secClass: CFTypeRef) { let dict: [NSString : Any] = [kSecClass : secClass] let result = SecItemDelete(dict as CFDictionary) assert(result == noErr || result == errSecItemNotFound, "Error deleting keychain data (\(result))") }
deleteAllKeysForSecClass(kSecClassGenericPassword) deleteAllKeysForSecClass(kSecClassInternetPassword) deleteAllKeysForSecClass(kSecClassCertificate) deleteAllKeysForSecClass(kSecClassKey) deleteAllKeysForSecClass(kSecClassIdentity)
CarolinaK
8 years agoHelpful | Level 6
I should note that the session still persists even when I uninstall and re-install the app.
Also the docs say you should call DropboxClient.unlinkClients but I can't find that on the package code, only
DropboxClientsManager.unlinkClients()
works
About Dropbox API Support & Feedback
Find help with the Dropbox API from other developers.
5,877 PostsLatest Activity: 12 months agoIf you need more help you can view your support options (expected response time for an email or ticket is 24 hours), or contact us on X or Facebook.
For more info on available support options for your Dropbox plan, see this article.
If you found the answer to your question in this Community thread, please 'like' the post to say thanks and to let us know it was useful!