1

How can I accept credit card payments in my iphone app?

I wanted to do the following

  • Allow users to give their credit card information
  • When they do, send credit card to my server using https and proces credit card using stripe on my server.

Is that the right way to do this technically? How can I make sure the credit card information will stay secure?

Kermit the Frog
  • 3,949
  • 7
  • 31
  • 39
  • possible duplicate of [iOS - Integrating credit card payments](http://stackoverflow.com/questions/8762096/ios-integrating-credit-card-payments). See also http://stackoverflow.com/q/9690414/62576. – Ken White Dec 09 '12 at 18:10
  • 1
    I want to know if I can just send the information via https and how? what is the secure way of processing payments using an api call to my website... thanks. – Kermit the Frog Dec 09 '12 at 18:38
  • Here are some popular payment processors: [http://www.ogone.com/](http://www.ogone.com/) [http://www.realexpayments.com/](http://www.realexpayments.com/) [http://www.sagepay.com/](http://www.sagepay.com/) [http://www.worldpay.com/](http://www.worldpay.com/) [http://paypal.com/](http://paypal.com/) [http://www.zooz.com/](http://www.zooz.com/) [https://stripe.com/](https://stripe.com/) – illegal-immigrant Mar 13 '13 at 12:51

1 Answers1

2

You can use Stripe's iOS bindings to easily accept your customers' payment information.

This library uses our create token API call to securely send any sensitive data to our servers. We'll then turn that into a token and pass it back to your application – you can submit this to your server to create an actual charge as normal.

michael
  • 189
  • 1
  • 4