1.0.5 • Published 7 years ago

apisitter-telegram v1.0.5

Weekly downloads
2
License
MIT
Repository
github
Last release
7 years ago

Apisitter Logo Telegram messaging api wrapper. For more info apisitter.io.

Installation

This is a Node.js module available through the npm registry.

Before installing, download and install Node.js.

Installation is done using the npm install command:

$ npm install apisitter-telegram --save

Follow our installing guide for more information.

Features

You can create a custom chat in your project, using Telegram services made simple by apisitter.

  • Phonebook management
  • User-to-user messaging and group chat
  • Send/receive text and media messages
  • Push notifications
  • Unlimited historical messages
  • And much more...

For more info apisitter.io.

Docs & Community

Examples

You can find a list of complete sample and Starter Guide on our site our Starter Guide.

A simple guide to how easy it is to integrate Telegram into your app is the following example:

var apiSitter = require("apisitter-telegram");

var idClientTelegram = "YOUR_ID_CLIENT_TELEGRAM";
var tokenClientTelegram = "YOUR_TOKEN_CLIENT_TELEGRAM";

apiSitter.setClientTelegramAuthParameters(idClientTelegram, tokenClientTelegram);

// Example of get your phonebook
var data = {hash: ""};
apiSitter.callApi("POST", "contacts.getContacts", data, function(err, res, body){
  if(res == 200){
    // Your phonebook is in body result
    console.log(JSON.stringify(body));
  }
});

// Example of received messages listener
apiSitter.initUpdatesListener(function (err, res, body) {
  if(res == 200){
    // Your receive message is in body result
    console.log(JSON.stringify(body));
  }
});
apiSitter.startUpdatesListener();
1.0.5

7 years ago

1.0.4

7 years ago

1.0.3

7 years ago

1.0.2

7 years ago

1.0.1

7 years ago

1.0.0

7 years ago