New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

tele-bot-api

Package Overview
Dependencies
Maintainers
1
Versions
31
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install
Package was removed
Sorry, it seems this package was removed from the registry

tele-bot-api

library to make bot telegram auto update latest bot api version telegram

0.1.13
unpublished
Source
npm
Version published
Weekly downloads
0
Maintainers
1
Weekly downloads
 
Created
Source

Buy Me A Coffee

❄Tutorial

Get-started-bot-api

  • Local-host
  • Heroku

Advanced-bot-api

❄Content-Library

  • 📰 0% Ads
  • 💸 0% Tracker
  • 📃 0% Logging

❄Docs

  • constructor new teleragram(token_bot, options) example

example

var lib = require("tele-bot-api")
var option = {
  "bot_path" : "/botapi", //--! default path is "/" !--\\
  "port": "7000" //--! default port is 8080 !--\\
}
var tg = new lib.telegram("123456:abcdefg", option)
  • request request(method, parameter) example
var lib = require("tele-bot-api")
var option = {
  "bot_path" : "/botapi" 
}
var tg = new lib.telegram("123456:abcdefg", option)
async function test() {
  var data = {
    "chat_id": 123456,
    "text": "hay"
  }
  return tg.request("sendMessage", data)
}
test()
  • quickstart on(update, respons) example your wesite must public if local you can use ngrok Local-host
var lib = require("tele-bot-api")
var option = {
  "bot_path" : "/botapi"
}
var tg = new lib.telegram("123456:abcdefg", option)
tg.on(function(update, respons){
  console.log(update)
})

tg.start()

//--! Log update !--\\
{
  "req":{
    "query": "/botapi"
  },
  "body":{
    "update_id": 144047304,
    "message": {
      "message_id": 393114,
      "from": {
        "id": 189890822,
        "is_bot": false,
        "first_name": "azka dev",
        "username": "azkadev",
        "language_code": "id"
      },
      "chat": {
        "id": 189890822,
        "first_name": "azka dev",
        "username": "azzkadev",
        "type": "private"
      },
      "date": 1627110738,
      "text": "/start"
    }
  }
}


❄To-Do

A list that i should do more for this project...

  • ✔ full bot api latest support ("auto-update")
  • ✔ clone fiture bot || multiple bot run on webhook
  • 🔜 easy run localhost

🖥Requirements

  • Node v10+ (Node v14 Recommended)
  • Network connection

Keywords

telegram-bot

FAQs

Package last updated on 12 Sep 2021

Did you know?

Socket

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