2

私は、ユーザーに選択肢のリストを表示し、ユーザーが選択したものを注文できるようにするシステムのプロトタイプを作成しようとしています(プロトタイプは単純化しすぎていますが、要点を理解するには十分です)。ユーザーのクレジットカード番号、請求先住所、配送先住所、その他の連絡先情報を持っていますが、プロトタイプを完成させるためにこの情報を使って実際に何かを購入できるWebサービスが見つかりません。Programmable WebXmethodsなどのディレクトリを確認しましたが、価格と可用性を確認できるAPIを指しているように見えますが、実際には注文していません。そのようなものは存在しますか、それとも私が見逃している理由(セキュリティなど)があり、そのようなサービスの提供を妨げていますか?

4

3 に答える 3

1

The most important thing about online shopping is the security of transmitted information (e.g. credit card data). So the ideal case is to transmit these information directly to the related bank's (issuer of the credit card) payment services, rather than passing it via other service providers. This is what 3-D Secure does.

So when you use a common API this means putting an extra broker between, and passing the secure information to this party which increases vulnerability. Since such a broker cannot use 3-D secure (since it is not the merchant so not possible to make an agreement with the banks) and it should pass the information to online shopping site.

Moreover, an online shoping site can block traffic coming from such an intermediary webservice at any time if you do not make an obligatory agreement and making agreements for each online merchant is practically not very possible.

于 2012-09-18T21:06:24.480 に答える
0

クレジットカードのような情報が非常に安全で機密であり、無料のAPIにセキュリティの脅威があるという単純な理由で、そのような無料のAPIを利用することはできません。

ここにベスト10のオンライン決済システムのリストがあります

http://sixrevisions.com/tools/online-payment-systems/

そして、ライブデモを提供するこの人

http://www.fastcharge.com/

于 2012-09-20T08:49:57.403 に答える
0

詳細な情報はわかりませんが、可能だと思います。ご覧のとおりだと思います。次のステップでは、銀行の支払いゲートウェイにリダイレクトされ、セキュリティの質問に答えるだけで取引を完了することができます. 銀行ならではのサービスだと思います。そして、あなたが言及したタスクを実行できるユニバーサル API は見たことがありません。

ダイアログ GSM - スリランカ

Anything.lk - スリランカ

于 2012-09-20T09:42:57.540 に答える