我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
。
请指导我?