mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2024-12-18 23:48:56 +02:00
38 lines
684 B
Markdown
38 lines
684 B
Markdown
|
---
|
||
|
sidebar_position: 1
|
||
|
---
|
||
|
|
||
|
# Get authorization link
|
||
|
Generates an authorization link for browser transition
|
||
|
|
||
|
|
||
|
*Function GetAuthorizationLink(Val AppKey) Export*
|
||
|
|
||
|
| Parameter | CLI option | Type | Destination |
|
||
|
|-|-|-|-|
|
||
|
| AppKey | --appkey | String | Application key |
|
||
|
|
||
|
|
||
|
Returns: String - URL for browser transition
|
||
|
|
||
|
```bsl title="Code example"
|
||
|
|
||
|
AppKey = "oynqxds...";
|
||
|
Result = OPI_Dropbox.GetAuthorizationLink(AppKey);
|
||
|
|
||
|
|
||
|
```
|
||
|
|
||
|
```sh title="CLI command example"
|
||
|
|
||
|
oint dropbox GetAuthorizationLink --appkey "oynqxds..."
|
||
|
|
||
|
```
|
||
|
|
||
|
|
||
|
```json title="Result"
|
||
|
|
||
|
"https://www.dropbox.com/oauth2/authorize?client_id=oynqxdsqft8oyky&response_type=code&token_access_type=offline"
|
||
|
|
||
|
```
|