The only thing you can do with the Dropbox URL scheme is to connect the Dropbox app to it. Like this:
var key = "[YOUR API KEY]"; var secret = "[YOUR API SECRET]"; var apiversion = "1"; window.open("dbapi-1://"+apiversion+"/connect?k="+key+"&s="+secret);
Usually the answers to the Dropbox-app, opening the iOS application with the following scheme:
db-[YOU API KEY]://connect?oauth_token=SOMETOKEN&oauth_token_secret=SOMEOATHTOKEN&uid=SOMETHING
or using:
db-[YOU API KEY]://cancel
Get it from viewing the Dropbox SDK for iOS.
source share