atom feed1 message in com.googlegroups.activemerchantRe: [Active Merchant] Payflow Pro Int...
FromSent OnAttachments
Cody FauserNov 19, 2007 6:40 pm 
Subject:Re: [Active Merchant] Payflow Pro Integration
From:Cody Fauser (cody@gmail.com)
Date:Nov 19, 2007 6:40:10 pm
List:com.googlegroups.activemerchant

If you are using ActiveMerchant with Payflow Pro you don't even have to worry about that much. Following is an example of a purchase using the PayflowGateway in ActiveMerchant:

gateway = ActiveMerchant::Billing::PayflowGateway.new(login => 'l', :password => 'p')

credit_card = ActiveMerchant::Billing::CreditCard.new( :number => '5105105105105100', :month => '9', :year => '2007', :first_name => 'Longbob', :last_name => 'Longsen', :verification_value => '123', :type => 'master' )

# Make a $1 purchase (100 cents) response = gateway.purchase(100, credit_card) puts response.success? puts response.message

On 11/19/07, vncntj <vnc@hotmail.com> wrote:

In reading the documention for Payflow Pro Developer's Guide, can I create my own pages? Then at the credit card page, just encrypt the following fields:

HostAddress: HostPort: ParamList: TimeOut ProxyAddress: ProxyPort: Acct: Amt: Expdate: Name: Origid: Partner: Pwd: Tender: TrxType: User: Vendor:

And pass the to PayPal, and I'm finished. Is this correct?