-
Notifications
You must be signed in to change notification settings - Fork 67
/
validation_url.php
28 lines (20 loc) · 980 Bytes
/
validation_url.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?php
header("Content-Type: application/json");
$response = '{ "ResultCode": 0, "ResultDesc": "Confirmation Received Successfully" }';
// Save the M-PESA input stream.
$mpesaResponse = file_get_contents('php://input');
/* If we have any validation, we will do it here then change the $response if we reject the transaction */
// Your Validation
// $response = '{ "ResultCode": 1, "ResultDesc": "Transaction Rejected." }';
/* Ofcourse we will be checking for amount, account number(incase of paybill), invoice number and inventory.
But we reserve this for future tutorials*/
// log the response
$logFile = "validationResponse.txt";
// will be used when we want to save the response to database for our reference
$jsonMpesaResponse = json_decode($mpesaResponse, true);
// write the M-PESA Response to file
$log = fopen($logFile, "a");
fwrite($log, $mpesaResponse);
fclose($log);
echo $response;
?>