Magento支付网关

时间:2013-11-22 19:42:52

标签: magento payment gateway

我正在看网络,并没有像我们的解决方案那样为magento找到任何东西。我们是一个支付网关,它接收信息,处理并返回OK / fail到页面。 (restul方法)。

有任何关于如何做的线索吗?我知道Magento是MVC,我对此很熟悉。在他们的网站上,他们教授如何创建仅在magento内授权的付款方式。我想发布到URL($ STOREID,$ AMOUNT,$ ORDERID)。处理完付款后,我会将状态退回Magento,交易将完成。

任何帮助将非常感谢。

问候,

蒂亚戈

1 个答案:

答案 0 :(得分:0)

更正确的方法 http://www.magentocommerce.com/api/rest/introduction.html

或创建一个新的控制器 无论你喜欢什么,都要命名,控制器应该是这样的:

 <?php
    class Namespace_Module_Brand_IndexController extends Mage_Core_Controller_Front_Action
    {
    public function indexAction()
    {
    $post = $this->getRequest()->getPost();
    $params = $this->getRequest()->getParams();

    $current_checkout = Mage::getSingleton('checkout/session');

    //do whatever you want based on the information provided
    //you might also want to know about:
    $this->_redirect('path/to/redirect');
    $this->_forward('path/to/action');   
    }

    }