Your workflow is unique 👨💻 - tell us how you use Dropbox here.
Forum Discussion
Jordan B.7
9 years agoNew member | Level 1
Redirect after login not completing and app is closing. (SwiftyDropBox)
I've followed the SwiftyDropbox tutorial and after linking the app to my (user) db account the app just quits with out throwing any errors after the redirect back to the app.
This is my console out...
Greg-DB
Dropbox Community Moderator
9 years agoWhat version of iOS are you running? The only thing that looks potentially wrong is that you're using the older version of the openURL method.
There's a note in the tutorial here about that:
https://www.dropbox.com/developers/documentation/swift#tutorial
You can use this version for 9.0+:
func application(app: UIApplication, openURL url: NSURL, options: [String : AnyObject]) -> Bool {
The version you're using is for <9.0:
func application(app: UIApplication, openURL url: NSURL, sourceApplication: String?, annotation: AnyObject) -> Bool {About Dropbox API Support and Feedback
Get help with the Dropbox API from fellow developers and experts.
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, Facebook or Instagram.
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!