Async PHP client/server API for the telegram MTProto protocol https://docs.madelineproto.xyz
Go to file
2019-03-08 14:16:57 +01:00
docs@9e83df1629 Update translation 2019-03-08 14:16:57 +01:00
lua Clean up API ID references 2018-05-08 19:08:09 +00:00
src Update translation 2019-03-08 14:16:57 +01:00
tests Comment out testing.php string 2018-12-28 18:12:26 +01:00
userbots Adapt examples to madeline.php 2018-10-13 15:16:10 +00:00
.babelrc Localization (#195) 2017-10-01 18:37:24 +02:00
.env.example Improve docs 2018-03-30 16:07:54 +00:00
.gitignore Merge alpha into master (async, huge bugfixes and more) (#546) 2018-12-26 20:51:14 +01:00
.gitmodules Update docs 2018-04-01 13:33:36 +02:00
.travis.yml Fixes for micro http-client (phar_release) 2018-02-22 14:26:57 +00:00
bot.php Bugfix 2018-12-31 13:09:46 +00:00
build_docs_index.php Apply fixes from StyleCI 2018-04-11 12:18:45 +00:00
build_docs.php Update to layer 95 2019-03-08 13:44:57 +01:00
CHANGELOG.md You can now proxy MadelineProto 2017-06-03 16:40:14 +02:00
CODE_OF_CONDUCT.md Create CODE_OF_CONDUCT.md (#167) 2017-08-07 09:17:47 +02:00
combined_bot.php Merge alpha into master (async, huge bugfixes and more) (#546) 2018-12-26 20:51:14 +01:00
composer.json fix deps 2019-02-06 20:23:38 +01:00
CONTRIBUTING.md Bugfixes 2017-02-13 13:27:59 +01:00
index.php Clean up API ID references 2018-05-08 19:08:09 +00:00
input.raw Try to avoid serialization issues 2017-07-24 13:43:09 +02:00
LICENSE Reorganized code 2016-08-08 18:10:13 +02:00
magna.php Merge alpha into master (async, huge bugfixes and more) (#546) 2018-12-26 20:51:14 +01:00
makephar.php Merge alpha into master (async, huge bugfixes and more) (#546) 2018-12-26 20:51:14 +01:00
mtproxyd Cache avoidance 2018-05-10 10:37:39 +00:00
multiprocess_bot.php Improve docs 2018-03-30 16:07:54 +00:00
phar.php Use branch master if release is manually set to an empty string 2018-12-28 13:02:00 +01:00
phartesting.php Implement socket interface 2018-03-04 17:42:48 +01:00
README.md Update docs 2018-08-30 20:02:23 +02:00
secret_bot.php Improve docs 2018-03-30 16:07:54 +00:00
songs.php Merge alpha into master (async, huge bugfixes and more) (#546) 2018-12-26 20:51:14 +01:00
translator.php Update translation 2019-03-08 14:16:57 +01:00

MadelineProto, a PHP MTProto telegram client

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

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!).

Getting started

<?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->start();

$me = $MadelineProto->get_self();

\danog\MadelineProto\Logger::log($me);

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

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

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

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).

Documentation

Very complex and complete examples

You can find examples for nearly every MadelineProto function in