1
0
mirror of https://github.com/danog/MadelineProto.git synced 2024-11-26 19:24:42 +01:00
Go to file
2024-05-18 21:35:14 +02:00
.github Bump 2023-12-07 19:12:28 +01:00
.woodpecker Psalm fixes 2024-04-15 22:03:06 +02:00
docs@7fc41dd573 Add inflight request gauge 2024-05-16 20:00:42 +02:00
examples Finalize prometheus settings 2024-05-15 22:17:03 +02:00
langs Bump 2024-04-11 21:03:36 +02:00
schemas@da7d066eee Add inflight request gauge 2024-05-16 20:00:42 +02:00
src Fix: timeout for outgoing messages & possible fatal error for media downloads 2024-05-18 21:35:14 +02:00
tests Fix upload callbacks in the send* methods, fix issue with plugins in a phar 2024-04-23 15:28:38 +02:00
ton
tools Fix entities in polls & composer installation reporting 2024-04-28 16:57:30 +02:00
vendor-bin Cleanup 2024-04-15 21:53:01 +02: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 Move to external project 2024-02-13 22:11:19 +01:00
.php-cs-fixer.dist.php Refactor 2024-03-10 15:48:55 +01:00
CHANGELOG.md
CODE_OF_CONDUCT.md
composer.json Bump deps 2024-05-15 22:46:15 +02:00
CONTRIBUTING.md
extracted.json Bump 2024-03-08 13:19:15 +01: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 Add inflight request gauge 2024-05-16 20:00:42 +02:00
psalm.xml Small psalm fix 2024-04-18 20:01:26 +02:00
README.md Extract DialogId into separate library 2024-05-10 14:26:50 +02:00
SECURITY.md

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!

Some of MadelineProto's core components are also available as separate, standalone libraries:

Documentation