mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2025-05-31 23:20:02 +02:00
59 lines
1.3 KiB
Plaintext
Vendored
59 lines
1.3 KiB
Plaintext
Vendored
---
|
|
sidebar_position: 1
|
|
---
|
|
|
|
import Tabs from '@theme/Tabs';
|
|
import TabItem from '@theme/TabItem';
|
|
|
|
# Get app authentication link
|
|
Forms a link for authorization via the browser
|
|
|
|
|
|
|
|
`Function GetAppAuthLink(Val Domain, Val ClientID) Export`
|
|
|
|
| Parameter | CLI option | Type | Required | Description |
|
|
|-|-|-|-|-|
|
|
| Domain | --domain | String | ✔ | Current Bitrix URL (like 'portal.bitrix24.com') |
|
|
| ClientID | --clientid | String | ✔ | Client ID from app settings |
|
|
|
|
|
|
Returns: String - URL for browser transition
|
|
|
|
<br/>
|
|
|
|
|
|
|
|
|
|
```bsl title="1C:Enterprise/OneScript code example"
|
|
Domain = "b24-ar17wx.bitrix24.by";
|
|
ClientID = "local.6667fc928a50a9.70414732";
|
|
|
|
Result = OPI_Bitrix24.GetAppAuthLink(Domain, ClientID);
|
|
```
|
|
|
|
|
|
<Tabs>
|
|
|
|
<TabItem value="bash" label="Bash" default>
|
|
```bash
|
|
oint bitrix24 GetAppAuthLink \
|
|
--domain "b24-ar17wx.bitrix24.by" \
|
|
--clientid "***"
|
|
```
|
|
</TabItem>
|
|
|
|
<TabItem value="bat" label="CMD/Bat" default>
|
|
```batch
|
|
oint bitrix24 GetAppAuthLink ^
|
|
--domain "b24-ar17wx.bitrix24.by" ^
|
|
--clientid "***"
|
|
```
|
|
</TabItem>
|
|
</Tabs>
|
|
|
|
|
|
```json title="Result"
|
|
"https://b24-ar17wx.bitrix24.by/oauth/authorize/?client_id=local.6667fc928a50a9.70414732"
|
|
```
|