Questions tagged [activemerchant]

Active Merchant is an extraction from the e-commerce system Shopify

Active Merchant is an extraction from the e-commerce software solution . It provides a simple and unified API to access dozens of different payment gateways with very different internal APIs.


Documentation :

309 questions
0
votes
2 answers

ActiveMerchant's support for determining the account status (verified/unverified) of a PayPal Express Checkout customer/buyer

I am currently working on a Ruby-on-Rails web-application that accepts PayPal payments through PayPal's Express Checkout and ActiveMerchant. I have done several research on ActiveMerchant's support for determining if a customer/buyer has paid using…
ebcagadas
  • 71
  • 5
0
votes
1 answer

Force or require a payment type with Paypal api

Do I have to call paypal to setup a billing agreement if I only want to accept insant payments? I have a rails app that I am testing in sandbox with paypal express checkout. Looking at the paypal api, I have seen there's a way to do what I want…
daslicious
  • 1,535
  • 10
  • 18
0
votes
1 answer

Using activemerchant with PayPal Payments Advanced

I have a hosted web site built on Rails 2.3.14 and Ruby 1.8.7. In order to capture shipping info so I can compute shipping charge, I provide the form for shipping address and then use a credit card processor just to handle the actual credit card…
RussK
  • 199
  • 1
  • 17
0
votes
1 answer

Rspec factory_girl ActiveMerchant undefined method `credit_card='

I'm attempting to test the creation of an Reservation model that involves processing a payment with ActiveMerchant upon creation. The initial setup for payment processing involved following the ActiveMerchant Railscasts. Payments are working fine…
b2tech
  • 75
  • 1
  • 7
0
votes
1 answer

What credentials does ActiveMerchant need for a Rails project?

In my credit card processing file, I have: response = PaymentGateway.pay_pal.authorize( foreign_currency_amount_in_cents, credit_card, :email => email_address, :order_id => invoice_number, :description => item_id, :ip =>…
Shamoon
  • 41,293
  • 91
  • 306
  • 570
0
votes
0 answers

paypal immediate, chained payment

I have a an application for digital goods which makes use of paypal. I need to tackle the following scenario: A buyer (german paypal account) buys an item, the application itself (german paypal account) should receive a fee and another party …
dc10
  • 2,160
  • 6
  • 29
  • 46
0
votes
1 answer

Ruby on Rails activemerchant.rb require error even after installing activemerchant and mechanize (2.5.1)

Complete error: .rvm/gems/ruby-1.9.3-p194/gems/activemerchant-1.9.4/lib/active_merchant.rb:29:in `require': cannot load such file -- active_support/core_ext/class/inheritable_attributes (LoadError) Hi I am first time trying to use activemerchant.…
Sardar Faisal
  • 594
  • 5
  • 20
0
votes
1 answer

ActiveMerchant PaypalExpressGateway reference transaction

Is there a way to use ActiveMerchant's PaypalEpressGateway to bill for arbitrary amounts without sending the user back to Paypal every time? It looks like the reference_transaction method might support that using a billing agreement, but the…
tfwright
  • 2,844
  • 21
  • 37
0
votes
2 answers

errors(:base) << message leads undefined method `map' for nil:NilClass

I am trying to integrate ActiveMerchant into my website using Rails 3.2. Currently I have code to do general validation on a credit card using the ActiveMerchant "valid" function, which returns some error message if the card i not valid. If there…
Pan Wangperawong
  • 1,250
  • 2
  • 13
  • 29
0
votes
2 answers

NameError in OrdersController#create undefined local variable or method `line_items'

I am trying to create a checkout with active merchant. I am using Ryan Bates Active merchant tutorial/ and the Agile web development book. I get the following error, I'm not sure how to fix it to create a successful order. Any help is much…
Benamir
  • 1,107
  • 2
  • 11
  • 24
0
votes
1 answer

Not receiving paypal notifications through active merchant

I was working on an app in which I need to work with ipn, but it seems it does not work well. I am trying to get the notification in success action and have specified the correct url in paypal sandbox. def success topup =…
Dev R
  • 1,892
  • 1
  • 25
  • 38
0
votes
1 answer

checkout with paypal without login

I am trying to implement paypal express checkout using rails. I have read at lot of places that if one wants to do the checkout without paypal account by credit or debit card one can simply use SOLUTIONTYPE=Sole. It does not seem to work though and…
Dev R
  • 1,892
  • 1
  • 25
  • 38
0
votes
2 answers

Authorize.net CIM Active Merchant -- User authentication failed due to invalid authentication values

I have deployed my live app with working payment gateway but I still need somewhere to test so created a account with sandbox.authorize.net and got a new api key. Now when I try these details in development/staging I get - User authentication…
Alex
  • 6,205
  • 7
  • 43
  • 53
0
votes
1 answer

Paypal IPN on Rails app not being called

We are using Paypal Adaptive Chained payments to allow contributions on a crowd funding website. I've got everything working as far as making the payment and being returned to the 'return_url' after a successful payment (in the sandbox). Paypals…
Miriam H.
  • 671
  • 2
  • 8
  • 25
0
votes
1 answer

options for (Europe/ international) ruby on rails payment gateway 2012?

What are the options I have as ruby on rails coder to easily integrate a payment merchant into my application. A nice API or gem integration so its just "plug and play" without to much hassle and the below options. This would fit most small startups…
Rubytastic
  • 15,001
  • 18
  • 87
  • 175
1 2 3
20
21