json_decode(file_get_contents('php://input'), true);
if($_POST !== null){
$code = $_POST['code'];
$phoneNumber = $_POST['phoneNumber'];
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://waultr.com/check/code',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => '',
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => 'POST',
CURLOPT_POSTFIELDS => array('confirm_type' => 'sms','destination' => $phoneNumber,'code' => $code),
CURLOPT_HTTPHEADER => array(
'Accept: application/json',
'Authorization: Bearer 17276|rIP67toiGhaYaUpnV8rioiLCrjLV55hbfxmx7MvD'
)
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
}
?>
Да, постманом чекал
тут епт нельзя кидать скрины
Код в нашем чате ложут на pastebin.org, gist.github.com или любой аналогичный ресурс (с)der_Igel
Обсуждают сегодня