You've already forked OpenIntegrations
mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2025-11-29 22:27:42 +02:00
86 lines
3.1 KiB
Plaintext
Vendored
86 lines
3.1 KiB
Plaintext
Vendored
---
|
|
sidebar_position: 4
|
|
description: "Upload file" and other functions to work with Dropbox 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, Dropbox]
|
|
---
|
|
|
|
import Tabs from '@theme/Tabs';
|
|
import TabItem from '@theme/TabItem';
|
|
|
|
# Upload file
|
|
Uploads a file to the cloud drive
|
|
|
|
|
|
|
|
`Function UploadFile(Val Token, Val File, Val Path, Val Overwrite = False) Export`
|
|
|
|
| Parameter | CLI option | Type | Required | Description |
|
|
|-|-|-|-|-|
|
|
| Token | --token | String | ✔ | Token |
|
|
| File | --file | String, BinaryData | ✔ | Data file for upload |
|
|
| Path | --path | String | ✔ | Save path on Dropbox |
|
|
| Overwrite | --overwrite | Boolean | ✖ | Overwrite file in case of path conflicts |
|
|
|
|
|
|
Returns: Map Of KeyAndValue - serialized JSON response from Dropbox
|
|
|
|
<br/>
|
|
|
|
:::tip
|
|
Parameters with Binary data type can also accept file paths on disk and URLs
|
|
:::
|
|
<br/>
|
|
|
|
|
|
|
|
```bsl title="1C:Enterprise/OneScript code example"
|
|
Path = "/New/pic.png";
|
|
Token = "sl.u.AFt3vUwv48vM5qew5BNGYIL-SQD1cAgHWVPo0J8aFq_tYNu2iDfL0m4uEPlACHZTrP5__xFflXXAJGoEpQSAY9frobih1WO72pTg8FYMR_Jq1OAB3Hn96sGNX35PTbcahW68mFfuFJiAn4-SP1d_vgk5Jf3Gfgx-TaDEkf7QZpqDrxJZfiqyGM32HePpwudjUzsAbtqVLM_KGJG7-1txj8b94n1vwSUuIJmJr9W9Tz_2eXwrDHTF-Xw6BqjTDElWP9IbJDerMbcS-cTE84IoZiVRC3jdao6MD5Mq-vL7JYoAtVe_qUDOSM2WBETiLM5MPGybDyoMAzilf_8aEUglD_DMj1ZVBOtM1HDl110dvxPyFOGtYMcrDDXBbQRT2htAsX3fkF_qM3hqsAgojyXMsKKdk6az3SbasZBsL6NM4XT_9TBN5aU4BUFKeRelENnkDlci4So-AIm_27YGU53Xc7fKMurQcrRLHT09WOLAo4XveC9Plvlqb1XB1alZ5i4GTlRqL-jpnG1HaRPl9DH2jFCK3FqFbwEfSQo9jRmBmshMA3vo7ch1VG_YxW9qeTh3lb0ng_QHcTys_meMCx2wiuRAboikxvk-PJGaR-YOpFlqN91QyuaJAJOcJvM8wn2PEW4miqR6aJgxxL3h-g9xs7QLWMBpHJ0Qzn5vlpJsZoGtoPdSTAGRIO15MLayFgkV6UYr1FyZMajgIG-g8q6vLObgGlLnoHb...";
|
|
Image = "https://api.athenaeum.digital/test_data/picture.jpg";
|
|
|
|
ImagePath = GetTempFileName("png");
|
|
CopyFile(Image, ImagePath);
|
|
|
|
Result = OPI_Dropbox.UploadFile(Token, ImagePath, Path, True);
|
|
```
|
|
|
|
|
|
<Tabs>
|
|
|
|
<TabItem value="bash" label="Bash" default>
|
|
```bash
|
|
oint dropbox UploadFile \
|
|
--token "***" \
|
|
--file "C:\Users\Administrator\AppData\Local\Temp\urxhfmior4e.png" \
|
|
--path "/New/pic.png" \
|
|
--overwrite true
|
|
```
|
|
</TabItem>
|
|
|
|
<TabItem value="bat" label="CMD/Bat" default>
|
|
```batch
|
|
oint dropbox UploadFile ^
|
|
--token "***" ^
|
|
--file "C:\Users\Administrator\AppData\Local\Temp\urxhfmior4e.png" ^
|
|
--path "/New/pic.png" ^
|
|
--overwrite true
|
|
```
|
|
</TabItem>
|
|
</Tabs>
|
|
|
|
|
|
```json title="Result"
|
|
{
|
|
"name": "pic.png",
|
|
"path_lower": "/new/pic.png",
|
|
"path_display": "/New/pic.png",
|
|
"id": "id:kJU6-a-pT48AAAAAAAAckw",
|
|
"client_modified": "2024-10-09T06:15:59Z",
|
|
"server_modified": "2024-10-09T06:15:59Z",
|
|
"rev": "62405300c4139bd841553",
|
|
"size": 2114023,
|
|
"is_downloadable": true,
|
|
"content_hash": "0f3b18c255b0f252bd326cacc04c15c3aa57bd6b8234adb65aa7bb2987a65492"
|
|
}
|
|
```
|