We Want to Hear From You! What Do You Want to See on the Community? Tell us here!

Forum Discussion

Reshma 's avatar
Reshma
Explorer | Level 3
4 years ago
Solved

is there any Java sdk method to generate access token on the run by taking app key and app secret??

Hello Dropbox team,


As Access token is expiring every 4 hours, we have to regenerate them every 4 hrs. This is becoming difficult to update the access code in my script manually. I'm looking for a Java SDK method that generate access token automatically every 4 hours by taking app key/app secret as input parameters. Could you suggest any sdk method or code sample that I can use to generate access token on the run in my script using app key/app secret. 

Any help would be highly appreciated !!

  • Hi again Reshma ,

    Seems you have misunderstood me. You can't just place one type of token where other type is expected! In Java SDK a DbxCredential object should be used as a proxy (don't ask me why) for refresh token.

    Hope it's a bit more clear now.

7 Replies

  • Здравко's avatar
    Здравко
    Legendary | Level 20
    4 years ago

    Hi Reshma ,

    Every supported SDK do this automatically byself (without any additional method/function call). You just have to initialize your client object using refresh token instead of access token. 😉 That's it.

    Hope this helps.

  • Reshma 's avatar
    Reshma
    Explorer | Level 3
    4 years ago

    Thanks for the suggestion. I have created a Refresh token using this curl

    curl https://api.dropbox.com/oauth2/token -d code=<receivedcode>-d grant_type=authorization_code -u <Appkey>:<Appsecret>

    Then I have initialized/created drop box client object with Refresh token in place of access token

     

    private static final String REFRESH_TOKEN = "<REDACTED_REFRESH_TOKEN> -u <REDACTED_APP_KEY>:<REDACTED_APP_SECRET>";

     

    // Create drop box client

    DbxRequestConfig config = DbxRequestConfig.newBuilder("dropbox/AppToCreateIT's").build();
    DbxClientV2 client = new DbxClientV2(config, REFRESH_TOKEN);

     

    But unfortunately this dint work, it is throwing below error
    Invalid authorization value in HTTP header "Authorization": "Bearer <REDACTED_REFRESH_TOKEN> -u <REDACTED_APP_KEY>:<REDACTED_APP_SECRET>". Expecting "Bearer <oauth2-access-token>".

     

    pardon If my understanding is wrong , could you please guide me with the exact steps to be followed? 

    I have taken the below reference to create dropbox client. instead of access token I have used refresh token as per your suggestion

    GitHub - dropbox/dropbox-sdk-java: A Java library for the Dropbox Core API.

  • Здравко's avatar
    Здравко
    Legendary | Level 20
    4 years ago

    Hi again Reshma ,

    Seems you have misunderstood me. You can't just place one type of token where other type is expected! In Java SDK a DbxCredential object should be used as a proxy (don't ask me why) for refresh token.

    Hope it's a bit more clear now.

  • Greg-DB's avatar
    Greg-DB
    Icon for Dropbox Community Moderator rankDropbox Community Moderator
    4 years ago

    Reshma As Здравко indicated, you cannot use a refresh token as an access token. Refresh tokens and access tokens serve different purposes and are not interchangeable. You can find examples of using the authorization flow in the Java SDK here. You can find an example of using a credential with a client to make call here.

     

    Also, for future reference, do not publicly post your refresh token or app secret. I've redacted them from your post. You may want to revoke it for the sake of security.

  • Greg-DB's avatar
    Greg-DB
    Icon for Dropbox Community Moderator rankDropbox Community Moderator
    3 years ago

    Thang2000 Thanks for letting us know! I've updated the links in my previous post.

About Dropbox API Support & Feedback

Node avatar for Dropbox API Support & Feedback
Find help with the Dropbox API from other developers.6,036 PostsLatest Activity: 9 months ago
411 Following

The Dropbox Community team is active from Monday to Friday. We try to respond to you as soon as we can, usually within 2 hours.

If you need more help you can view your support options (expected response time for an email or ticket is 24 hours), or contact us on X or Facebook.

For more info on available support options for your Dropbox plan, see this article.

If you found the answer to your question in this Community thread, please 'like' the post to say thanks and to let us know it was useful!