Hello Guys我有问题。如果我想通过手机支付,我无法找到关于如何编码支付界面的良好文档。继承人的情景 客户将商品添加到购物车 客户选择通过移动支付选项 客户遵循指示 将现金发送到商店号码 客户输入在网站上收到的代码 付款已确认
我已完成PHP脚本,但我无法将其转换为cs购物车结构
Heres the Script
<?php
set_include_path("../mall/include:" get_include_path());
require_once("PLUSPEOPLE/autoload.php");
$pesa=new PLUSPEOPLE\PesaPi\PesaPi();
if (isset($_POST["receipt"]){
$transactions=$pesa->locateByReceipt($_POST["receipt"]);
if(count($transactions)>0){
echo"Pay Recieved";
?>
<?php }
else{
?>
<html>
<head></head>
<body>
Pay not recieved Re Enter the Transaction Receipt<br>
<form method="post" action="buy.php">
<input type="text" name="receipt" value="">
<input type="submit" name="ok" value="Send Receipt">
</form>
</body>
</html>
<?php
} else{
?>
<html>
<head></head>
<body>
Please Pay this Amount<br>
<form method="post" action="buy.php">
<input type="text" name="receipt" value="">
<input type="submit" name="ok" value="Send Receipt">
</form>
</body>
</html>
<?php
}
}
?>
请帮助
答案 0 :(得分:0)
你可以在这里找到一些有限的文档:http://kb.cs-cart.com/new-payment(但你是对的,没有太多的信息)
最好的方法是查看已经存在的不同集成(app / payments文件夹中有很多)并找到一个类似的(即使用REST API或SOAP API)。
看看你的例子虽然看起来它可能会以稍微不同的方式运作 - 通常你会有一个托管页面来完成验证付款的工作然后只会告诉你的CS-Cart商店付款是成功的。您的支付提供商是否提供此服务或者有其他商店的例子?