if переменная баланса >= переменной стоимости:
bot.send_message()
else:
bot.send_message()
<?php
$amount = ($_GET['amount']);
$login = ($_GET['log']);
$pass = ($_GET['pss']);
$contact = ($_GET['cont']);
$apr = ($_GET['apr']);
$price = ($_GET['price']);
$billid = uniqid()."-".uniqid()."-".uniqid();
$data = $login."-^--".$pass."-^--".$contact."-^--".$apr."-^--".$price;
$endata = base64_encode($data);
$succurl = "http://site.ru/payed.php?dtn=".$endata;
header("Location: https://oplata.qiwi.com/create?publicKey=".$publicKey."&amount=".$amount."&billid=".$billid."&successUrl=".$succurl);
$jwt = "jwt";
$url = "https://api.lava.ru/invoice/create";
$data = [
'wallet_to' => 'R40510054',
'sum' => 10.00,
'success_url' => 'https://lava.ru/success',
'fail_url' => 'https://lava.ru/fail',
];
$headers = [
"Authorization: ".$jwt,
];
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HEADER, false);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
$response = json_decode(curl_exec($ch),true);
curl_close($ch);
Тут в конце чего-то не хватает, как я понимаю переадресации на ссылку оплаты, которая лежит в в результате запроса.
Вот вопрос конкретно в том, как мне сделать эту переадресацию или я не туда иду ?