java中的信用卡号和有效期检查
在 struts 1.3 中,我有一个 payment.jsp,
- 信用卡号。
- 信用卡类型。
- 持卡人姓名。
- 截止日期。
- CVV 号。
- 评论。
操作表单 PaymentForm 对信用卡号码进行了验证,因为
!GenericValidator.isCreditCard(creditCardNumber)
, & expairy date to select the MM & YYYY.
我的问题是,在提交按钮上然后应该有一个 API(标准)来验证信用卡详细信息并处理付款。 那么我应该使用哪个 api 呢?
In struts 1.3 , i have a payment.jsp,
- Credit Card Number.
- Credit Card Type.
- Card Holder Name.
- Expiration Date.
- CVV Number.
- Comments.
The action form PaymentForm has the validations for the creditCardNumber as
!GenericValidator.isCreditCard(creditCardNumber)
, & expairy date to select the MM & YYYY.
my question is , On submit button Then there should be an API (standard) which should validate the credit card details and process the payments.
So which api i should use ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要(付费)订阅支付服务提供商并使用他们可能提供的 API。通常,您需要生成一个 URL 并使用该 URL 发布帖子。
You will need a (payed) subscription to a Payment Service Provider and use the API they possibly provide. Usually, you will need generate a URL and make a post with this URL.