1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2024-12-16 11:38:11 +02:00
OpenIntegrations/docs/en/md/VK/Interactive-actions/Shorten-link.md

41 lines
705 B
Markdown
Raw Normal View History

---
sidebar_position: 5
---
# Shorten link
Creates a shortened URL from a regular one
*Function ShortenLink(Val URL, Val Parameters = "") Export*
| Parameter | CLI option | Type | Destination |
|-|-|-|-|
| URL | --url | String | URL for shortening |
| Parameters | --auth | Structure Of String | Authorization JSON or path to .json |
Returns: String - Shortened URL
```bsl title="Code example"
Response = OPI_VK.ShortenLink("https://github.com/Bayselonarrend/OpenIntegrations", Parameters);
```
```sh title="CLI command example"
oint vk ShortenLink --url %url% --auth %auth%
```
```json title="Result"
https://vk.cc/ctL1sM
```