在线商店和支付网关

发布于 2024-11-07 05:56:13 字数 526 浏览 0 评论 0原文

可能的重复:
付款处理商 - 如果我想在我的网站上接受信用卡,我需要了解什么?

您好。 我需要创建一个在线商店。 它将像一个市场一样工作,注册用户可以将他们的产品添加到应用程序中,然后其他用户可以购买它们。

也许我会允许使用贝宝付款,但也允许使用信用卡付款。

对使用支付网关/提供商有什么建议吗?

我对如何付款也有一些疑问。每笔付款都必须向销售产品的用户完成,而不是直接向我完成,因此我需要存储他们的银行帐户信息。那么如何将命运账号传递到网关呢?

我还想保留交易历史记录,并可能为我的应用程序中进行的每笔交易收取费用。

注意:我正在使用 php 进行编码。

Possible Duplicate:
Payment Processors - What do I need to know if I want to accept credit cards on my website?

Hi.
I need to create an online store.
It will work like a marketplace where the registred users can add their products to the application and then other users can buy them.

Probably I will allow payments with paypal but also credit card.

Any advices on a Payment gateway / provider to use?.

Also I have some doubts about how the payments will be made. Each payment has to be done to the user who sell the product and not directly to me so I would need to store their bank account info. But then how to I pass the destiny account to the gateway?

I also would like to keep the transaction history and maybe get a fee for each transaction made within my app.

Note: i am coding in php.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

独行侠 2024-11-14 05:56:13

作为 PayJunction 的程序员,我有一个非常有偏见的答案:在 PayJunction.com 注册商家帐户 :)

顺便说一句,如果您存储任何类型的帐户信息,您就属于 PCI 合规范围。您应该尝试找到一种不存储任何此类信息的方法。对于定期账单,我们在 API 中提供了一个可供您存储的令牌。其他人不能使用此令牌,因此存储它超出了范围。重要提示:您希望处于 PCI 范围之外!我认为 Authorize.net(Visa 旗下我们的主要竞争对手)也做了类似的事情。

我的同事建议查看我们的示例代码。有一个 PHP 示例,但我实际上会寻找一个使用多个网关的购物车库。我只为使用我们的 Ruby(ActiveMerchant)和 Perl(我们的示例)代码制作了补丁,所以我对 PHP 问题没有帮助。不过,该 API 非常简单,可以直接使用。

说真的,尽一切努力超出 PCI 合规范围。 PCI 审计是一件痛苦的事。

As a programmer at PayJunction, I have a very biased answer: Sign up for a merchant account at PayJunction.com :)

Incidentally, if you store any kind of account information, you are in scope for PCI compliance. You should try to find a way to NOT store any such information. For recurring bills, we provide a token in our API that you can store. Nobody else can use this token, so storing it is outside scope. Important: you want to be outside PCI scope! I think Authorize.net (our big competitor owned by Visa) does something similar.

My coworker suggests looking at our sample code. There is a PHP example, but I'd actually look for a shopping cart lib that uses multiple gateways. I've only made patches for Ruby (ActiveMerchant) and Perl (our sample) code that uses us, so I'm no help on PHP matters. The API is pretty simple to use directly, though.

Seriously, make every effort to be outside PCI compliance scope. PCI audits are a pain.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文