1
0
mirror of https://github.com/danog/MadelineProto.git synced 2024-11-26 22:14:39 +01:00
Go to file
2023-09-05 18:10:12 +02:00
.github Create .github/dependabot.yml 2023-03-06 14:10:46 +01:00
.woodpecker Use 2.1.0 2023-09-01 16:34:32 +02:00
docs@355943bfe7 Begin connection refactoring 2023-09-03 19:05:22 +02:00
examples Fixes 2023-08-31 17:21:49 +02:00
langs Fixes 2023-08-18 21:15:09 +02:00
schemas@5ac5e7a012 Add missing schema 2023-09-01 15:31:26 +02:00
src Temporarily remove broken dependencies to fix DNS resolution 2023-09-05 18:10:12 +02:00
tests Speed up psalm 2023-09-01 17:14:30 +02:00
ton Fixes 2023-03-09 13:13:04 +01:00
tools Psalm fixes 2023-08-31 18:02:11 +02:00
vendor-bin/check Performance improvements 2023-08-27 10:46:42 +02:00
.env.example Improve docs 2018-03-30 16:07:54 +00:00
.gitattributes Ignore unneeded files 2023-08-20 23:45:30 +02:00
.gitignore Cleanup changelog 2023-07-15 16:34:54 +02:00
.gitmodules Update submodule 2021-09-05 21:06:36 +02:00
.php-cs-fixer.dist.php Improve getInfo/getType, add wrapper methods 2023-07-04 19:48:23 +02:00
CHANGELOG.md Ignore unneeded files 2023-08-20 23:45:30 +02:00
CODE_OF_CONDUCT.md Clean up 2019-10-28 22:39:23 +01:00
composer.json Temporarily remove broken dependencies to fix DNS resolution 2023-09-05 18:10:12 +02:00
CONTRIBUTING.md Bugfixes 2017-02-13 13:27:59 +01:00
extracted.json Cleanup examples 2023-07-08 17:46:45 +02: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 Fix logout in case of session termination 2023-08-06 16:29:29 +02:00
psalm-baseline.xml Temporarily remove broken dependencies to fix DNS resolution 2023-09-05 18:10:12 +02:00
psalm.xml Always run updateSettings if settings are passed to constructor 2023-08-27 11:04:18 +02:00
README.md Update docs 2023-09-05 15:43:18 +02:00
SECURITY.md Refactor VoIP API 2023-08-12 17:45:25 +02:00

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

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!

Documentation