3

I want to implement credit card payment process in my android application. There is a form in my application. User will enter his card information and on submission the service will verify and accept or reject the card. I have no idea if there is any API or a tutorial available in android. Please help me if someone knows how to do that.

//Zeeshan

DeRagan
  • 22,827
  • 6
  • 41
  • 50
SilentCoder
  • 271
  • 3
  • 7
  • 16

1 Answers1

1

I would look for any type of REST or web-based API. Here's for example some of the vendors providing such APIs. Then, after you harvest information from the form you generate call using something like HttpClient to such API and you can be sophisticated enough to make it appear as call is coming from the desktop browser (if it is a requirement). Then you capture a response, parse it and present to the user

Bostone
  • 36,858
  • 39
  • 167
  • 227