2024-06-20 09:39:55 +02:00
|
|
|
---
|
|
|
|
sidebar_position: 2
|
|
|
|
---
|
|
|
|
|
|
|
|
# Get token
|
|
|
|
Get token by auth code
|
|
|
|
|
|
|
|
|
2024-07-10 10:59:55 +02:00
|
|
|
|
2024-07-10 12:58:29 +02:00
|
|
|
`Function GetToken(Val ClientID, Val ClientSecret, Val Code) Export`
|
2024-06-20 09:39:55 +02:00
|
|
|
|
2024-08-13 14:52:26 +02:00
|
|
|
| Parameter | CLI option | Type | Description |
|
|
|
|
|-|-|-|-|
|
|
|
|
| ClientID | --clientid | String | Client ID from app settings |
|
|
|
|
| ClientSecret | --clientsecret | String | Client secret from app settings |
|
|
|
|
| Code | --code | String | Code from browser auth page |
|
2024-06-20 09:39:55 +02:00
|
|
|
|
2024-08-13 14:52:26 +02:00
|
|
|
|
|
|
|
Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API
|
2024-06-20 09:39:55 +02:00
|
|
|
|
2024-07-10 13:05:58 +02:00
|
|
|
<br/>
|
2024-07-10 10:59:55 +02:00
|
|
|
|
2024-07-10 12:58:29 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
2024-06-20 09:39:55 +02:00
|
|
|
```bsl title="Code example"
|
2024-08-13 14:52:26 +02:00
|
|
|
ClientID = FunctionParameters["Bitrix24_ClientID"];
|
|
|
|
ClientSecret = FunctionParameters["Bitrix24_ClientSecret"];
|
|
|
|
Code = FunctionParameters["Bitrix24_Code"];
|
|
|
|
|
|
|
|
Result = OPI_Bitrix24.GetToken(ClientID, ClientSecret, Code);
|
2024-06-20 09:39:55 +02:00
|
|
|
```
|
2024-08-13 14:52:26 +02:00
|
|
|
|
2024-07-10 10:59:55 +02:00
|
|
|
|
2024-06-20 09:39:55 +02:00
|
|
|
|
|
|
|
```sh title="CLI command example"
|
2024-08-13 14:52:26 +02:00
|
|
|
|
|
|
|
oint bitrix24 GetToken --clientid "local.6667fc928a50a9.70414732" --clientsecret "ZeKyeYIgy2NsHZqsIHY6GfG1V..." --code "2b096866006e9f06006b12e400000001000007fc1bc681f7ed7f13f2d449980628008c"
|
2024-06-20 09:39:55 +02:00
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
```json title="Result"
|
2024-07-10 13:11:17 +02:00
|
|
|
{
|
2024-08-13 14:52:26 +02:00
|
|
|
"error": "expired_token",
|
|
|
|
"error_description": "The authorization token provided has expired."
|
|
|
|
}
|
2024-06-20 09:39:55 +02:00
|
|
|
```
|