1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-12-03 22:39:12 +02:00
Files
OpenIntegrations/docs/en/md/Neocities/Data-retrieving/Get-site-data.mdx
Vitaly the Alpaca (bot) 60ddd5e71e Main build (Jenkins)
2025-05-21 10:35:46 +03:00

78 lines
1.8 KiB
Plaintext
Vendored

---
sidebar_position: 1
description: Get site data and other functions to work with Neocities 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, Neocities]
---
import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';
# Get site data
Gets information about a site by its name or token
`Function GetSiteData(Val Token, Val Website = "") Export`
| Parameter | CLI option | Type | Required | Description |
|-|-|-|-|-|
| Token | --token | String | ✔ | Auth token |
| Website | --sitename | String | ✖ | Site name (login) for information. Current, if not filled in |
Returns: Map Of KeyAndValue - serialized JSON response from Neocities
<br/>
:::tip
Neocities API docs: [neocities.org/api](https://neocities.org/api)
:::
<br/>
```bsl title="1C:Enterprise/OneScript code example"
Token = "7419cd51de4037f7...";
Website = "2athenaeum";
Result = OPI_Neocities.GetSiteData(Token);
Result = OPI_Neocities.GetSiteData(Token, Website);
```
<Tabs>
<TabItem value="bash" label="Bash" default>
```bash
oint neocities GetSiteData \
--token "***" \
--sitename "2athenaeum"
```
</TabItem>
<TabItem value="bat" label="CMD/Bat" default>
```batch
oint neocities GetSiteData ^
--token "***" ^
--sitename "2athenaeum"
```
</TabItem>
</Tabs>
```json title="Result"
{
"result": "success",
"info": {
"sitename": "opi-test",
"views": 9086,
"hits": 17120,
"created_at": "Thu, 20 Jun 2024 07:28:29 -0000",
"last_updated": "Wed, 09 Oct 2024 06:27:52 -0000",
"domain": null,
"tags": []
}
}
```