Refreshing your token
- What is a Refresh Token? A token that is returned by some integrations and needs to be used to refresh the access token before it expires.
- Provided typically by OAuth and username password integrations, it is critical that it is handled correctly in order to ensure continued connections to accounts.
- Can be obtained in the following ways:
- in a Link JS callback upon successful authentication, along with the AccessToken (managed authentication - recommended)
- by calling
/api/v1/authenticate
, along with the AccessToken - by refreshing the access token using the refreshToken in the following request -
/api/v1/token/refresh
- by refreshing the refresh token using the refreshToken in the following request -
/api/v1/token/refresh
and providingCreateNewRefreshToken
parameter
Step 1: Go ahead and refresh your access token:
Refresh your token
Let's take our access token and call some provider data.
Please click next.