0.0.34 • Published 2 years ago
telegram_client v0.0.34
Telegram Client node js
Quick Start
Bot
var { Telegram } = require("../src/index"); var lib = new Telegram("token_bot"); var tg = lib.api; function setWebhook() { var url = "url_deployc"; var option = { "url": url }; var data = tg.request("setWebhook", option); console.log(data); } function doGet(e) { return ContentService.createTextOutput("hello"); } function doPost(e) { if (e.postData.type == "application/json") { var update = JSON.parse(e.postData.contents); if (update) { if (update.message) { var msg = update.message; if (text) { if (msg.text == "/start") { var option = { "chat_id": msg.chat.id, "text": "Hay this start message" }; return tg.request("sendMessage", option); } else { var option = { "chat_id": msg.chat.id, "text": "echo " + text }; return tg.request("sendMessage", option); } } else { var option = { "chat_id": msg.chat.id, "text": "Hello you" }; return tg.request("sendMessage", option); } } } } }
Userbot
var { Telegram } = require("../src/index"); var lib = new Telegram("paste_your_tokenhere", { "type": "user", "api": "api_userbot" }); var tg = lib.api; function getToken(){ var data = lib.loginUser("phone_number_int", "url_api"); console.log(JSON.stringify(data, null, 2)); } function login(){ var option = { "code": "code_telegram" }; var data = tg.request("authcode", option); console.log(JSON.stringify(data, null, 2)); } function setWebhook() { var url = "urlDeploy"; var option = { "url": url }; var data = tg.request("setWebhook", option); console.log(data); } function doGet(e) { return ContentService.createTextOutput("hello"); } function doPost(e) { if (e.postData.type == "application/json") { var update = JSON.parse(e.postData.contents); if (update) { if (update.message) { var msg = update.message; if (text) { if (msg.text == "/start") { var option = { "chat_id": msg.chat.id, "text": "Hay this start message" }; return tg.request("sendMessage", option); } else { var option = { "chat_id": msg.chat.id, "text": "echo " + text }; return tg.request("sendMessage", option); } } else { var option = { "chat_id": msg.chat.id, "text": "Hello you" }; return tg.request ("sendMessage", option); } } } } }
0.0.30
2 years ago
0.0.31
2 years ago
0.0.32
2 years ago
0.0.33
2 years ago
0.0.34
2 years ago
0.0.29
2 years ago
0.0.28
3 years ago
0.0.20
3 years ago
0.0.21
3 years ago
0.0.22
3 years ago
0.0.23
3 years ago
0.0.24
3 years ago
0.0.25
3 years ago
0.0.16
3 years ago
0.0.17
3 years ago
0.0.18
3 years ago
0.0.19
3 years ago
0.0.26
3 years ago
0.0.27
3 years ago
0.0.14
3 years ago
0.0.15
3 years ago
0.0.10
3 years ago
0.0.11
3 years ago
0.0.12
3 years ago
0.0.13
3 years ago
0.0.3
4 years ago
0.0.9
3 years ago
0.0.8
3 years ago
0.0.5
3 years ago
0.0.4
4 years ago
0.0.7
3 years ago
0.0.6
3 years ago
0.0.2
4 years ago
0.0.1
4 years ago
0.0.0
4 years ago