Hi
I use the below code for dropbox login
DropboxClientsManager.authorizeFromController(UIApplication.shared, controller: self, openURL: {(url: URL) -> Void in UIApplication.shared.openURL(url) })
it works perfectly, But after login window, it will ask permission to access the files and folder from dropbox. If I click the allow or cancel button it won't close the window and don't go to OpenURL function in the app delegate.
And I checked the "https://github.com/dropbox/SwiftyDropbox" SwiftyDropbox sample code from Github. It works perfectly on it.