I want the Dropboox API to generate URL like
https://www.dropbox.com/1/oauth2/authorize?state=<STATE>&redirect_uri=<URI>Connectors&response_type=code&client_id=<client_id>
But using the API, I am getting below URL --
https://www.dropbox.com/1/connect?locale=en_IN&k=<k>&n=0&api=2&state=<state>
The above URL won't redirect with "code" i.e. the OAuth code to be used later on by another API to access dropbox folders on behalf of the user.
It is possible to get Access token using API, which can be used locally on the phone for operations like view,select, upload, download. But for these i have a server which will be managing these tasks on behalf of the user.
Is there a way to implement this using Dropbox APIs and without using WebView?