【问题标题】:Where to set credit card details returned from the payment gateway在哪里设置从支付网关返回的信用卡详细信息
【发布时间】:2026-02-09 15:20:03
【问题描述】:

我已经制定了基于重定向的自定义付款方式。

public function getOrderPlaceRedirectUrl()
{
    return Mage::getUrl('pay/index/redirect', array('_secure' => true));
}

在重定向操作中,我重定向到网关 url。

public function redirectAction() {
    $this->_redirectUrl("https://mygateway_url?parameter1=value1&parameter2=value2);
}

它正在使用用户的信用卡详细信息返回付款状态。我的问题是在哪里设置从网关服务返回的信用卡详细信息。

【问题讨论】:

    标签: php magento paypal


    【解决方案1】:

    这取决于支付网关,如果您的网站未使用 https,大多数支付网关不会提供卡详细信息,有关卡详细信息,您需要联系支付网关支持。

    【讨论】: