I have an access_token say: A
with access_type offline and it expires after 3600 seconds from time of obtaining ie t0
I also have the refresh_token obtained the first time along with the access_token.
At a later time say at t0 + 1000
seconds (before access token expiry time), I exchange the refresh token for a new access token B
Now, is my earlier access_token A Still valid?
Additional Note: This is of concern to me as I am using multiple asynchronous operations in my code using the same access_token, and I do not want any one of the operation to fail if the other operation exchanges the refresh_token for an access_token before expiry time.