All Projects → rainu → telegram-bot-api

rainu / telegram-bot-api

Licence: MIT License
This is an api-project for the telegram bot (HTTPS) api.

Programming Languages

java
68154 projects - #9 most used programming language

Labels

Projects that are alternatives of or similar to telegram-bot-api

teams-api
Unofficial Microsoft Teams Library
Stars: ✭ 92 (+475%)
Mutual labels:  lib
logger-node
A nodejs logger client for LogDNA
Stars: ✭ 27 (+68.75%)
Mutual labels:  lib
nimjson
nimjson generates nim object definitions from json documents.
Stars: ✭ 37 (+131.25%)
Mutual labels:  lib
liblex
C library for Lexical Analysis
Stars: ✭ 25 (+56.25%)
Mutual labels:  lib
node-nightwatch-accessibility
Nightwatch.js utility assertion for accessibility testing with aXe
Stars: ✭ 16 (+0%)
Mutual labels:  lib
TinyMAT
C/C++ library to handle writing simple Matlab(r) MAT file
Stars: ✭ 22 (+37.5%)
Mutual labels:  lib
babelfish
🐡 Straightforward library for translations and dictionaries
Stars: ✭ 47 (+193.75%)
Mutual labels:  lib
TagEditText
A simple Android Tag EditText
Stars: ✭ 14 (-12.5%)
Mutual labels:  lib
reload
Simple managed reload mechanism for Go
Stars: ✭ 18 (+12.5%)
Mutual labels:  lib
dotty dict
Dictionary wrapper for quick access to deeply nested keys.
Stars: ✭ 67 (+318.75%)
Mutual labels:  lib
menu-hamburger
🍔 A clean, simple and easy to use library to create a Menu Hamburger
Stars: ✭ 17 (+6.25%)
Mutual labels:  lib
node-api-problem
HTTP Problem Utility
Stars: ✭ 24 (+50%)
Mutual labels:  lib
client-js
JS client for polygon.io api
Stars: ✭ 81 (+406.25%)
Mutual labels:  lib
jigjs
🧩 A front-end framework
Stars: ✭ 22 (+37.5%)
Mutual labels:  lib
nimffmpeg
Nim FFMpeg binding
Stars: ✭ 29 (+81.25%)
Mutual labels:  lib
fs-pochta-api
Библиотека для работы с API Почты России
Stars: ✭ 15 (-6.25%)
Mutual labels:  lib
TinyTIFF
lightweight TIFF reader/writer library (C/C++)
Stars: ✭ 91 (+468.75%)
Mutual labels:  lib
CockyGrabber
C# library for the collection of browser information such as cookies, logins, and more
Stars: ✭ 46 (+187.5%)
Mutual labels:  lib
dtkcore
Deepin Toolkit, core module
Stars: ✭ 45 (+181.25%)
Mutual labels:  lib
Assembly-Lib
A 16-bits x86 DOS Assembly library that provides many useful functions for developing programs. It has both VGA grapics functions as well as general purpose utilities. The main purpose of this library was to be able to implement simple DOS games (in Assembly) using VGA (320x200, 256 colors) display.
Stars: ✭ 36 (+125%)
Mutual labels:  lib

telegram-bot-api

This is an api-project for the telegram bot (HTTPS) api. For additional informations see the official telegram bot api documentation.

Usage

import de.raysha.lib.telegram.bot.api.BotAPI;
import de.raysha.lib.telegram.bot.api.TelegramBot;
import de.raysha.lib.telegram.bot.api.model.User;

...

final String botToken = "11111-aaaabbbbbccccddddeeeeffff";
final BotAPI telegramBot = new TelegramBot(botToken);

try{
  User user = telegramBot.getMe();
}catch(BotException e){
  System.err.println("Could not get me!");
}

License

This Bot-API is distributed under the MIT-License.

Maven Usage

If you want to add telegram-bot-api to your maven project, you can add the following dependency in your pom.xml:

  <dependency>
    <groupId>de.raysha.lib.telegram</groupId>
    <artifactId>bot-api</artifactId>
    <version>2.1</version>
  </dependency>
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].