We are aware of the issue with the badge emails resending to everyone, we apologise for the inconvenience - learn more here.
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)
Greg-DB
Dropbox Staff
Thanks for the information! Can you elaborate on what exactly you did to clear the Keychain to get that working though? (This is supposed to be done automatically for you.)
You can see where this is done in the SDK in the following stack of DropboxClientsManager.unlinkClients -> DropboxOAuthManager.clearStoredAccessTokens - > Keychain.clear:
- https://github.com/dropbox/SwiftyDropbox/blob/345f460558cd1b1c4faf8c6c5fff80f5809044d1/Source/SwiftyDropbox/Shared/Handwritten/DropboxClientsManager.swift#L149
- https://github.com/dropbox/SwiftyDropbox/blob/345f460558cd1b1c4faf8c6c5fff80f5809044d1/Source/SwiftyDropbox/Shared/Handwritten/OAuth.swift#L260
- https://github.com/dropbox/SwiftyDropbox/blob/345f460558cd1b1c4faf8c6c5fff80f5809044d1/Source/SwiftyDropbox/Shared/Handwritten/OAuth.swift#L442
Also, did you get a chance to review the questions in my last reply? E.g., did you try moving the call to see if it's a timing issue?
CarolinaK
8 years agoHelpful | Level 6
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)
About Dropbox API Support & Feedback
Find help with the Dropbox API from other developers.
5,877 PostsLatest Activity: 7 hours 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!