So I'm wondering if implementing credit card payment sin iOS is possible?
This is the basic idea..
- User finds a something on eCommerce app they want to buy
- The app then gets their CC details and send it to a 3-D Secure merchant
- User verifies their CC using the 3-D secure method
- Payment gets accepted.
If this possible without breaking out into Safari?
What I have found out from some research
- We could use something like: https://stripe.com/
However this provides two problems:
1a - I don't think the 2-D secure works here. 1b - if the current eCommerce website is using a different method - we cannot integrate stripe into the app as this would mean changing the whole CC payment process?
So it seems the only way to do this would be this:
- Load the CC payment info in a UIWebview (of the actual eCommerce website) and using the web view to load the site and the current 3-D Secure payment method?
It seems to me that CC payments overall are very limited in scope and scalability when not using services like PayPal and iAP?
Any ideas?