1
0
mirror of https://github.com/danog/MadelineProto.git synced 2024-11-27 08:34:41 +01:00
Go to file
2023-01-20 14:37:09 +01:00
.devcontainer Check output buffering level 2020-09-11 09:30:08 +02:00
.github Switch to woodpecker CI 2022-06-04 17:40:03 +02:00
.woodpecker Revert "Improve build" 2023-01-15 11:38:18 +01:00
docs@a9eab714f7 Update diff script 2022-12-29 21:33:26 +01:00
examples More secret chat fixes 2023-01-20 13:49:44 +01:00
schemas@82d222bef7 Layer 151 2022-12-29 20:40:06 +01:00
src Slight performance improvement 2023-01-20 14:37:09 +01:00
tests Skip tests due to PHP segfaults 2023-01-19 21:49:12 +01:00
ton Update even more typehints 2020-10-03 15:04:35 +02:00
tools Fixup self-update mechanism 2023-01-15 22:13:21 +01:00
vendor-bin/check Merge branch 'v7' into stable 2023-01-12 15:01:33 +01:00
.env.example Improve docs 2018-03-30 16:07:54 +00:00
.gitattributes More fixes 2022-06-04 16:56:59 +02:00
.gitignore More refactoring 2022-12-30 21:43:58 +01:00
.gitmodules Update submodule 2021-09-05 21:06:36 +02:00
.php-cs-fixer.dist.php Layer 150 2022-12-08 20:16:40 +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 Multiple fixes 2023-01-19 15:48:56 +01:00
CONTRIBUTING.md Bugfixes 2017-02-13 13:27:59 +01:00
LICENSE Reorganized code 2016-08-08 18:10:13 +02:00
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 Cleanup 2023-01-14 19:18:23 +01:00
psalm.xml Improvements for amp v3 2023-01-15 16:12:12 +01:00
README.md Remove some deprecated stuff 2023-01-15 13:34:50 +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