1
0
mirror of https://github.com/danog/MadelineProto.git synced 2024-11-26 23:14:38 +01:00
Go to file
2023-01-04 15:13:55 +01:00
.devcontainer Check output buffering level 2020-09-11 09:30:08 +02:00
.github Switch to woodpecker CI 2022-06-04 17:40:03 +02:00
.woodpecker Try fixing build again 2022-12-06 14:26:25 +01:00
docs@a9eab714f7 Update diff script 2022-12-29 21:33:26 +01:00
examples Cleanup 2023-01-04 12:43:01 +01:00
schemas@82d222bef7 Layer 151 2022-12-29 20:40:06 +01:00
src Full strictness 2023-01-04 15:13:55 +01:00
tests Begin amp v3 refactoring 2022-12-30 19:21:36 +01:00
ton Update even more typehints 2020-10-03 15:04:35 +02:00
tools Cleanup 2023-01-04 12:43:01 +01:00
vendor-bin/check Cleanup 2023-01-04 12:37:12 +01:00
.env.example Improve docs 2018-03-30 16:07:54 +00:00
.gitattributes More fixes 2022-06-04 16:56:59 +02:00
.gitignore More refactoring 2022-12-30 21:43:58 +01:00
.gitmodules Update submodule 2021-09-05 21:06:36 +02:00
.php-cs-fixer.dist.php Layer 150 2022-12-08 20:16:40 +01:00
bot.php Clean up 2019-10-28 22:39:23 +01:00
CODE_OF_CONDUCT.md Clean up 2019-10-28 22:39:23 +01:00
composer.json More refactoring 2022-12-30 21:43:58 +01:00
CONTRIBUTING.md
LICENSE
phpcs.xml More refactoring 2022-12-30 21:43:58 +01:00
phpunit.xml Run entities test 2022-11-07 15:53:00 +01:00
psalm.xml Full strictness 2023-01-04 15:13:55 +01:00
README.md Update to layer 150, greatly simplify peer resolution logic 2022-12-29 20:27:18 +01:00

MadelineProto, a PHP MTProto telegram client

Created by Daniil Gentili

#StandWithUkraine 🇺🇦

Do join the official channel, @MadelineProto and the support groups!

Approved by Telegram!

What's this?

This library can be used to easily interact with Telegram without the bot API, just like the official apps.

It can login with a phone number (MTProto API), or with a bot token (MTProto API, no bot API involved!).

It is now fully async!

Getting started (now fully async!)

<?php

if (!file_exists('madeline.php')) {
    copy('https://phar.madelineproto.xyz/madeline.php', 'madeline.php');
}
include 'madeline.php';

$MadelineProto = new \danog\MadelineProto\API('session.madeline');
$MadelineProto->async(false);
$MadelineProto->start();

$me = $MadelineProto->getSelf();

$MadelineProto->logger($me);

if (!$me['bot']) {
    $MadelineProto->messages->sendMessage(peer: '@stickeroptimizerbot', message: "/start");

    $MadelineProto->channels->joinChannel(channel: '@MadelineProto');

    try {
        $MadelineProto->messages->importChatInvite(hash: 'https://t.me/+Por5orOjwgccnt2w');
    } catch (\danog\MadelineProto\RPCErrorException $e) {
        $MadelineProto->logger($e);
    }
}
$MadelineProto->echo('OK, done!');

Try running this code in a browser or in a console!

Tip: if you receive an error (or nothing), send us the error message and the MadelineProto.log file that was created in the same directory (if running from a browser).

Made with MadelineProto

The following open source projects were created using MadelineProto: you can directly install them, or explore the source code as direct examples on how to use MadelineProto's many features!

  • TelegramApiServer - Fast, simple, async php telegram api server: an HTTP JSON API for MadelineProto!
  • downloadRenameBot.php - Download files by URL and rename Telegram files using this async parallelized bot!
  • secret_bot.php - Secret chat bot!
  • pipesbot.php - Creating inline bots and using other inline bots via a userbot!
  • bot.php - Examples for sending normal messages, downloading any media!

Want to add your own open-source project to this list? Click here!

Documentation