compropago在ecshop,OpenCart,Magento,shopnc在线支付接口,支付插件(含源码)payment plugin

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了compropago在ecshop,OpenCart,Magento,shopnc在线支付接口,支付插件(含源码)payment plugin相关的知识,希望对你有一定的参考价值。

Recently I developed a payment plugin(compropago) for echsop platform.Of course,It can be used for other E-Commerce Platform
(OpenCart,Magento,WooCommerce,PrestaShop,WHMOS,ShopNC,Etc..).
you can integrate this payment plugin into your E-Commerce Platform.
If you need my help,contact me with E-mail:[email protected] or QQ:804752009

最近应一个客户的要求,给他的一个ecshop商城开发compropago支付在线支付接口。
这个接口是国外一个公司开发的,在国外有一些市场占有率。本身支持OpenCart,Magento,WooCommerce,PrestaShop,WHMOS等多种电商平台。
应该是比较成熟的支付插件了。

 


public function placeOrder(PlaceOrderInfo $neworder)
{
$params = [
‘order_id‘ => $neworder->order_id,
‘order_name‘ => $neworder->order_name,
‘order_price‘ => $neworder->order_price,
‘customer_name‘ => $neworder->customer_name,
‘customer_email‘ => $neworder->customer_email,
‘payment_type‘ => $neworder->payment_type,
‘currency‘ => $neworder->currency,
‘image_url‘ => $neworder->image_url,
‘app_client_name‘ => $neworder->app_client_name,
‘app_client_version‘ => $neworder->app_client_version
];

$response = Request::post(
$this->client->deployUri.‘charges/‘,
$params,
[‘user‘ => $this->client->getUser(), ‘pass‘ => $this->client->getPass()]
);

return Factory::getInstanceOf(‘NewOrderInfo‘, $response);
}

以上是部分代码。

 

 

还有其他接口:
银盛支付接口:
http://www.0475seo.com/tech/2dev/287.html
彩虹支付接口
http://www.0475seo.com/tech/cms/285.html
国付宝支付接口:
http://www.0475seo.com/tech/cms/289.html

更多接口来自:
http://www.0475seo.com/s/onlinepay/

大家如果有需要开发这个接口的可以用QQ跟我交流:捌零肆柒伍贰零零玖(804752009) 注明支付接口。

 

































以上是关于compropago在ecshop,OpenCart,Magento,shopnc在线支付接口,支付插件(含源码)payment plugin的主要内容,如果未能解决你的问题,请参考以下文章

如何在ecshop程序当中自定义常量标签

ecshop模版商城用ecshop助理上传淘宝数据包,怎么没有图片啊 ? 求解!

ecshop商城出现此问题怎么解决?求解!

ecshop在dwt模板中和lbi中输入数组详情的方法 ecshop模板中输出数组的方法

怎么安装ecshop免费模板

ecshop怎么让分类页显示当前顶级分类的所有子分类?