cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Announcements
Want to learn some quick and useful tips to make your day easier? Check out how Calvin uses Replay to get feedback from other teams at Dropbox 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: 

How to check validity of access token in java code

How to check validity of access token in java code

Abdullah S.1
New member | Level 2

How to check validity of access token in java code before using it?

2 Replies 2

Steve M.
Dropbox Staff

Just try it and look for a 401 response to indicate an auth problem.

I might use the /account/info endpoint for this (since it pretty much can't fail for any other reason).

But note that the access token could be revoked at any time, so you'll still need to handle the case where the call you're actually making fails. E.g., this is an anti-pattern.

if (isValid(token)) {
    // What if the token gets revoked right here? After you checked but before you upload the file?
    uploadFile(..., token);
}

Since the check doesn't really save you having to do the error handling, you may as well just try to upload the file and handle the 401 error if it occurs.

Abdullah S.1
New member | Level 2

I've 2 programs one to get the token and serialize it and the other is to deserialize it and use it maybe on another pc
i want the first one to read the .ser file that generated from the last use and check if it is valid or not
so i have two solutions now
1- make the first program create small file and test the access token to upload it and then delete it if it is uploaded.
2- make the first program get new access token every time and serialize it.
thanks for your reply 🙂

Need more support?
Who's talking

Top contributors to this post

  • User avatar
    Abdullah S.1 New member | Level 2
  • User avatar
    Steve M. Dropbox Staff
What do Dropbox user levels mean?