#php #json #api
Вопрос:
Я пытаюсь проверить номер банковского счета клиента, используя API paystack, и возвращаю ответы в HTML. вот код.
<?PHP
//PAY STACK BANK LIST
$url = "https://api.paystack.co/bank";
$results = json_decode(file_get_contents($url), true);
foreach($results['data'] as $bank) {
$bank['code'] ."-".$bank['name'];
}
?>
Вот HTML — код
function checkSelect(b){
var mySelect = document.getElementById("mySelect");
var mySel = mySelect.options[mySelect.selectedIndex].value;
lookup(mySel);
}
xhttp.open("GET", "api_calls/acct_num_ver.php?bank_number=" str "amp;bank_code=" , true);
xhttp.send();
}
function lookup(mySel){
var numb1 = document.getElementById("numb").value;
var lkup = mySel;
var input1 = document.getElementById("numb").value;
var numb1 = input1 == "" ? "" : input1;
if(numb1.length==10){
xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
if (this.readyState == 4 amp;amp; this.status == 200) {
document.getElementById("dispayAccountName").innerHTML = this.responseText;
}
}
}
<form class="" action="" method="POST">
<div class="form-group">
<select name="bank_code" id="mySelect" onchange="checkSelect()">
<option disabled selected>Select Bank</option>
<?php foreach($results['data'] as $bank) {?>
<option value="<?php echo $bank['code']; ?>"><?php echo $bank['name']; ?></option>
<?php } ?>
</select>
</div>
<div class="form-group">
<input type="text" name="account_number" id="numb" onKeyUp="checkNumb()" value="<?php if(isset($re['data']['account_number'])) {echo $re['data']['account_number'];}else{ }?>" class="form-control" placeholder="Account Number" required="required">
</div>
<?php
if(isset($re['data']['account_name'])){
echo "<div class='form-group'>".$re['data']['account_name']."</div>";
}
?>
<p id="dispayAccountName"></p>
<div class="form-group text-center">
<input type="submit" name="verify-account" value="Save Account" class="btn btn-info">
</div>
</form>
Вот API для проверки номера учетной записи.
<?PHP
//include_once("../config/connect.php");
if(isset($_POST['verify-account'])){
$account_number = $_POST['account_number'];
$bank_code = $_POST['bank_code'];
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => "https://api.paystack.co/bank/resolve?account_number=$account_numberamp;bank_code=$bank_code",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => array(
"Authorization: Bearer sk_live_xxxxxxxxxSecretxxxKeyxxxxxxxxxx",
"Cache-Control: no-cache",
),
));
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
//echo $response;
$re = json_decode($response, true);
//UNABLE TO VERIFY ACCOUNT UNMBER THROW EXCEPTION $re['data'];
if(!Empty($re['data']['account_name'])){
$re['data']['account_name'];
//$re['data']['bank_id'];
//INSERTING DATA TO DATABASE
$insert = $conn->query("INSERT INTO $u_acct (some,data)
VALUES ('some,values')");
echo "Account Added";
}
}
?>
My main objective is to verify the users account number by using the account number and selected bank to get the account name. Thanks to your anticipated responded. without refreshing the page.