iOS payment gateway other than in-App

2019-07-07 07:26发布

问题:

I have an iphone application, in which there is online payment feature. For payment i want to use my own payment gateway which is on website. So that i can redirect user to website for payment. Can anyone help me please, will apple allow this feature or not?
Any help or suggestions would be appreciated!

Thanks in advance!

回答1:

Apple allows 3rd party payment gateway system. There are some good solutions provided by Stripe, Authorize.NET or Zooz.

Stripe (http://www.stripe.com) is a really good payment gateway for iOS. They will do credit card validations and return the token to your iOS app. You will then do order verifications to your website and finally submit the charges to stripe.

This is a really good tutorial on using Stripe with iOS: http://www.raywenderlich.com/30092

Hope this helps.