1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-11-29 22:27:42 +02:00
Files
OpenIntegrations/docs/en/md/Yandex_Disk/Manage-public-access/Publish-object.mdx
Vitaly the Alpaca (bot) 3d4bbb5f8b Main build (Jenkins)
2025-09-01 14:51:24 +03:00

83 lines
2.9 KiB
Plaintext
Vendored

---
sidebar_position: 1
description: Publish object and other functions to work with Yandex Disk 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, Yandex Disk]
---
import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';
# Publish object
Publishes the disk object for public access
`Function PublishObject(Val Token, Val Path) Export`
| Parameter | CLI option | Type | Required | Description |
|-|-|-|-|-|
| Token | --token | String | ✔ | Token |
| Path | --path | String | ✔ | Path to the object to be published |
Returns: Map Of KeyAndValue - serialized JSON response from Yandex
<br/>
```bsl title="1C:Enterprise/OneScript code example"
Token = "y0_AgAAAABdylaOAAs0QgAAAAD5i-a...";
Path = "/55a75052-4929-4d1a-ac76-75008e1afe8e.png";
Result = OPI_YandexDisk.PublishObject(Token, Path);
```
<Tabs>
<TabItem value="bash" label="Bash" default>
```bash
oint yadisk PublishObject \
--token "***" \
--path "/9db50c8b-0684-4b56-b212-d6246f7d1666.png"
```
</TabItem>
<TabItem value="bat" label="CMD/Bat" default>
```batch
oint yadisk PublishObject ^
--token "***" ^
--path "/9db50c8b-0684-4b56-b212-d6246f7d1666.png"
```
</TabItem>
</Tabs>
```json title="Result"
{
"antivirus_status": "clean",
"public_key": "Zgug7716lOoPjW/yVHq7fCMf2VsHEqpvymRw7rxCkLG46AH97K0C1XZAECLVSaR1q/J6bpmRyOJonT3VoXnDag==",
"public_url": "https://yadi.sk/d/p1LRMjbJRWmI6w",
"name": "c799f944-a1e1-460c-b167-369776aec80b.png",
"exif": {},
"created": "2024-10-09T09:10:44+03:00",
"size": 2114023,
"resource_id": "1573541518:15116e358f7727f9590f66b5967cae42c4134b5e8dafc5a4acba41a51258d715",
"modified": "2024-10-09T09:10:44+03:00",
"comment_ids": {
"private_resource": "1573541518:15116e358f7727f9590f66b5967cae42c4134b5e8dafc5a4acba41a51258d715",
"public_resource": "1573541518:15116e358f7727f9590f66b5967cae42c4134b5e8dafc5a4acba41a51258d715"
},
"mime_type": "multipart",
"file": "https://downloader.disk.yandex.ru/disk/56103cba7a5223058dc17dfaaa884c9cc2d8e1687e81c841f8a991f2781ac6c0/670656b8/gwThwhLBKYvLhQCNnqAHikawF6ofeh69S2Q-9g1T5IGPQ-vmmg5ho0UNlym1cYvMYt55yWUwrNHLEwnJN27VGg%3D%3D?uid=1573541518&filename=c799f944-a1e1-460c-b167-369776aec80b.png&disposition=attachment&hash=&limit=0&content_type=multipart&owner_uid=1573541518&fsize=2114023&hid=03d7263840468e281bd0b238a26e7d0d&media_type=image&tknv=v2&etag=9e0176f87f6565a22f78e0f9b39a4d78",
"path": "disk:/c799f944-a1e1-460c-b167-369776aec80b.png",
"media_type": "image",
"sha256": "89f8eb42a35208a17c85036e17237b0aa0657e1841efa6171dc5acbc0dea9e18",
"type": "file",
"md5": "9e0176f87f6565a22f78e0f9b39a4d78",
"revision": 1728454264539399
}
```