如何在浏览器中通过$ _GET方法而不是readline()使用以下代码
$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): '));
}
当我使用$ _GET时,会有很多问题 例如它发送代码几次或...