| From | Sent On | Attachments |
|---|
| 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 | |
Refine Search
| From | Sent On | Attachments |
|---|---|---|
| Cody Fauser | Nov 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?
-- Cody Fauser http://shopify.com - e-commerce done right http://www.codyfauser.com - blog http://www.oreilly.com/catalog/rjsrails - RJS Templates for Rails

