1.5 KiB
1.5 KiB
title | description | image |
---|---|---|
payments.validateRequestedInfo | Validate requested payment info | https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png |
Method: payments.validateRequestedInfo
Validate requested payment info
Parameters:
Name | Type | Description | Required |
---|---|---|---|
save | Bool | Save payment info? | Optional |
msg_id | int | The message ID | Yes |
info | PaymentRequestedInfo | The requested payment info | Yes |
Return type: payments_ValidatedRequestedInfo
Can bots use this method: NO
MadelineProto Example (now async for huge speed and parallelism!):
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();
$payments_ValidatedRequestedInfo = $MadelineProto->payments->validateRequestedInfo(['save' => Bool, 'msg_id' => int, 'info' => PaymentRequestedInfo, ]);
Or, if you're into Lua:
payments_ValidatedRequestedInfo = payments.validateRequestedInfo({save=Bool, msg_id=int, info=PaymentRequestedInfo, })
Errors this method can return:
Error | Description |
---|---|
MESSAGE_ID_INVALID | The provided message id is invalid |