1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-11-29 22:27:42 +02:00
Files
OpenIntegrations/docs/en/md/Dropbox/Shared-access-settings/Publish-folder.mdx
Vitaly the Alpaca (bot) cdef2d02ab Main build (Jenkins)
2025-10-21 21:43:05 +03:00

88 lines
2.7 KiB
Plaintext
Vendored

---
sidebar_position: 1
description: Publish folder 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';
# Publish folder
Sets the directory to public access mode
`Function PublishFolder(Val Token, Val Path) Export`
| Parameter | CLI option | Type | Required | Description |
|-|-|-|-|-|
| Token | --token | String | ✔ | Token |
| Path | --path | String | ✔ | Path to the target directory |
Returns: Map Of KeyAndValue - serialized JSON response from Dropbox
<br/>
```bsl title="1C:Enterprise/OneScript code example"
Token = "sl.u.AGD50XKO7wtrVrk6Jj8bLInZ4qU1xI-4iki5x1AaK0BbetjfvOgXAPvCGOg1SX0TPjL-vdL1lrBzf6Bv_QqtVoUIyTIpEoQQA0VeSWGiwkkJIpAZB4XW2ZM6Mxy0T2f7LlQVWVDvIPTgWuxfnjxBDEE8Aj6BXgp18lcpXi-b13OKnhmSa_JIir2mS2m-02rxHgHCGvba2ohmM4nXwVgpK8ycm9PaSnD6K0UNqj_Mt5j-iW1JrT8Q72_ybsfk-UHbavtz80wmZ4td3A_3Gyqf9bHU1D-QyJ7gMobqr41Egk3OtiqkVs5NVbmG7l0a-ekLK2DCZOeIu_qgBtcFe2nzb2dM34prMeIgSJVB2mkIndyn9jo4ox4USxB8eFK3oxld0iK1ZiPhEKw9lcd0YYJt0R4DAKxJjGPW9WBTpBAjVralqcNAx-WMDhKR7hRwjRIO3pGtUnGxOjmdWtqstRZhjrmj3laFHZkQVNWVx4nI4hv5SvXgqkNhCD7PFI9SZppme8h1K-NuV1JMbPlAs3EPLMFaZE7oRZsIe73HidQkzV_c_z7--MMkrYliSE4MUq8lzybgEX8l_VznO6uH6v1NEY_5vCoYQZL2Ecc09E8mWWoQJCDrXhgApXu0EPvuQ26OpFmrgd1USEb-Y_IVN548uuZsbuRwYQP6KWgOby3SGOU6cfVEkx1WNW2Uhg8-hBhzSxq9UV0CQ5Rh2WK0nrf7dYM-Kk2UJIF...";
Path = "/New";
Result = OPI_Dropbox.PublishFolder(Token, Path);
```
<Tabs>
<TabItem value="bash" label="Bash" default>
```bash
oint dropbox PublishFolder \
--token "***" \
--path "/New"
```
</TabItem>
<TabItem value="bat" label="CMD/Bat" default>
```batch
oint dropbox PublishFolder ^
--token "***" ^
--path "/New"
```
</TabItem>
</Tabs>
```json title="Result"
{
".tag": "complete",
"access_type": {
".tag": "owner"
},
"is_inside_team_folder": false,
"is_team_folder": false,
"path_display": "/New",
"path_lower": "/new",
"name": "New",
"policy": {
"acl_update_policy": {
".tag": "editors"
},
"shared_link_policy": {
".tag": "anyone"
},
"viewer_info_policy": {
".tag": "enabled"
}
},
"preview_url": "https://www.dropbox.com/scl/fo/yk71rew1nan33v6r0wke5/h?dl=0",
"shared_folder_id": "13020385041",
"time_invited": "2025-10-15T09:47:03Z",
"access_inheritance": {
".tag": "inherit"
},
"folder_id": "id:kJU6-a-pT48AAAAAAABbcQ"
}
```