This library allows you to make rpc calls to Telegram.
Depends on tl-core and mtproto libraries.
Now it used in our production-ready product Telegram S.
This project depends on java MTProto implementation and tl-core library
Download latest distribution at releases page and include jars from it to your project.
Project definded and gradle and expected to use IntelliJ IDEA 13 (now it is Beta) as IDE.
- Checkout this repository to
telegram-api
folder - Checkout mtproto java implementation to
mtproto
folder - Checkout tl core library to
tl-core
folder - Execute
gradle build
attelegram-api
folder
You might to implement storage class for working with api. This storage used for saving state of telegram api across execution instances.
Extend class org.telegram.api.engine.storage.AbsApiState
and implement suitable methods.
In your storage might be information about keys in current datacenter.
Keys might be generated manualy by using org.telegram.mtproto.pq.Authorizer class
.
Now you have proper key for accessing telegram api.
TelegramApi api = new TelegramApi(new MyApiStorage(), new AppInfo(... put application information here...), new ApiCallback()
{
@Override
public void onApiDies(TelegramApi api) {
// When auth key or user authorization dies
}
@Override
public void onUpdatesInvalidated(TelegramApi api) {
// When api engine expects that update sequence might be broken
}
});
// Syncronized call
// All request objects are in org.telegram.api.requests package
TLConfig config = api.doRpcCall(new TLRequestHelpGetConfig());
// Standart async call
api.doRpcCall(new TLRequestHelpGetConfig(), new RpcCallback<TLConfig>()
{
public void onResult(TLConfig result)
{
}
public void onError(int errorCode, String message)
{
// errorCode == 0 if request timeouted
}
});
// Priority async call
// Such rpc call executed with high pripory and sends to server as fast as possible this may improve message delivery speed
api.doRpcCall(new TLRequestHelpGetConfig(), new RpcCallbackEx<TLConfig>()
{
public void onConfirmed()
{
// when message was received by server
}
public void onResult(TLConfig result)
{
}
public void onError(int errorCode, String message)
{
// errorCode == 0 if request timeouted
}
});
// File operations
// Method that downloads file part. Automaticaly managed connections for file operations, automaticaly create keys for dc if there is no one.
api.doGetFile(...)
// Uploads file part
api.doSaveFilePart(...)
####Telegram project
English: http://core.telegram.org/api
Russian: http://dev.stel.com/api
English: http://core.telegram.org/mtproto
Russian: http://dev.stel.com/mtproto
English: http://core.telegram.org/mtproto/TL
Russian: http://dev.stel.com/mtproto/TL
Project uses MIT Licence