mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2025-04-07 07:10:01 +02:00
75 lines
1.6 KiB
Plaintext
75 lines
1.6 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 | 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="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);
|
|
```
|
|
|
|
|
|
|
|
|
|
```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
|
|
}
|
|
}
|
|
}
|
|
```
|