Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to use telegram api for creating an android application?

Tags:

telegram

I am trying to build a messaging app that can authenticate users and send messages using the telegram api. But I'm having problems with finding good documentations. Can anyone help me set up the api in my app from where I can implement the methods from the Telegram api? Any help is appreciated.

like image 885
Piyush Kumar Avatar asked Oct 18 '22 07:10

Piyush Kumar


1 Answers

The official Telegram API documentation is quite comprehensive.

Also you can use the new Telegram feature: TDLib. It handles all the encryption, network interaction and local storage. You can find documentation for TDLib in included javadoc (html).

See also:

  • Existing apps' source codes
  • MTProto docs
  • RU TDLib discussion board
like image 77
Jebediah Avatar answered Jan 04 '23 05:01

Jebediah