Last active
May 16, 2020 17:13
-
-
Save DavidInnocent/0c0b7c342348fe5bc691d9124789b514 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
header("Content-Type:application/json"); | |
$shortcode='your shortcode'; | |
$consumerkey ="your consumer key"; | |
$consumersecret ="your secret"; | |
$validationurl="./validation.php?token=hahahahaha"; | |
$confirmationurl="./confirmation.php?token=hahahahahaha"; | |
$authenticationurl='https://sandbox.safaricom.co.ke/oauth/v1/generate?grant_type=client_credentials'; | |
$registerurl = 'https://sandbox.safaricom.co.ke/mpesa/c2b/v1/registerurl'; | |
$credentials= base64_encode($consumerkey.':'.$consumersecret); | |
$username=$consumerkey ; | |
$password=$consumersecret; | |
// Request headers | |
$headers = array( | |
'Content-Type: application/json; charset=utf-8' | |
); | |
// Request | |
$ch = curl_init($authenticationurl); | |
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers); | |
curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE); | |
curl_setopt($ch, CURLOPT_HEADER, FALSE); | |
curl_setopt($ch, CURLOPT_USERPWD, $username . ":" . $password); | |
$result = curl_exec($ch); | |
$status = curl_getinfo($ch, CURLINFO_HTTP_CODE); | |
$result = json_decode($result); | |
$access_token=$result->access_token; | |
curl_close($ch); | |
$curl = curl_init(); | |
curl_setopt($curl, CURLOPT_URL, $registerurl); | |
curl_setopt($curl, CURLOPT_HTTPHEADER, array('Content-Type:application/json','Authorization:Bearer '.$access_token)); | |
$curl_post_data = array( | |
//Fill in the request parameters with valid values | |
'ShortCode' => $shortcode, | |
'ResponseType' => 'Cancelled', | |
'ConfirmationURL' => $confirmationurl, | |
'ValidationURL' => $validationurl | |
); | |
$data_string = json_encode($curl_post_data); | |
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true); | |
curl_setopt($curl, CURLOPT_POST, true); | |
curl_setopt($curl, CURLOPT_POSTFIELDS, $data_string); | |
$curl_response = curl_exec($curl); | |
echo $curl_response; | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment