1
0
mirror of https://github.com/danog/MadelineProto.git synced 2024-11-27 00:34:40 +01:00
Go to file
2023-03-17 11:30:40 +01:00
.devcontainer Check output buffering level 2020-09-11 09:30:08 +02:00
.github Create .github/dependabot.yml 2023-03-06 14:10:46 +01:00
.woodpecker Revert "Improve build" 2023-01-15 11:38:18 +01:00
docs@846f4a0374 Properly handle execution time limits (fixes "Must call resume() or throw() before calling suspend() again" errors) 2023-02-07 19:19:50 +01:00
examples Refactor public API 2023-01-27 14:20:47 +01:00
schemas@82d222bef7 Layer 151 2022-12-29 20:40:06 +01:00
src Fixup 2023-03-17 11:30:40 +01:00
tests Don't skip tests anymore, PHP 8.2.4 doesn't segfault 2023-03-17 11:24:22 +01:00
ton Fixes 2023-03-09 13:13:04 +01:00
tools Fixes 2023-03-09 13:13:04 +01:00
vendor-bin/check Merge branch 'v7' into stable 2023-01-12 15:01:33 +01:00
.env.example
.gitattributes More fixes 2022-06-04 16:56:59 +02:00
.gitignore Refactor public API 2023-01-27 14:20:47 +01:00
.gitmodules Update submodule 2021-09-05 21:06:36 +02:00
.php-cs-fixer.dist.php cs-fix 2023-01-26 19:57:50 +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 Fix getPwrChat 2023-02-14 19:48:03 +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-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 Fixes 2023-03-09 13:13:04 +01: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 🇺🇦

status-badge

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