Paypal Releases New SDK for iOS Developer: PayPal iOS SDK
This SDK allows two types of payment:
- Single payments
- Future payments
I need to implement future payments in my application, so the user only needs to enter their payment details once. And each time the amount is automatically transferred.
Problem . Single payments can be made using a PapPal account and a credit card, but future payments only work with a PayPal account ( Make future payments ).
As another option, I try Authorize.net But this does not allow automated repeated sending (ARB) with the iOS SDK Select API .
Another option, I think, is making a credit card payment with the Rest API . I scan a credit card card.io And use the REST API to transfer. I save this part for future use, and every time a user requests payment, I use this saved part with a REST API. But I am not very sure about this.
So, how can I develop such functionality in my application so that the user cannot enter detailed information about the credit card? Is this in any way with PayPal or Authorize.net? or I need to go to another payment gateway, for example stripe .
source
share