1
0
mirror of https://github.com/danog/MadelineProto.git synced 2024-11-27 00:34:40 +01:00
Go to file
2023-07-10 19:56:44 +02:00
.github Create .github/dependabot.yml 2023-03-06 14:10:46 +01:00
.woodpecker Fix tests 2023-06-19 01:07:28 +02:00
docs@d6cc1fffc9 Fix 2023-07-10 10:13:11 +02:00
examples Fix 2023-07-10 10:13:11 +02:00
langs Localize errors 2023-07-10 19:56:44 +02:00
schemas@5bac791635 Add a bunch of new filters and a getAdmin function 2023-07-10 18:42:58 +02:00
src Localize errors 2023-07-10 19:56:44 +02:00
tests Add tests 2023-07-08 16:48:47 +02:00
ton Fixes 2023-03-09 13:13:04 +01:00
tools Improve pure phar installs 2023-07-09 18:42:42 +02:00
vendor-bin/check Merge branch 'v7' into stable 2023-01-12 15:01:33 +01:00
.env.example
.gitattributes
.gitignore Recursively include plugins returned by getPluginPaths() 2023-07-08 22:14:49 +02:00
.gitmodules
.php-cs-fixer.dist.php Improve getInfo/getType, add wrapper methods 2023-07-04 19:48:23 +02:00
CHANGELOG.md Update changelog 2023-07-10 19:23:52 +02:00
CODE_OF_CONDUCT.md
composer.json Ban plugins from using file_get_contents, PDO, files 2023-07-09 16:55:08 +02:00
CONTRIBUTING.md
extracted.json Cleanup examples 2023-07-08 17:46:45 +02:00
LICENSE
phpcs.xml
phpunit.xml
psalm-baseline.xml Refactor public API 2023-01-27 14:20:47 +01:00
psalm.xml Misc psalm fixes 2023-01-28 16:39:03 +01:00
README.md Allow usage of getPlugin from IPC clients thanks to the PluginEventHandlerProxy 2023-07-10 19:21:22 +02:00
SECURITY.md Add security policy 2023-03-06 14:08:46 +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->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