1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-03-25 21:39:21 +02:00
2024-10-22 08:59:24 +03:00

67 lines
1.5 KiB
Plaintext

---
sidebar_position: 3
---
import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';
# Refresh token
Gets a new token based on the refresh token
`Function RefreshToken(Val AppKey, Val AppSecret, Val RefreshToken) Export`
| Parameter | CLI option | Type | Required | Description |
|-|-|-|-|-|
| AppKey | --appkey | String | ✔ | Application key |
| AppSecret | --appsecret | String | ✔ | Application secret |
| RefreshToken | --refresh | String | ✔ | Refresh token |
Returns: Map Of KeyAndValue - serialized JSON response from Dropbox
<br/>
```bsl title="1C:Enterprise/OneScript code example"
AppKey = "oynqxds...";
AppSecret = "tk2oewn...";
RefreshToken = "oZFWg3DmZ_IAAAAAAAAAAWilOA0M1SjV...";
Result = OPI_Dropbox.RefreshToken(AppKey, AppSecret, RefreshToken);
```
<Tabs>
<TabItem value="bash" label="Bash" default>
```bash
oint dropbox RefreshToken \
--appkey "***" \
--appsecret "***" \
--refresh "***"
```
</TabItem>
<TabItem value="bat" label="CMD/Bat" default>
```batch
oint dropbox RefreshToken ^
--appkey "***" ^
--appsecret "***" ^
--refresh "***"
```
</TabItem>
</Tabs>
```json title="Result"
{
"access_token": "sl.B2M8yVLTS_ojO3UsFs2tRlXxkFh50RLOkroi3SLCwcjA2xX58JY__GXKh9vPGnGcfDkkTJJYB1Wn9tFvj6cRs3w04TnfaBQnJiOfUb58UHexTCAdck9xNFIBAQjuAQKUtkoht66bvsu4oh6Wl6gQpvU",
"token_type": "bearer",
"expires_in": 14400
}
```