2018-03-13 14:30:47 +00:00
2018-03-04 17:42:48 +01:00
2018-03-08 11:34:43 +00:00
2018-03-13 14:30:47 +00:00
2018-03-12 21:11:18 +00:00
2018-03-04 17:42:48 +01:00
2017-10-01 18:37:24 +02:00
2017-09-24 22:26:06 +00:00
2018-03-03 18:23:12 +01:00
2018-03-02 00:38:10 +00:00
2017-06-03 16:40:14 +02:00
2017-02-13 13:27:59 +01:00
2017-07-24 13:43:09 +02:00
2016-08-08 18:10:13 +02:00
2018-03-02 00:38:10 +00:00
2018-03-08 12:11:58 +00:00
2018-03-01 13:28:16 +01:00
2018-03-04 17:42:48 +01:00
2018-03-02 00:38:10 +00:00

MadelineProto, a PHP MTProto telegram client

Do join the official channel, @MadelineProto!

What's this?

This library can be used to easily interact with Telegram without the bot API, just like the official apps.

Installation

Simply download madeline.php.

Getting started

<?php

include 'madeline.php';

// !!! This API id/API hash combination will not work !!!
// !!! You must get your own @ my.telegram.org !!!
$api_id = 0;
$api_hash = '';

$MadelineProto = new \danog\MadelineProto\API('session.madeline', ['app_info' => ['api_id' => $api_id, 'api_hash' => $api_hash]]);

$MadelineProto->phone_login(readline('Enter your phone number: '));
$authorization = $MadelineProto->complete_phone_login(readline('Enter the phone code: '));
if ($authorization['_'] === 'account.password') {
    $authorization = $MadelineProto->complete_2fa_login(readline('Please enter your password (hint '.$authorization['hint'].'): '));
}
if ($authorization['_'] === 'account.needSignup') {
    $authorization = $MadelineProto->complete_signup(readline('Please enter your first name: '), readline('Please enter your last name (can be empty): '));
}
    

Simple example

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

Documentation

Very complex and complete examples

You can find examples for nearly every MadelineProto function in

Description
Async PHP client/server API for the telegram MTProto protocol
https://docs.madelineproto.xyz
Readme 52 MiB
Languages
PHP 92.5%
Type Language 6.5%
Shell 0.9%
Dockerfile 0.1%