Ruby On Rails 电子商务网站的商家帐户选项
我正在为我的 Rails 电子商务网站寻找支付处理解决方案,以下是我的要求。
- 简单的 Rails 集成,例如通过 活跃商家插件。
- 在英国运营。
- 可以在我的网站上进行付款(不会重定向到第三方)
- 最好没有/每月费用较低,因此网站首次上线时的交易百分比更高。
谢谢
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 be taken on my site (not redirected to third party)
- Preferably no/low monthly cost, and therefore higher transaction percentage for when site first goes live.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
http://activemerchant.rubyforge.org/ 列出了可用的英国网关(涵盖您的第 1 点和第 2 点) )
第三点就是我发帖的原因。自行托管支付页面可能意味着您需要遵守 PCI-DSS,如果您尚未意识到这一点,那么这将值得您研究一下。简而言之 - 您可能需要重新考虑!
第4点我个人无法提供帮助。您需要单独询问提供商以权衡成本/收益。
http://activemerchant.rubyforge.org/ lists the available UK gateways (covering your points 1 & 2)
Point 3 is why I'm posting though. It's likely that hosting the payment page yourself will mean you're going to need to be PCI-DSS compliant, which will be worth looking into if you aren't already aware of it. In short - you may want to reconsider!
Point 4 I can't personally help with. You'd need to query the providers individually to weigh up costs/benefits.
无/低成本要求将会很棘手。请记住,通过计费交易,您绝对得到一分钱一分货。
我建议您查看 Braintree (http://www.braintree paymentsolutions.com/),它有一个开发者 API (http://www.braintree paymentsolutions.com/gateway/ api)和指定其使用的活跃商家端口(http://github.com/braintreeps/active_merchant)。
我不确定他们是否在英国运营,但值得调查。
The no/low cost requirement is going to be tricky. Keep in mind, with billing transactions, you absolutely get what you pay for.
I'd recommend that you look at Braintree (http://www.braintreepaymentsolutions.com/), which has a developer API (http://www.braintreepaymentsolutions.com/gateway/api) and a port of Active Merchant specified to their use (http://github.com/braintreeps/active_merchant).
I'm not sure if they operate in the UK, but they'd be worth investigating.