iPhone应用程序的支付网关查询
我正在开发一款应用程序,该应用程序使用物理订购,例如餐厅订餐。 现在我陷入了如何使用支付网关的困境,在谷歌搜索后,我从许多网站听说,如果我不想使用应用内购买,因为它不支持实物商品,苹果将拒绝该应用程序。 我不想使用 Paypal 和 google checkout,因为根据我的客户业务,它更贵。
客户已将网站用于其业务,其中使用了 www.fatcow.com 的第三方支付网关,该网关使用了authorize.net 的服务 1)我有另一个选择,我可以在 Webview 中打开网站移动页面并从他们的处理它,但仍然很困惑苹果是否会拒绝该应用程序。所以请告诉我应该如何使用第 3 方支付网关来下订单? 2) 我如何在应用程序中成功进行交易和信用卡处理是否有任何 API 或可用的东西,请提供一些信息。
任何帮助将不胜感激。 谢谢。
I am developing one application which has use of physical ordering like restaurant food ordering.
Now i am stuck on how will i use the payment Gateway in which i heard from many sites after searching on google that Apple is rejecting the application if I don't want to use the InApp Purchage as it does not support for physical goods.
I don't want to use Paypal and google checkout because it is more expensive as per my client business.
Client uses the website already for their business in which he used the third party payment gateway from www.fatcow.com which use the service of authorize.net
1) I got another option that i can open website mobile pages in Webview and handle it from their but still confuse if apple will reject the app.So please tell me how should i use the 3rd party payment gateway to place my order ?.
2) How can i successful make transaction and credit card processing in application is there any API or something available please provide some information.
Any help will be appreciated .
Thank You.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
据我所知,您不应使用任何第三方支付网关来处理任何借记卡/卡交易,除非其完全符合 ISO 8583/8587 协议和 PCI(支付卡行业)标准。任何一种黑客方式都会给你带来麻烦。
To my knowledge you should not use any 3rd party payment gateways to process any debit/card transactions until unless its solely meets ISO 8583/8587 protocols and PCI (Payment Card Industries) standards. Any kind of hacky way, will put you in trouble.
nProb,您可以使用现有的支持来进行交易,但是您想要进行的更改是要求网络团队为您提供一些将承载交易过程的API,
例如,网络团队提供一个网络服务 - 包含所有参数[成本,信用卡等],
然后您使用表单 ui 从您的应用程序传递这些值,Web 服务将执行交易并执行操作。 make 通过 json 或 xml 将状态返回到您的应用程序,以告知用户这是一次成功的交易。
Apple 永远不会拒绝您的应用程序,因为我们已经批准了 5 个类似的基于支付的应用程序。
希望这有帮助!
nProb,you can use your existing support to make transactions but change you want to made is ask the web team to give you some API's which will carry the transaction process ,
For example , Web Team give a web service - contains all parameters [cost,creditcard etc] ,
then you pass these values from your app with form ui , the the web service will perform transaction & make to return status to your app by json or xml to intimate users that it is a successfull transaction.
Apple will never reject your app , as we have approved 5 similiar payment based apps.
Hope this helps!