You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To refresh access, make another request with the following parameters int he POST body:
129
+
This `access_token` is set to expire in two hours. To refresh access prior to expiration, make another request to the same URL with the following parameters in the POST body:
130
130
131
131
| PARAMETER | DESCRIPTION |
132
132
|-----------|-------------|
133
133
| grant_type | The grant type you're using. Use "refresh_token" when refreshing access. |
134
134
| client_id | Your app's client ID. |
135
135
| client_secret | Your app's client secret. |
136
-
| refresh_token | The `refresh_token` received from the previous response |
136
+
| refresh_token | The `refresh_token` received from the previous response. |
137
137
138
138
You'll get another response with an updated `access_token` and `refresh_token`, which can then be used to refresh access again.
0 commit comments