0

Can i save login credentials or other key value in pay-pal.i want only one time pay-pal login in my application.

jaydev
  • 1,629
  • 5
  • 17
  • 31
  • Elaborate more in your question, no idea what do you want to achieve. If you do want to share tokens between apps (= your apps), you can use shared keychain. http://stackoverflow.com/questions/4115744/how-to-share-keychain-data-between-ios-applications – zrzka Mar 13 '14 at 09:10
  • You want that once user login in your app than when ever he need to pay he don't have to give paypal detail. Am I right? – CRDave Mar 13 '14 at 09:46
  • yes @CRDave you are right. yes i want one time login into playpal account , and when ever he need to pay he don't to give paypal detail. – jaydev Mar 13 '14 at 10:03
  • @CRDave is there any way to achieve this scenario. – jaydev Mar 13 '14 at 10:05

1 Answers1

0

If you want to achieve this than you have two way:

  1. Use REST Paypal API : Save username and password of user in secure place and use appropriate API to make payment.

  2. Use Paypal-iOS-SDK (You should use this) : If you are going to use this option than you have good news that Paypal iOS SDK 2 is launched (which is used by UBER) which provide this feature under future payments option.

Read following document to understand this :

Implementation : To implement this you need to code on both side (Mobile and Server). Following link will guide you through this process.

I suggest you to read all document in this two place:

  1. PayPal Mobile SDKs
  2. PayPal iOS SDK

For some extra reading of Paypal mobile : Paypal Forward Mobile

I hope this will help in your work.

Note : If you want to implement this same thing with credit card (not Paypal account but use paypal to precess credit card) than visit : iOS Credit card recurring payment with paypal

Community
  • 1
  • 1
CRDave
  • 9,279
  • 5
  • 41
  • 59