1.4 KiB
1.4 KiB
title | description |
---|---|
payments.sendPaymentForm | payments.sendPaymentForm parameters, return type and example |
Method: payments.sendPaymentForm
Parameters:
Name | Type | Required |
---|---|---|
msg_id | int | Yes |
requested_info_id | string | Optional |
shipping_option_id | string | Optional |
credentials | InputPaymentCredentials | Yes |
Return type: payments_PaymentResult
Example:
$MadelineProto = new \danog\MadelineProto\API();
if (isset($token)) {
$this->bot_login($token);
}
if (isset($number)) {
$sentCode = $MadelineProto->phone_login($number);
echo 'Enter the code you received: ';
$code = '';
for ($x = 0; $x < $sentCode['type']['length']; $x++) {
$code .= fgetc(STDIN);
}
$MadelineProto->complete_phone_login($code);
}
$payments_PaymentResult = $MadelineProto->payments->sendPaymentForm(['msg_id' => int, 'requested_info_id' => string, 'shipping_option_id' => string, 'credentials' => InputPaymentCredentials, ]);
Or, if you're into Lua:
payments_PaymentResult = payments.sendPaymentForm({msg_id=int, requested_info_id=string, shipping_option_id=string, credentials=InputPaymentCredentials, })