1

I am developing an app using Titanium for both iPhone and Android. I want to allow users to input their credit card details and then whenever they confirm a payment I just send the data to a credit card processing company. The payment is for pizza, not for App Content, so I assume Apple doesn't have a problem with this. Should I use a webview for the credit card processing, or how do you suggest implementing this?

Ryan
  • 5,456
  • 25
  • 71
  • 129

1 Answers1

0

Since you have your own processor, you can use card.io or Jumio to capture the credit card digits so the user doesn't have to type them in. Then just pass the credit card number, CVV and expiration date to your API to process the payment. Doing this in a webview or native shouldn't make a difference.

There is a PayPal API for mentioned in this post on SO. It still launches a webview though.

Community
  • 1
  • 1
Scott Bossak
  • 2,471
  • 20
  • 17