- My team working in a shopping cart project
- We have integrated First data payment Gateway
- Now we want to verify the master card and visa
- I need to authenticate the master card SecureCode based on the link given below
- http://www.mastercard.com/us/personal/en/cardholderservices/securecode/how_it_works.html
- Please provide any api or necessary information for doing the same
2521 次
4 に答える
4
クレジット カードが正当であることを検証するには:
- Luhn Algorithmに対して検証します。(カード番号が有効な形式であることのみを検証します)
- 既知の発行者識別番号に対してカード番号を確認します
- $0.00 (プロセッサがゼロ認証をサポートしていない場合は $0.01) で認証のみ (別名 AUTH ONLY) を実行します。これは、クレジット カードが存在することを確認する唯一の保証された方法です。
于 2010-05-15T16:36:12.217 に答える
1
Hum, imho you need a payment provider to use credit card payment anyway - they'll give you a kind of api to check the data against.
于 2010-05-15T11:38:32.920 に答える
0
少なくともコードが有効であることを検証するには、これを試してみてください: http ://www.notesbit.com/index.php/web-mysql/web-scripts/luhn-algorithm-in-c/
于 2010-05-15T22:38:07.597 に答える
0
http://www.mobilefish.com/services/credit_card_number_generator/credit_card_number_generator.php 前のリンクを確認してください。luhn alog の適切な説明が含まれており、クレジット カード ジェネレーターがあります。
于 2013-06-09T17:57:22.810 に答える