Here is the line of code that opens the web page in Safari which works fine.
Main.App.OpenURL("https://www.dropbox.com/oauth2/authorize?client_id="&Main.key&"&response_type=token&redirect_uri=http://127.0.0.1/")
The Dropbox authorization page opens and I can login and allow my app access but at that point Safari gives the error "Safari cannot open the page because it could not connect to the server." with 127.0.0.1 being the page it is trying to open.
How do I get 127.0.0.1 connected to my app so App.OpenURL gets called?
What should #UrlScheme be set to?