We Want to Hear From You! What Do You Want to See on the Community? Tell us here!

Forum Discussion

CarolinaK's avatar
CarolinaK
Helpful | Level 6
8 years ago
Solved

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.unlinkClients() from my applicationWillTerminate it still contains an dropboxClient object. What happens right after the application start when I call `

handleRedirectURL` is that it will skip the login screen and still contains the `SwiftyDropbox.DropboxClient` object and it's not `nil` when I debug.

 

I haven't changed any of the code handling the login and the login/logout functionality worked pretty well a few weeks ago (I was able to see the login screen each time I restarted  the app). Is there something else that I could be missing? I noted that the icloud keychain is disabled at the moment so it couldn't be that. 

 

Thanks for the help in advance.

  • 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)

     

12 Replies

About Dropbox API Support & Feedback

Node avatar for Dropbox API Support & Feedback
Find help with the Dropbox API from other developers.6,033 PostsLatest Activity: 3 hours ago
409 Following

The Dropbox Community team is active from Monday to Friday. We try to respond to you as soon as we can, usually within 2 hours.

If 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!