自从Safaricom将 M-Pesa API 发布为可通过其开发人员门户访问的 RESTful API以来,我们可以算出三年多了。他们的Github 存储库有一个使用“ Lipa na M-Pesa Online ”API 的示例 android 应用程序。此 API 代表应用程序用户发起 M-Pesa 交易,用户只需输入其 M-Pesa PIN 即可完成交易。
public STKPushService mpesaService() {
return getRestAdapter().create(STKPushService.class);
}
现在他们的 AirtelMoney 是类似的,因为我有客户希望在他们的应用程序中拥有我们在肯尼亚拥有的所有移动货币支付。担心他们比其他 api 更多的是 Mpesa 吗?我正在寻找一种将 airtel money 加入我的应用程序的方法,就像我们在 Mpesa 上所做的那样,因为我们已经有支持 airtel money 的应用程序
发布https://sandbox.safaricom.co.ke/mpesa/stkpush/v1/processrequest
有没有人尝试过这个AirtelMoneyLib,我看到它最后一次更新是在 3 年前。
<?php
/**
*
*/
require_once('config/Constant.php');
require_once('lib/AirtelMoney.php');
$airtelclient=new AirtelMoney;
//Call the processing function with parameters as shown
//You can do a retrieval of data from a request at this point
//Not advisable to pass the username and password in request. Rather use an environment variable for the same
/**
* $Username=$_POST['username'];
* $password=$_POST['password'];
* $msisdn=$_POST['msisdn'];
* $referenceId=$_POST['referenceId'];
* $timeFrom=$_POST['timeFrom'];
* $timeTo=$_POST['timeTo'];
*/
$referenceId="1601056579194";
$timeTo="";
$timeFrom="";
$airtelclient->processMerchantQuery(USERNAME,PASSWORD,$referenceId,MSISDN,REQUEST1,$timeTo,$timeFrom);
?>
我需要知道一些让我在http request
发送 a 时很难获得反馈的事情。最近的谷歌搜索拉出了名为LIPISHA的新
API ,现在在github上有点开源