1
0
mirror of https://github.com/danog/MadelineProto.git synced 2024-11-26 22:34:42 +01:00
Go to file
Alexander Pankratov e5ba4e93bd
Merge pull request #906 from danog/db_migration
Save old data after new session creation for same account.
2021-03-14 16:45:53 +03:00
.devcontainer Check output buffering level 2020-09-11 09:30:08 +02:00
.github Funding 2020-06-16 18:00:15 +02:00
docs@2afa14cd21 Fixes 2020-11-29 19:25:54 +01:00
examples Allow resuming streams on webhosts 2020-11-30 16:30:18 +01:00
legacy/danog/MadelineProto Clean up 2020-06-15 20:06:48 +02:00
schemas@d0b2b612cb Fixes 2020-11-29 19:25:54 +01:00
src Merge pull request #906 from danog/db_migration 2021-03-14 16:45:53 +03:00
tests PHPDOC 2020-10-13 10:03:35 +02:00
ton Update even more typehints 2020-10-03 15:04:35 +02:00
tools php8 fixes 2020-11-16 11:27:03 +01:00
.env.example Improve docs 2018-03-30 16:07:54 +00:00
.gitignore Remove duplicate entries from .gitignore 2021-03-01 01:32:00 +03:00
.gitmodules Allow git modules install without ssh key (#810) 2020-05-10 19:17:15 +02:00
.php_cs.dist Final fixes 2020-09-27 22:15:16 +02:00
.travis.yml Provide DNS fallback 2020-02-26 00:11:06 +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 PDO init 2021-02-28 00:48:26 +03:00
CONTRIBUTING.md Bugfixes 2017-02-13 13:27:59 +01:00
LICENSE Reorganized code 2016-08-08 18:10:13 +02:00
psalm.xml Clean up 2020-06-15 20:06:48 +02:00
README.md Update docs 2020-10-01 20:48:22 +02:00

MadelineProto, a PHP MTProto telegram client

Created by Daniil Gentili

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

Now with Telegram TON blockchain integration!

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(true);
$MadelineProto->loop(function () use ($MadelineProto) {
    yield $MadelineProto->start();

    $me = yield $MadelineProto->getSelf();

    $MadelineProto->logger($me);

    if (!$me['bot']) {
        yield $MadelineProto->messages->sendMessage(['peer' => '@danogentili', 'message' => "Hi!\nThanks for creating MadelineProto! <3"]);
        yield $MadelineProto->channels->joinChannel(['channel' => '@MadelineProto']);

        try {
            yield $MadelineProto->messages->importChatInvite(['hash' => 'https://t.me/joinchat/Bgrajz6K-aJKu0IpGsLpBg']);
        } catch (\danog\MadelineProto\RPCErrorException $e) {
            $MadelineProto->logger($e);
        }

        yield $MadelineProto->messages->sendMessage(['peer' => 'https://t.me/joinchat/Bgrajz6K-aJKu0IpGsLpBg', 'message' => 'Testing MadelineProto!']);
    }
    yield $MadelineProto->echo('OK, done!');
});

Try this code now! or run 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).

Examples

You can find examples for nearly every MadelineProto function in

  • magnaluna webradio - Multifeatured Telegram VoIP webradio
  • downloadRenameBot.php - download files by URL and rename Telegram files using this async parallelized bot!
  • bot.php - examples for sending normal messages, downloading any media
  • secret_bot.php - secret chat bot
  • pipesbot.php - examples for creating inline bots and using other inline bots via a userbot

Documentation