cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Announcements
We've been busy working on some major updates to the Community, so check out what's changing, what’s staying the same and what you can expect from the Dropbox Community right here.

Dropbox API Support & Feedback

Find help with the Dropbox API from other developers.

cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Re: Authenticate using username/password in java

Authenticate using username/password in java

lovin a.
New member | Level 1

can anybody tell me how to authenticate via dropbox username password in my desktop application.

7 Replies 7

Richard P.
Super User alumni

You can't - you have to use the OAuth authentication flow, you cannot authenticate using a username and password.

lovin a.
New member | Level 1

Does this mean, every user who want to access dropbox files, need to create an dropbox app and generate consumer key and secret?

Richard P.
Super User alumni

No, users just have to authenticate using the OAuth process flow - the application will have your keys and secrets embedded in it, they don't have to generate their own.

lovin a.
New member | Level 1

thanks for prompt response...
yes we can keep key. secret inside application. so which OAUTH flow we can use so that for new user we can get access token...i cant find grantType password working in dropbox which is way to pass username/password

lovin a.
New member | Level 1

i dnt want to use 3legged oauth flow..

Richard P.
Super User alumni

As I said before, you can't have your users present their Dropbox username and password to your application - that is not allowed.

You have to use the authentication flow detailed here:

https://www.dropbox.com/developers/core/start/java

This flow connects to the Dropbox servers using a browser instance, allows the user to authenticate directly with the Dropbox servers, and gives you an authentication token at the end of it. It is that authentication token that you then use to access Dropbox on behalf of that user.

lovin a.
New member | Level 1

ohh this is 3legged flow...
Dropbox dnt support "4.3 Resource Owner Password Credentials Grant" ??
Oauth2 specs: https://tools.ietf.org/html/rfc6749#section-1.3.3
POST /token HTTP/1.1
Host: server.example.com
Authorization: Basic czZCaGRSa3F0MzpnWDFmQmF0M2JW
Content-Type: application/x-www-form-urlencoded

 grant_type=password&username=johndoe&password=A3ddj3w
Need more support?