2013-11-22 181 views
-1

我在網上看,沒有找到像我們的解決方案magento的東西。我們是一個支付網關,它接收信息,處理並返回確定/失敗的頁面。 (restul方法)。Magento支付網關

是否有任何線索如何做到這一點?我知道Magento是MVC,我對此很熟悉。在他們的網站上,他們教授如何創建一種僅從magento授權的付款方式。我想發佈到URL($ STOREID,$ AMOUNT,$ ORDERID)。在處理付款後,我會將狀態返回給Magento,交易將完成。

任何幫助將不勝感激。

問候,

蒂亞戈

回答

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'); 
    } 

    } 
+0

Tks哥們!我會嘗試。 –