Tagged Questions
Active Merchant is an extraction from the e-commerce system Shopify that provides a simple and unified API to access dozens of different payment gateways with very different internal APIs.
7
votes
8answers
4k views
Paypal, Recurring Billing, and ActiveMerchant
I'm trying to research how to add a subscription based pay model on an existing site of mine, but am running into a lot of conflicting information and caused me to be a bit lost.
All I need is a very ...
6
votes
2answers
1k views
What payment processing frameworks, like ActiveMerchant, are available for other languages?
Rails has frameworks such as ActiveMerchant and Freemium (which uses ActiveMerchant) to simplify dealing with payment processing. What other frameworks are there for other programming languages such ...
4
votes
2answers
255 views
how to implement a payment system in rails
I am new to the rails world and am in the process of setting up a small rails app for a client. One of the requirements is that the user enters their credit card which gets charged for a specified ...
4
votes
4answers
1k views
Customizing Paypal Express's Review Page using ActiveMerchant
I am using ActiveMerchant to give my rails app access to Paypal's Express Checkout.
I would like to include the Order Details on the Review Page as described here: ...
3
votes
2answers
245 views
Active Merchant - uninitialized constant ActiveSupport::XmlMini_REXML::StringIO
I have activemerchant 1.16.0 and rails 3.0.5.
I am trying to build a basic code to communicate with PayPal's gateway using active merchant.
if credit_card.valid?
# or gateway.purchase to do both ...
3
votes
3answers
431 views
What can I store locally while still being PCI Compliant using Braintree in Rails?
What credit card information am I allowed to store while still being PCI compliant if I am relying on braintree for payment processing?
The reason I am asking is because, as a simple optimization, if ...
3
votes
1answer
197 views
How do I automatically pay users using paypal in my rails app?
Hey all, I'm trying to write a marketplace style application. Maybe E-Bay style in which the app connects buyers / sellers and then takes some commission.
I cannot use Amazon FPS as I don't have a ...
3
votes
1answer
877 views
Is it possible to do credit card payments from a heroku server using activemerchant?
I'm building an app that needs to accept credit card payments with something like active merchant. In terms of security, is it possible for it to live on heroku and use authorize.net (or similar) as ...
3
votes
1answer
953 views
Active merchant and Paypal API for recurring payment
I have few questions on paypal's recurring payments, I went trough the paypal documentation to find some answers but, it didn't help me much.
Here are the stuffs that I need to know, hope someone can ...
3
votes
1answer
966 views
ActiveMerchant Integration usage example?
Where can I find a complete example of ActiveMerchant Integrations usage? I can see tons of examples of Gateways' usage, but couldn't see how an Integration should be used (e.g. what do you do in the ...
3
votes
1answer
478 views
Is there an ActiveMerchant for Sinatra?
What payment gateway library works with Sinatra if you're looking to add ecommerce functionality to your app?
3
votes
1answer
948 views
How to void authorized transaction in authorize.net gateway using ActiveMerchant
Goal: Only have successful purchases show up on a customer's billing statement. I don't want declined authorizations showing up on their billing statement (as seen in an online banking system) as ...
3
votes
2answers
1k views
10001 Internal Error when trying to capture an authorization from PayPal with Activemerchant
I've successfully made authorized a card, and it shows up in my sandbox transaction log. When I try to capture using that authorization (with activemerchant, which uses SOAP), this is the XML it ...
3
votes
2answers
2k views
What is the best payment gateway to use with ActiveMerchant?
I need to set up a payment solution within one of our Rails apps using the ActiveMerchant library. Although this question is highly subjective, what are people experiences with the major gateways out ...
3
votes
3answers
2k views
If you use Google Checkout, do you still need to use ActiveMerchant/Spree/some payment gateway in Rails?
If you use Google Checkout, do you still need to use ActiveMerchant/Spree/some payment gateway or does Google act as the gateway the same way that ActiveMerchant/Spree would?
Also, are there any ...
2
votes
1answer
88 views
Rails: Using Paypal to faciliate marketplace transactions (parallel or chained?)
I want to build a marketplace site where my application connects a 'buyer' and a 'seller' and takes a commission (%) in the process.
I've checked out Adaptive payments API on Paypal and have seen ...
2
votes
0answers
154 views
Active Merchant Integrations (off site payments)
My original question (below) was perhaps too specific, so I'm going to ask something more general!
Can anyone point me in the direction of a tutorial, example or documentation on using Active ...
2
votes
1answer
86 views
rails 3 get data from an association and display in flash message
I'm using ActiveMerchant with Authorize.net and already setup 2 models Order and Transaction. (http://railscasts.com/episodes/145-integrating-active-merchant)
I would like to get error message from ...
2
votes
2answers
85 views
Active Merchant With Ruby [closed]
Possible Duplicate:
An invalid merchant configuration in Paypal with rails
I am playing with the Active Merchant gem. I used Rails cast(144) and I created a ruby file (credit_card.rb):
...
2
votes
0answers
97 views
Processing Moneybookers payments with ActiveMerchant
In my current project I need to accept payments from Moneybookers. Though in ActiveMerchant repository I can find closed pull request that added Moneybookers lib to ActiveMerchant, I can`t find ...
2
votes
2answers
199 views
Uninitialized constant Error using ActiveMerchant::Billing::EwayManagedGateway
I'm trying to get a small ruby file up and running to test how the EwayManagedGateway works.
I'm looking at using Eway to store a users credit card details so I don't need to store them in the site ...
2
votes
1answer
153 views
Pre-filling first and last name in Paypal setExpressCheckout using ActiveMerchant
I'm trying to get Paypal SetExpressCheckout operation to add first and last name for billing. I'm using ActiveMerchant. I'm seeing the address field pre-populated (street, state, city,zip-code) but ...
2
votes
1answer
334 views
Getting ARB subscription information from Authorize.net using Active Merchant?
I'm trying to write a test to verify the start date and interval of an Authorize.net ARB subscription created via Rails + Active Merchant.
I can successfully create the sub using response = ...
2
votes
2answers
639 views
Problems with SSL dependent gems OAuth2 & ActiveMerchant
My application uses the OAuth2 gem (0.1.1) to connect to Facebook, and the ActiveMerchant gem (1.12.0) to connect to PayPal. Under what is the current Rails/Ruby distribution (3.0.5, 1.9.2), both of ...
2
votes
1answer
306 views
Multiple merchant accounts with Activemerchant gem
I am developing a rails site that will allow a group of merchants (5 - 10) to accept credit card orders online. I plan on using the Activemerchant gem to handle the processing.
In this case, each ...
2
votes
0answers
224 views
How to do recurring with bank account payment mode using authorized.net
I am using recurring facility of authorized.net using active_merchant plugin in rails.
there are two payment method for this
1] Credit Card
2] Bank Account
I successfully done it using Credit Card
...
2
votes
3answers
630 views
Best approach for an internationalised payment gateway implementation
I'm looking to integrate a payment gateway into a Ruby on Rails applicaton. Although i have already implemented one before im struggling to see how i can implement one which will cater for different ...
2
votes
1answer
405 views
How do I use a stored payment source for a purchase in ActiveMerchant?
I'm using ActiveMerchant with Braintree as my payment processor. I want to take advantage of Braintree's customer vault functionality to store credit card info.
Storage goes fine, but I can't figure ...
1
vote
1answer
130 views
PayPal error: This transaction is invalid. Please return to the recipient's website to complete your transaction using their regular checkout flow
I was trying to implement paypal payment gateway.
But I am getting an error:
This transaction is invalid. Please return to the recipient's website to complete your transaction using their regular ...
1
vote
1answer
54 views
Designing to allow multiple payment methods in Rails app?
Does anyone have any experience with how to allow multiple payment methods so that more payment methods can be added in the future thus creating a scalable design?
I have implmented Paypal express ...
1
vote
0answers
72 views
Looking for full ActiveMerchant AuthorizeNetCimGateway documentation for options requirements
I am integrating ActiveMerchant in a project, and am mystified over and over again by the lack of documentation for the options parameter. Taking the following as an example, where do I locate ...
1
vote
1answer
124 views
Rails Marketplace Payment Processing
I have a client who recently changed the scope of a project I was building for them, to a marketplace.
Previously users had to pay a nominal fee to register for the site...I was handling credit card ...
1
vote
0answers
282 views
How to use ActiveMerchant for Paypal website payments standard?
I'm trying to set up a rails app to use Paypal website payments standard. I'd rather have users click a button and submit their info on the Paypal site rather than on my site, but I'd like to use ...
1
vote
1answer
85 views
cucumber and activemerchant duplicate transaction problem
I was following this code for cucumber testing with activemerchant and authorize.net(I know it's old but it's the one that worked for me)
...
1
vote
0answers
76 views
How to get gateway response from model into controller - Ruby on Rails
My application uses activemerchant to process payments. I'm using Eway as my payment gateway. I'm storing credit card details with Eway to keep them out of my application database.
I'm using a ...
1
vote
2answers
151 views
Repeated charging with Payflow Pro
This is probably more question for technical support of Payflow Pro, but anyway. We are trying to implement repeated charging of one credit card by Payflow Pro payment with ActiveMerchant. We need the ...
1
vote
1answer
314 views
Does ActiveMerchant support PayPal Digital Goods for Express Checkout transactions?
I know ActiveMerchant supports the standard Express Checkout API, but the Digital Goods integration document describes several EC features not supported by the Digital Goods Express Checkout API. It ...
1
vote
3answers
270 views
Etsy-like marketplace with Activemerchant? (Rails)
I am in the early stages of integrating a vendor marketplace (similar to Etsy, but for a very niche demographic) into an online community. I envision a platform that allows vendors to sign up and ...
1
vote
1answer
146 views
What currency is Active Shipping using?
I need to calculate UPS shipping rates in a Rails app. I'm attempting to do this with the active_shipping gem from the creators of Shopify. Unfortunately, the documentation is nonexistent.
The ...
1
vote
2answers
356 views
Integrate nodejs with ruby for payment processing
I'm building a new website from scratch (no legacy code) that is basically a blog/wiki/forum/ecommerce kind of thing, but I have a lot of custom things I want, and I'm willing to put in the effort to ...
1
vote
2answers
363 views
Activemerchant ogone => Merchant not active
I'm trying to implement a ogone test account in my rails development application, but I keep getting the error message 'Merchant not active'
After some investigation I believe it has something to do ...
1
vote
2answers
557 views
Paypal Express ActiveMerchant integration
I am following Ryan Bates' railcast 146 and it is really helpful. However, Im trying to remove the cart object from the process, and just process an order individually. The problem I am having is ...
1
vote
1answer
576 views
How to Resolve ActiveMerchant Authorize.net Gateway Issue
I get a segmentation fault whenever I try to call authorize on the Authorize.net gateway whether I am using test or live credentials. I am using the latest version of the ActiveMerchant gem. Any ideas ...
1
vote
1answer
618 views
Paypal Express Checkout Recuring with Rails 3
I'm looking to do recuring billing with Paypal and Rails 3. I like the process with Express Checkout, where the customer goes to paypal to enter details, but confirms on my website.
I've looked into ...
1
vote
1answer
354 views
RoR - PayPal ActiveMerchant - Making a Refund
I can successfully make a direct payment to paypal using ActiveMerchant in RoR.
How can I make refund to a transaction?
Thanks,
Imran
1
vote
0answers
480 views
fields_for, formtastic, ActiveMerchant, and validation errors
I'm trying to use Formtastic to create a payment form, since I'd like to use the inline errors. I'm using ActiveMerchant to handle the billing. I have the following form:
<%= semantic_form_for ...
1
vote
2answers
425 views
Merchant account options for Ruby On Rails ecommerce site
I am looking for a payment processing solution for my Rails e-commerce site, here are my requirements.
Simple Rails integration, e.g through
activemerchant plugin.
Operates in the UK.
Payments can ...
1
vote
1answer
665 views
Fail:(TESTMODE) Transactions of this market type cannot be processed on this system
I have created a test account with Authorize.net and am using ActiveMerchant to process
credit card payments for a website. What error I always get is Error#*87 - "Transactions of this market type ...
1
vote
2answers
720 views
Problems with API login/trans key w/ ActiveMerchant and Authorize.net
I'm having an issue getting authorize.net to run credit card transactions from my rails app.
Here is what is in my environment.rb
if ENV['RAILS_ENV'] != 'production'
::GATEWAY = gateway = ...
1
vote
1answer
358 views
Active Merchant Paypal Recurring Pem Error Neither Pub Nor Priv Key
I am trying to use ActiveMerchant to make a Paypal Recurring transaction call. I used the patch here:
...