Async PHP client/server API for the telegram MTProto protocol https://docs.madelineproto.xyz
Go to file
Daniil Gentili 34f7047d73 Improve docs 2018-03-30 16:07:54 +00:00
.vscode Fixed serialization/deserialization, now fixing mess in prime number generation module... 2016-07-18 17:11:37 +02:00
docs Improve docs 2018-03-30 16:07:54 +00:00
fuzz Added request_call function (EARLY ALPHA, WILL ONLY REQUEST A CALL ATM) 2017-03-12 04:15:51 +01:00
lua Implement socket interface 2018-03-04 17:42:48 +01:00
old_docs Improve docs 2018-03-27 14:41:50 +02:00
src PHP 5 fixes 2018-03-30 09:27:21 +00:00
tests Improve examples 2018-03-29 11:53:27 +00:00
userbots Implement socket interface 2018-03-04 17:42:48 +01:00
.babelrc Localization (#195) 2017-10-01 18:37:24 +02:00
.env.calls Added support for 32 bit systems, imimplemented threading. 2017-03-24 21:01:08 +01:00
.env.example Improve docs 2018-03-30 16:07:54 +00:00
.gitignore Start implementing socket API 2018-03-03 18:23:12 +01:00
.travis.yml Fixes for micro http-client (phar_release) 2018-02-22 14:26:57 +00: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
CONTRIBUTING.md Bugfixes 2017-02-13 13:27:59 +01:00
LICENSE Reorganized code 2016-08-08 18:10:13 +02:00
README.md Improvements to web UI 2018-03-23 18:23:28 +01:00
bot.php Improve examples 2018-03-29 11:53:27 +00:00
build_docs.php Improved logging 2018-03-02 00:38:10 +00:00
build_docs_index.php Apply fixes from StyleCI 2018-03-23 15:39:58 +00:00
composer.json Support altervista.org out of the box 2018-03-21 20:29:20 +00:00
index.php Apply fixes from StyleCI 2018-03-23 15:39:58 +00:00
input.raw Try to avoid serialization issues 2017-07-24 13:43:09 +02:00
magna.php Apply fixes from StyleCI 2018-03-30 16:03:16 +00:00
makephar.php Implemented web UI for my.telegram.org and bugfix 2018-03-22 19:50:57 +00:00
multiprocess_bot.php Improve docs 2018-03-30 16:07:54 +00:00
phar.php Improve phar self-update mechanism 2018-03-01 13:28:16 +01:00
phartesting.php Implement socket interface 2018-03-04 17:42:48 +01:00
secret_bot.php Improve docs 2018-03-30 16:07:54 +00:00
socket.php Update PrimeModule dependency and finish writing socket interface 2018-03-21 11:59:56 +01:00
songs.php Calling count() only once, before using 'for' loop (#313) 2018-02-25 13:34:40 +01:00
translator.php Apply fixes from StyleCI 2018-03-23 15:39:58 +00:00

README.md

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