This forum uses cookies
This forum makes use of cookies to store your login information if you are registered, and your last visit if you are not. Cookies are small text documents stored on your computer; the cookies set by this forum can only be used on this website and pose no security risk. Cookies on this forum also track the specific topics you have read and when you last read them. Please confirm that you accept these cookies being set.

TELEGRAM APP
#2
It was explained here https://forum.logicmachine.net/showthrea...13#pid2513 but lets make a clear version:

1. Install Telegram app

2. Find BotFather or go here https://t.me/botfather

3. Once in BotFather type /newbot and follow instructions. As a result you will get your token and your own bot link like t.me/yourname_bot Click on the link and type any message there

4. Open browser (preferably Firefox as it converts JSON automatically) and go here https://api.telegram.org/bot<token>/getUpdates. Replace <token> with your token. As a result you should have something like that. Save your chat ID
   

5. Create a user library called telegram. paste this code and replace your token and chat ID
Code:
require('ssl.https')

local token = 'token' -- your token
local chat_id = '1234567' -- your chat id

function telegram(message)
  local url = 'https://api.telegram.org/bot' .. token .. '/sendMessage'
  local data = 'chat_id=' .. chat_id .. '&text=' .. socket.url.escape(message)
  return ssl.https.request(url, data)
end

6. Create an event based script and use this code to send message to Telegram app:
Code:
require("user.telegram")
message = 'test message'
res, err = telegram(message)
log(res, err)
------------------------------
Ctrl+F5
Reply


Messages In This Thread
TELEGRAM APP - by Hosutech - 01.06.2020, 11:15
RE: TELEGRAM APP - by Daniel - 01.06.2020, 14:29
RE: TELEGRAM APP - by JRP - 03.06.2020, 17:18
RE: TELEGRAM APP - by JRP - 11.07.2020, 18:47
RE: TELEGRAM APP - by khalil - 04.03.2021, 10:36
RE: TELEGRAM APP - by olegrz - 04.09.2022, 12:32
RE: TELEGRAM APP - by Daniel - 03.06.2020, 18:02
RE: TELEGRAM APP - by JRP - 03.06.2020, 18:27
RE: TELEGRAM APP - by Daniel - 03.06.2020, 18:40
RE: TELEGRAM APP - by JRP - 03.06.2020, 18:57
RE: TELEGRAM APP - by Erwin van der Zwart - 03.06.2020, 21:06
RE: TELEGRAM APP - by olegrz - 06.01.2024, 17:51
RE: TELEGRAM APP - by olegrz - 07.01.2024, 09:09
RE: TELEGRAM APP - by admin - 04.06.2020, 04:36
RE: TELEGRAM APP - by baggins - 04.06.2020, 10:54
RE: TELEGRAM APP - by JRP - 04.06.2020, 07:35
RE: TELEGRAM APP - by admin - 04.06.2020, 11:17
RE: TELEGRAM APP - by phongvucba - 04.08.2020, 09:03
RE: TELEGRAM APP - by Daniel - 04.08.2020, 09:06
RE: TELEGRAM APP - by admin - 04.03.2021, 10:38
RE: TELEGRAM APP - by khalil - 04.03.2021, 10:44
RE: TELEGRAM APP - by khalil - 04.03.2021, 14:18
RE: TELEGRAM APP - by admin - 04.03.2021, 17:17
RE: TELEGRAM APP - by khalil - 08.03.2021, 14:28
RE: TELEGRAM APP - by admin - 09.03.2021, 07:08
RE: TELEGRAM APP - by khalil - 09.03.2021, 08:42
RE: TELEGRAM APP - by admin - 09.03.2021, 08:45
RE: TELEGRAM APP - by khalil - 09.03.2021, 09:24
RE: TELEGRAM APP - by edgars - 09.02.2022, 11:49
RE: TELEGRAM APP - by admin - 05.09.2022, 06:17
RE: TELEGRAM APP - by olegrz - 05.09.2022, 09:04
RE: TELEGRAM APP - by Daniel - 02.02.2023, 18:08
RE: TELEGRAM APP - by David - 26.04.2023, 07:28
RE: TELEGRAM APP - by admin - 26.04.2023, 07:28
RE: TELEGRAM APP - by David - 26.04.2023, 07:33

Forum Jump: