1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-11-29 22:27:42 +02:00
Files
OpenIntegrations/docs/en/md/Twitter/Data-and-settings/Get-authorization-link.mdx
Vitaly the Alpaca (bot) 61cb22a266 Main build (Jenkins)
2025-10-07 19:27:04 +03:00

59 lines
2.4 KiB
Plaintext
Vendored

---
sidebar_position: 1
description: Get authorization link and other functions to work with Twitter in the Open Integration Package, a free open-source integration library for 1C:Enterprise 8, OneScript and CLI
keywords: [1C, 1С, 1С:Enterprise, 1С:Enterprise 8.3, API, Integration, Services, Exchange, OneScript, CLI, Twitter]
---
import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';
# Get authorization link
Forms a link for authorization via the browser
`Function GetAuthorizationLink(Parameters = "") Export`
| Parameter | CLI option | Type | Required | Description |
|-|-|-|-|-|
| Parameters | --auth | Structure Of String | ✖ | Authorization data. See GetStandardParameters |
Returns: String - URL for browser transition
<br/>
```bsl title="1C:Enterprise/OneScript code example"
Parameters = GetTwitterAuthData();
Result = OPI_Twitter.GetAuthorizationLink(Parameters);
```
<Tabs>
<TabItem value="bash" label="Bash" default>
```bash
# JSON data can also be passed as a path to a .json file
oint twitter GetAuthorizationLink \
--auth "{'redirect_uri':'https://hut.openintegrations.dev/melezh/6ad91cc8b','client_id':'***','client_secret':'***','access_token':'***','refresh_token':'***','oauth_token':'***','oauth_token_secret':'***','oauth_consumer_key':'***','oauth_consumer_secret':'***'}"
```
</TabItem>
<TabItem value="bat" label="CMD/Bat" default>
```batch
:: JSON data can also be passed as a path to a .json file
oint twitter GetAuthorizationLink ^
--auth "{'redirect_uri':'https://hut.openintegrations.dev/melezh/6ad91cc8b','client_id':'***','client_secret':'***','access_token':'***','refresh_token':'***','oauth_token':'***','oauth_token_secret':'***','oauth_consumer_key':'***','oauth_consumer_secret':'***'}"
```
</TabItem>
</Tabs>
```json title="Result"
"https://twitter.com/i/oauth2/authorize?response_type=code&client_id=dFBPVWVadDZzeTZMeUNZaEd4Y086MTpjaQ&redirect_uri=https://hut.openintegrations.dev/melezh/6ad91cc8b&scope=tweet.read%20tweet.write%20tweet.moderate.write%20users.read%20follows.read%20follows.write%20offline.access%20space.read%20mute.read%20mute.write%20like.read%20like.write%20list.read%20list.write%20block.read%20block.write%20bookmark.read%20bookmark.write&state=state&code_challenge=challenge&code_challenge_method=plain"
```