Socket
Socket
Sign inDemoInstall

telegram_client

Package Overview
Dependencies
22
Maintainers
1
Versions
35
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    telegram_client

library to make bot or user bot telegram auto update latest bot api version telegram only bot api


Version published
Weekly downloads
35
increased by250%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

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);
                    }
                }
            }
        }
    }
    

FAQs

Last updated on 22 Sep 2023

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc