- This project is driven from TLSharp and thanks to Sochix.
- Thanks to @XyLoNaMiyX for his amazing CodeGenerator.
Do not try to use this project!!! It is still under development and needs a lot of things to implement!
- Create a developer account in Telegram.
- Fill the [Configuration.cs] (https://github.com/ShanalTeam/TeleTurk/blob/master/TeleTurk.Core/Configuration.cs) with apiHash and apiID you got from developer account, you also need to put your registered phonenumber there.
var store = new FileSessionStore(); // store session file
var client = new TelegramClient(store, "session"); // create client
await client.Connect(); // try to connect
var hash = await client.SendCodeRequest(); // send Code request for registerd phone number
var code = "87493"; // you can change code in debugger
var user = await client.MakeAuth(hash, code); // send code and hash to get confirm from telegram
This is still a work in progress. To implement a new request, open up TelegramClient.cs
and write down your request following this scheme:
public async Task<...> MakeRequest(...)
{
var request = new TL.SomeRequest(...);
return await _sender.SendReceive<...>(request);
}
For example, if we wanted to write a request to delete a contact we would do:
// Returns true if the contacts were deleted
public async Task<bool> DeleteContacts(List<InputUser> inputUsers)
{
var request = new TL.ContactsDeleteContactsRequest(inputUsers);
return await _sender.SendReceive<bool>(request);
}
You have different ways to use the Telegram types. One is casting the abstract
type to its real type. For example:
// We have an abstract Message object
Message message = ...;
// We want to retrieve its Id
int id;
// We need to check against what type is before casting
if (message is TL.MessageEmptyType)
id = ((TL.MessageType)message).Id;
else if (message is TL.MessageType)
id = ((TL.MessageServiceType)message).Id;
else if (message is TL.MessageServiceType)
id = ((TL.MessageServiceType)message).Id;
This however can quickly become annoying. You can also do:
// Accessing the Id by using the indexer
Message message = ...;
int id = (int)message["Id"];
Fairly easier!
Thanks for donations! It's highly appreciated. Bitcoin wallet: 3K1ocweFgaHnAibJ3n6hX7RNZWFTFcJjUe
List of donators:
Please, provide link to an author when you using library
The MIT License
- Copyright (c) 2015 Ilya Pirozhenko http://www.sochix.ru
- Copyright (c) 2016 Lonami http://lonamiwebs.github.io
- Copyright (c) 2016 Ehsan Hesam http://Shanal.ir
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.