1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-11-29 22:27:42 +02:00
Files
OpenIntegrations/docs/en/md/Telegram/Data-sending/Send-location.mdx
2024-10-22 08:59:24 +03:00

97 lines
2.3 KiB
Plaintext

---
sidebar_position: 8
---
import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';
# Send location
Sends location by geographic latitude and longitude to a chat or channel
`Function SendLocation(Val Token, Val ChatID, Val Latitude, Val Longitude, Val Keyboard = "") Export`
| Parameter | CLI option | Type | Required | Description |
|-|-|-|-|-|
| Token | --token | String | ✔ | Bot token |
| ChatID | --chat | String, Number | ✔ | Target chat ID or ChatID*TopicID |
| Latitude | --lat | String, Number | ✔ | Geographic latitude |
| Longitude | --long | String, Number | ✔ | Geographic longitude |
| Keyboard | --keyboard | String | ✖ | Keyboard. See FormKeyboardFromButtonArray |
Returns: Map Of KeyAndValue - serialized JSON response from Telegram
<br/>
:::tip
Method at API documentation: [sendLocation](https://core.telegram.org/bots/api#sendlocation)
:::
<br/>
```bsl title="1C:Enterprise/OneScript code example"
Token = "6129457865:AAFyzNYOAFbu...";
ChatID = "461699897";
ChannelID = "@testsichee";
Width = "48.87373649724122";
Longitude = "48.87373649724122";
Result = OPI_Telegram.SendLocation(Token, ChatID, Width, Longitude);
Result = OPI_Telegram.SendLocation(Token, ChannelID, Width, Longitude);
```
<Tabs>
<TabItem value="bash" label="Bash" default>
```bash
oint telegram SendLocation \
--token "***" \
--chat "@testsichee" \
--lat "48.87373649724122" \
--long "48.87373649724122"
```
</TabItem>
<TabItem value="bat" label="CMD/Bat" default>
```batch
oint telegram SendLocation ^
--token "***" ^
--chat "@testsichee" ^
--lat "48.87373649724122" ^
--long "48.87373649724122"
```
</TabItem>
</Tabs>
```json title="Result"
{
"ok": true,
"result": {
"message_id": 8312,
"from": {
"id": 6129457865,
"is_bot": true,
"first_name": "Бот Виталий",
"username": "sicheebot"
},
"chat": {
"id": 461699897,
"first_name": "Anton",
"last_name": "Titowets",
"username": "JKIee",
"type": "private"
},
"date": 1728453427,
"location": {
"latitude": 48.873739,
"longitude": 48.873733
}
}
}
```