activemerchant

Paypal Express Checkout with ActiveMerchant as in Shopify

感情迁移 提交于 2019-12-04 19:00:34
I'm successfully using Paypal Express Checkout in a marketplace web app passing for every seller the three parameters to the PaypalExpressGateway (login, password and signature). So, I see that Shopify lets the seller set only the e-mail address of the Paypal account requesting to grant scott_api1.jadedpixel.com as the API Partner Username. I could't find anything in the ActiveMerchant doc on how I can do it...Someone can help? Thanks a lot, zetarun We use PayPals "Accelerated Boarding" method of setup for Express. They should send you an email after the first attempted sale with a link that

API Signature is required to make requests to PayPal error, I have an API signature set already

醉酒当歌 提交于 2019-12-04 18:30:57
I'm having a big problem right now. My site is written in Ruby on Rails, and I'm using the active merchant gem to interface with PayPal. The site is hosted on heroku. I have an API key and API signature set as config variables in my heroku app. However, I still get the error: Running: rake assets:precompile (in /tmp/build_3pvaswdp7wvca1) rake aborted! An API Certificate or API Signature is required to make requests to PayPal (See full trace by running task with --trace) I can run heroku run rake assets:precompile separately and that works completely fine. Furthermore, my staging site has the

setting tax amount in Active Merchant / PayPal Express Checkout

一个人想着一个人 提交于 2019-12-04 14:00:34
I need to know how to pass a tax amount to PayPal Express Checkout using Active Merchant and rails. Everything is working (completing transations) except I can't figure out for the life of me how to set the tax. Thanks for your help! This is how its done. the following code will setup a paypal express purchase for 2 items that have different prices (5 and 10 $), plus added taxes (50 cents) and with no shipping or handling cost. response = YOUR_PAYPAL_GAETWAY_NAME.setup_purchase(1550, :subtotal => 1500, :shipping => 0, :handling => 0, :tax => 50, :ip => CLIENT_IP, # you might want to use

Accepting dummy credit cards on a live site with ActiveMerchant & PayPal

核能气质少年 提交于 2019-12-03 20:59:57
I'm setting up a rails site that will accept credit cards with ActiveMerchant and PayPal Website Payments Pro. I am successfully testing against the PayPal sandbox, but need to be able to test on my live site as well. I'd like to implement a solution whereby registrations on my live site with email addresses from my own domain use the PayPal sandbox, but for everyone else it uses the live PayPal site. That way when I test my live site I'm not paying myself and getting taxed by PayPal in the process :-) The problem, however, is that to get ActiveMerchant to use the test servers you write this

Does ActiveMerchant support Subscription Based transaction

半世苍凉 提交于 2019-12-03 13:41:39
问题 I am trying to integrate ActiveMerchant in my rails app. I have certain plans that if subscribed limit the user access. As you all guyz might be knowing what a subscription based app is, I am not going into explaining my app. Please suggest me some examples for making this happen. I have already viewed the railscasts episodes 141 through 146 but Ryan has only demonstrated Paypal Web Payments Standard and Paypal Web Payments Pro. I have also read a bunch of blogs but it didn't help. Please

Recurring billing with Rails - what are my options?

梦想的初衷 提交于 2019-12-03 06:05:06
问题 Before jumping in I'd like to know what all of my options are, and, if possible their pros and cons. The two I know of are using ActiveMerchant, or the paypal_recurring gem, but will they satisfy these requirements? Ability to accommodate monthly and annual billing Ability to suspend, cancel accounts etc Deal with out-of-date card details or failed payments The to-do list for the paypal_recurring gem includes 'adding support for IPN' - how will not having this impact functionality? I know

Does ActiveMerchant support Subscription Based transaction

人走茶凉 提交于 2019-12-03 03:42:13
I am trying to integrate ActiveMerchant in my rails app. I have certain plans that if subscribed limit the user access. As you all guyz might be knowing what a subscription based app is, I am not going into explaining my app. Please suggest me some examples for making this happen. I have already viewed the railscasts episodes 141 through 146 but Ryan has only demonstrated Paypal Web Payments Standard and Paypal Web Payments Pro. I have also read a bunch of blogs but it didn't help. Please help. Thanks in Advance. Better late than never, huh? The actual master branch of ActiveMerchant contains

Paypal, Recurring Billing, and ActiveMerchant

|▌冷眼眸甩不掉的悲伤 提交于 2019-12-03 01:47:08
问题 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 simple way to set up recurring billing (per month) by credit card. I just need a simple solution, but am having a hard time finding the best practices of setting it up. So far I understand that this is supported by Paypal's Website Payment Standards option. I just have a few questions regarding

Paypal, Recurring Billing, and ActiveMerchant

最后都变了- 提交于 2019-12-02 15:18:51
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 simple way to set up recurring billing (per month) by credit card. I just need a simple solution, but am having a hard time finding the best practices of setting it up. So far I understand that this is supported by Paypal's Website Payment Standards option. I just have a few questions regarding how I should implement it: First, does Paypal require a user to register for recurring billing with

Using API calling account as receiver account

时间秒杀一切 提交于 2019-11-28 14:28:09
I'm trying to integrate Paypal Adaptive checkout using Active Merchant and active_paypal_adaptive_payment gem. During User registration, User needs to register his/her paypal account in order to receive the payment during the transaction. I've setup all the credentials for activemerchant. While registering user Account in paypal I got the following error. You are logging into the account of the API caller of this transaction. Please change your login information and try again. Is it possible to use same API calling account as secondary receiver during checkout? Thank you, Any suggestion will