The only thing you can do with the Dropbox url-scheme is connect your 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);
Normally the dropbox-app responses by opening your iOS app with the following scheme:
db-[YOU API KEY]://connect?oauth_token=SOMETOKEN&oauth_token_secret=SOMEOATHTOKEN&uid=SOMETHING
or with:
db-[YOU API KEY]://cancel
Got this from looking at the Dropbox SDK for iOS.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…