Please note that if a new Refresh Token is returned, the previous one expires.
So does it mean if I am not calling refreshAccessTokenWithRefreshToken($currentRefreshToken) method after 24 hours then the current refresh token will be valid for 100 days and it will only invalidate the current token if I call refreshAccessTokenWithRefreshToken($currentRefreshToken)?
Also how to update the access token in runtime if it expired from the current one?.
As per doc https://help.developer.intuit.com/s/article/Validity-of-Refresh-Token#:~:text=The%20Refresh%20Token%20is%20valid,consent%20again%20until%20this%20time.
So does it mean if I am not calling
refreshAccessTokenWithRefreshToken($currentRefreshToken)
method after 24 hours then the current refresh token will be valid for 100 days and it will only invalidate the current token if I callrefreshAccessTokenWithRefreshToken($currentRefreshToken)
?Also how to update the access token in runtime if it expired from the current one?.