1
0
mirror of https://github.com/danog/MadelineProto.git synced 2024-11-26 23:34:44 +01:00
Go to file
2024-01-20 19:07:36 +01:00
.github Bump 2023-12-07 19:12:28 +01:00
.woodpecker Revert "Bump" 2024-01-09 18:08:55 +01:00
docs@3c3ad49645 Reuse same filtering logic 2024-01-20 19:07:36 +01:00
examples Bump minimum versions 2024-01-08 19:26:40 +01:00
langs Update localization 2024-01-07 17:17:59 +01:00
schemas@4f3d0c94f2 Update layer 172 2024-01-19 20:39:59 +01:00
src Reuse same filtering logic 2024-01-20 19:07:36 +01:00
tests Re-enable FFI 2024-01-07 16:43:28 +01:00
ton Fixes 2023-03-09 13:13:04 +01:00
tools Update layer 172 2024-01-19 20:39:59 +01:00
vendor-bin Improve tests 2023-11-30 17:44:10 +01:00
.env.example
.gitattributes Move around files 2023-12-24 15:15:09 +01:00
.gitignore Cleanup changelog 2023-07-15 16:34:54 +02:00
.gitmodules Update submodule 2021-09-05 21:06:36 +02:00
.php-cs-fixer.dist.php Fixes 2023-11-11 16:55:29 +01:00
CHANGELOG.md Ignore unneeded files 2023-08-20 23:45:30 +02:00
CODE_OF_CONDUCT.md Clean up 2019-10-28 22:39:23 +01:00
composer.json Update layer 172 2024-01-19 20:39:59 +01:00
CONTRIBUTING.md
extracted.json Update 2023-09-06 18:57:38 +02:00
LICENSE
phpcs.xml More refactoring 2022-12-30 21:43:58 +01:00
phpunit-light.xml Further improve tests 2023-11-30 17:58:48 +01:00
phpunit.xml Fixup 2023-11-30 18:20:24 +01:00
psalm-baseline.xml Update baseline 2024-01-17 16:26:16 +01:00
psalm.xml Bump 2024-01-19 20:56:02 +01:00
README.md Update layer 172 2024-01-19 20:39:59 +01:00
SECURITY.md Refactor VoIP API 2023-08-12 17:45:25 +02: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

// PHP 8.2+ is required.

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!

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

Documentation