mirror of
https://github.com/danog/MadelineProto.git
synced 2025-01-22 01:31:11 +01:00
55 lines
2.2 KiB
PHP
Executable File
55 lines
2.2 KiB
PHP
Executable File
#!/usr/bin/env php
|
|
<?php
|
|
/*
|
|
Copyright 2016 Daniil Gentili
|
|
(https://daniil.it)
|
|
This file is part of MadelineProto.
|
|
MadelineProto is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
|
|
MadelineProto is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
See the GNU Affero General Public License for more details.
|
|
You should have received a copy of the GNU General Public License along with MadelineProto.
|
|
If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
require_once 'vendor/autoload.php';
|
|
|
|
$MadelineProto = new \danog\MadelineProto\API();
|
|
/*if (file_exists('number.php')) {
|
|
include_once 'number.php';
|
|
$sentCode = $MadelineProto->auth->sendCode(
|
|
[
|
|
'phone_number' => $number,
|
|
'sms_type' => 5,
|
|
'api_id' => $MadelineProto->API->settings['app_info']['api_id'],
|
|
'api_hash' => $MadelineProto->API->settings['app_info']['api_hash'],
|
|
'lang_code' => $MadelineProto->API->settings['app_info']['lang_code'],
|
|
]
|
|
);
|
|
var_dump($sentCode);
|
|
echo 'Enter the code you received: ';
|
|
$code = '';
|
|
for ($x = 0; $x < $sentCode['type']['length']; $x++) {
|
|
$code .= fgetc(STDIN);
|
|
}
|
|
$authorization = $MadelineProto->auth->signIn(
|
|
[
|
|
'phone_number' => $number,
|
|
'phone_code_hash' => $sentCode['phone_code_hash'],
|
|
'phone_code' => $code,
|
|
]
|
|
);
|
|
var_dump($authorization);
|
|
}*/
|
|
if (file_exists('token.php')) {
|
|
include_once 'token.php';
|
|
$botauthorization = $MadelineProto->auth->importBotAuthorization(
|
|
[
|
|
'bot_auth_token' => $token,
|
|
'api_id' => $MadelineProto->API->settings['app_info']['api_id'],
|
|
'api_hash' => $MadelineProto->API->settings['app_info']['api_hash'],
|
|
]
|
|
);
|
|
var_dump($botauthorization);
|
|
}
|
|
echo 'Size of MadelineProto instance is '.strlen(var_export($MadelineProto, true)).' bytes'.PHP_EOL;
|