1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2024-12-18 23:48:56 +02:00
OpenIntegrations/docs/en/md/Twitter/Data-and-settings/Refresh-token.md

50 lines
1.2 KiB
Markdown
Raw Normal View History

---
sidebar_position: 3
---
# Refresh token
Updates the v2 token using the refresh_token
*Function RefreshToken(Val Parameters = "") Export*
| Parameter | CLI option | Type | Destination |
|-|-|-|-|
| Parameters | --auth | Structure Of String | Authorization JSON or path to .json |
Returns: Key-Value Pair - serialized JSON response from Twitter
```bsl title="Code example"
Response = OPI_Twitter.RefreshToken(Parameters);
Constants.TwitterToken.Set(Response["access_token"]);
Constants.TwitterRefresh.Set(Response["refresh_token"]);
Response = OPI_Tools.JSONString(Response);
```
```sh title="CLI command example"
oint twitter RefreshToken --auth %auth%
2024-06-05 11:58:00 +02:00
```
```json title="Result"
{
"refresh_token": "TmttM11111111111111111MY2dkNy1EZklLNmxIT1111111111111111xNTg2ODI6MTowOnJ0OjE",
"access_token": "UTBtWXd11111111111111111111113TkRxWEdxdF9hVlQzOjE3MDUwNTMxNTg2ODE6MTowOmF0OjE",
"scope": "mute.write tweet.moderate.write block.read follows.read offline.access list.write bookmark.read list.read tweet.write space.read block.write like.write like.read users.read tweet.read bookmark.write mute.read follows.write",
"expires_in": 7200,
"token_type": "bearer"
}
```