Active Merchant - Krzysztof Jabłoński (PRUG 2.0)

9
ActiveMerchant Krzysztof Jablonski (Netguru)

Transcript of Active Merchant - Krzysztof Jabłoński (PRUG 2.0)

Page 1: Active Merchant - Krzysztof Jabłoński (PRUG 2.0)

ActiveMerchant Krzysztof Jablonski (Netguru)!

Page 2: Active Merchant - Krzysztof Jabłoński (PRUG 2.0)

What will I say

!   Short overview of online payments!

!   What is Activemerchant and how it can help us?!

!   Paypal developer account!

!   Simple rails example!

Page 3: Active Merchant - Krzysztof Jabłoński (PRUG 2.0)

Online payment providers

Page 4: Active Merchant - Krzysztof Jabłoński (PRUG 2.0)

What is it activemerchant?

!   Ruby library for dealing with credit cards and payment processors and shipping.!

!   Created in 2006!

!   67 direct payment providers and 11 offsite payment gateways!

Page 5: Active Merchant - Krzysztof Jabłoński (PRUG 2.0)

Structure of activmerchant

!   ActiveMerchant::Billing::Base.mode = :test // development.rb

!   ActiveMerchant::Billing::PaypalExpressGateway!

!   login!

!   password!

!   signature!

!   setup_purchase(money, {:return_url, :cancel_return_url})!

!   redirect_url_for(token)!

!   details_for(token)!

!   purchase(money, {:token, :payer_id})!

Page 6: Active Merchant - Krzysztof Jabłoński (PRUG 2.0)

Paypal developer account

! https://developer.paypal.com/!

Page 7: Active Merchant - Krzysztof Jabłoński (PRUG 2.0)

Paypal Test accounts

Page 8: Active Merchant - Krzysztof Jabłoński (PRUG 2.0)

Paypal Test accounts

Page 9: Active Merchant - Krzysztof Jabłoński (PRUG 2.0)

rails example

https://github.com/prug/prug2.0-activemerchant!