You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Simple [Telegram Messaging](https://telegram.org/) SDK with logging and bot facilities. Package was built with first-class support of telegram as instant message backend for various notification and reporing systems. So, simpliest way to use this package is by doing something like this
9
8
@@ -36,7 +35,7 @@ Usage is straightforward, [Telegram Bot API methods](https://core.telegram.org/b
You can use [Telegram.jl](https://github.com/Arkoniak/Telegram.jl) together with [LoggingExtras.jl](https://github.com/oxinabox/LoggingExtras.jl) to create powerful logging with insta messaging in case of critical situations
74
73
74
+
Put your credentials in `.env`
75
+
76
+
```
77
+
# .env
78
+
TELEGRAM_BOT_TOKEN = <YOUR TELEGRAM BOT TOKEN>
79
+
TELEGRAM_BOT_CHAT_ID = <YOUR TELEGRAM CHAT ID>
80
+
```
81
+
75
82
```julia
76
83
using Telegram
77
84
using Logging, LoggingExtras
85
+
using ConfigEnv
78
86
79
-
# considering that token and chat_id variables are set as corresponding
Copy file name to clipboardexpand all lines: docs/src/index.md
+24-1
Original file line number
Diff line number
Diff line change
@@ -5,16 +5,39 @@ CurrentModule = Telegram
5
5
# Telegram
6
6
Simple [Telegram Messaging](https://telegram.org/) SDK with logging and bot facilities. Package was built with first-class support of telegram as instant message backend for various notification and reporing systems. So, simpliest way to use this package is by doing something like this
Copy file name to clipboardexpand all lines: docs/src/usage.md
+53-26
Original file line number
Diff line number
Diff line change
@@ -5,22 +5,25 @@ CurrentModule = Telegram
5
5
6
6
## Setting up telegram token and chat\_id
7
7
8
-
In all examples of this section, it is assumed for simplicity that you set telegram token and chat\_id in `TG_TOKEN` and `TG_CHAT_ID` environment variables correspondingly. So you can run your julia session like this for example
8
+
In all examples of this section, it is assumed for simplicity that you set telegram token and chat\_id in `TELEGRAM_BOT_TOKEN` and `TELEGRAM_BOT_CHAT_ID` environment variables correspondingly. Recommended way to do it, by using [ConfigEnv.jl](https://github.com/Arkoniak/ConfigEnv.jl). You should create file `.env`
And at the beginning of the application, populate `ENV` with the `dotenv` function. `Telegram.jl` methods will use these variables automatically. Alternatively (but less secure) you can provide `token` and `chat_id` via `TelegramClient` constructor.
15
17
16
18
In order to get token itself, you should follow [this instruction](https://core.telegram.org/bots#3-how-do-i-create-a-bot). Just talk to `BotFather` and after few simple questions you will receive the token.
17
19
18
20
Easiest way to obtain chat\_id is through running simple print bot.
19
21
20
22
```julia
21
23
using Telegram
24
+
using ConfigEnv
22
25
23
-
tg =TelegramClient(ENV["TG_TOKEN"])
26
+
dotenv()
24
27
25
28
run_bot() do msg
26
29
println(msg)
@@ -48,37 +51,39 @@ After running this script just open chat with your newly created bot and send it
48
51
}
49
52
```
50
53
51
-
In this example, field `message.chat.id = 123456789` is necessary `chat_id` which shoud be stored in `TG_CHAT_ID` variable.
54
+
In this example, field `message.chat.id = 123456789` is necessary `chat_id` which shoud be stored in `TELEGRAM_BOT_CHAT_ID` variable.
52
55
53
56
## Initializing `TelegramClient`
54
57
55
-
To initialize client you need to pass reuired token parameter.
58
+
If you set `ENV` variables `TELEGRAM_BOT_TOKEN` and `TELEGRAM_BOT_CHAT_ID`, then telegram client use them to run all commands. Alternatively you can initialize client by passing required token parameter.
56
59
57
60
```julia
58
61
using Telegram
59
62
60
-
tg =TelegramClient(ENV["TG_TOKEN"])
63
+
tg =TelegramClient("TELEGRAM BOT TOKEN")
61
64
```
62
65
63
-
Since [Telegram.jl](https://github.com/Arkoniak/Telegram.jl) was built with the first-class support of the Telegram as a notification system, you can pass `chat_id` variable, which will be used then in every function related to messaging
66
+
Since [Telegram.jl](https://github.com/Arkoniak/Telegram.jl) was built with the first-class support of the Telegram as a notification system, you can pass `chat_id` variable, which will be used then by default in every function related to messaging
which will send "Hello world" message to the chat defined by `ENV["TG_CHAT_ID"]` variable with the bot defined by `ENV["TG_TOKEN"]` variable.
86
+
which will send "Hello world" message to the chat defined by `ENV["TELEGRAM_BOT_CHAT_ID"]` variable with the bot defined by `ENV["TELEGRAM_BOT_TOKEN"]` variable.
82
87
83
88
In order to override this behaviour you can set `use_globally` argument of [`TelegramClient`](@ref) function. To set previously defined client as a global, you should use [`useglobally!`](@ref).
84
89
@@ -88,18 +93,20 @@ Due to the rather large number of functions defined in [API Reference](@ref), th
88
93
89
94
```julia
90
95
using Telegram
96
+
using ConfigEnv
91
97
92
-
TelegramClient(ENV["TG_TOKEN"])
98
+
dotenv()
93
99
94
100
Telegram.getMe() # returns information about bot
95
101
```
96
102
97
103
If this is inconvenient for some reason, you can either introduce new and short constant name, like this
98
104
```julia
99
105
using Telegram
106
+
using ConfigEnv
100
107
const TG = Telegram
101
108
102
-
TelegramClient(ENV["TG_TOKEN"])
109
+
dotenv()
103
110
104
111
TG.getMe()
105
112
```
@@ -108,8 +115,9 @@ or you can import all telegram Bot API by `using Telegram.API`, in this scenario
108
115
```julia
109
116
using Telegram
110
117
using Telegram.API
118
+
using ConfigEnv
111
119
112
-
TelegramClient(ENV["TG_TOKEN"])
120
+
dotenv()
113
121
114
122
getMe()
115
123
```
@@ -122,16 +130,27 @@ If you set telegram client globally with `chat_id` as it is described in previou
Of course if you have more than one client or writing a bot which should communicate in multiple chats, you can add this parameters to function calls and they will override default values, for example
0 commit comments