how to get PayPal client ID

ios, paypal

Solution

You can obtain your PayPal API credentials, including Client ID, by visiting the Applications page on the PayPal Developer site and logging in with your PayPal account.

Once logged in on this page, you will be assigned a sandbox Client ID, which will let you test your iOS integration against the PayPal sandbox. In your code, set the receiver email to a business sandbox account email address, then use a personal sandbox account email and password to log in to PayPal in the UI of your app. You can create business and personal sandbox accounts on the Sandbox accounts page.

To obtain your live Client ID, you will need to have a business account. If you don't yet have a business account, there is a link at the bottom of that same Applications page that will get you started. For live transactions, use your PayPal email address as the receiver email.

Problem

I am developing an iphone app, i want to integrate it with PayPal which will use rest API. I downloaded SDK 1.0.4 for iOS from this. https://github.com/paypal/PayPal-iOS-SDK There is a sample code given by PayPal. But in this app i need to change PayPal client id and email address. define kPayPalClientId @"YOUR CLIENT ID HERE" define kPayPalReceiverEmail @"YOUR_PAYPAL_EMAIL@yourdomain.com" how to get PayPal client id? and how can i test it if money is transfered or not with the single PayPal account?

Original source