How to check validity of access token in java code before using it?
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).
/account/info
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.
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 pci want the first one to read the .ser file that generated from the last use and check if it is valid or notso i have two solutions now1- 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