I would like to be able to launch dropbox app within my app. Therefore I would like to know if dropbox app has a URL scheme that I can use to call openURL, something like this except I don't know what this string should be.

NSURL *myURL = [NSURL URLWithString:@"dropbox://"];
[[UIApplication sharedApplication] openURL:myURL];

Thanks,

link|improve this question
See stackoverflow.com/questions/8697488/… (and Justin's answer). – Abel Apr 3 at 9:55
feedback

2 Answers

Dropbox does not have a URL scheme. However, you can interact with Dropbox via UIDocumentInteractionController. You can read about that here. I've seen a few apps that allow you to open files in Dropbox, and I assume this is how that's done.

link|improve this answer
feedback

Dropbox's URL scheme is

dbapi-1://
link|improve this answer
Where did you find that, do you have a reference? When I use Google, I find different schemes and none of them standardized or official. – Abel Mar 31 at 12:05
sourced from here: stackoverflow.com/questions/8697488/… – Justin Amberson Apr 3 at 0:16
So, it is indeed not a standard URI scheme, but application specific. But, that said, it should work once Dropbox is installed. You can edit your question to contain a link or something, then I can remove the downvote. – Abel Apr 3 at 9:54
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.