Java library that implements Telegram API to create Telegram Clients
Feel free to fork this project, work on it and then make a pull request to dev branch.
Just add the library to your project with one of these options:
- Using Maven Central Repository:
<dependency>
<groupId>org.telegram</groupId>
<artifactId>telegramapi</artifactId>
<version>66.13</version>
</dependency>
<!-- Maven Repository on Git-BitBucket -->
<repositories>
<repository>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
<id>snapshots</id>
<url>https://api.bitbucket.org/1.0/repositories/onixred/maven-repo/raw/snapshots</url>
</repository>
<repository>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
<id>releases</id>
<url>https://api.bitbucket.org/1.0/repositories/onixred/maven-repo/raw/releases</url>
</repository>
</repositories>
If you want more information about Telegram API, you can go here. And here you will find extra information about mtproto.
Feel free to create issues here as you need
I know this project still have many things to improve, please be patient or help me with it.
- To ex3ndr, whose code was the base of this bot long, long ago. Not much remains from that point, but still there are a few files.
- To Drklo, whose code was also helpful in this project.
- To Marvin for all the help, testing and programing that he spends in this project.
- To Telegram Team for their help while developing it.
- mvn release:prepare
- mvn release:perform
MIT License
Copyright (c) 2016 Ruben Bermudez
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.