Ruby on rail中的工资支付集成



我正在使用paypal进行付款,这是用于付款的主要功能和参数。

def self.paypal_url(.....)
values = {
        :business => 'email@id.com',
        :cmd => '_cart',
        :upload => 1,
        :return => return_url,
        :invoice => "#{customer.id}_#{sType.id}_#{Time.now}",
        :notify_url => notify_url
    }
    values.merge!({
                      "amount_1" => amount,
                      "item_name_1" => sType.show_title,
                      "discount_amount_1" => discount
                      # "quantity_1" => '1'
                  })
    "https://www.paypal.com/cgi-bin/webscr?" + values.to_query
end

但是现在我想使用PayFlow.请指导我必须更改哪个参数以及付款的最终网址是什么"https://www.paypal.com/cgi-bin/webscr?" + values.to_query

请指导我?

有一个 Rails 的 payflow pro 示例,在 git 上托管页面:https://gist.github.com/supairish/5872581

该代码获取要在视图中的 iframe 中使用的令牌。

您可以在此处查看示例:https://developer.paypal.com/docs/classic/payflow/gs_ppa_hosted_pages/

我还发现这个资源很有帮助:如何使用托管页面测试与支付流网关的集成?www.paypal-knowledge.com/infocenter/index?page=content&widgetview=true&id=FAQ1493

相关内容

  • 没有找到相关文章

最新更新