This repository has been archived by the owner on Sep 29, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 102
Going Live
TLM edited this page Sep 21, 2017
·
4 revisions
In order to point your application to live payments to PayPal API endpoints, you need to follow two steps:
Enable Live Credentials for the appropriate service, by completing the process on your developer dashboard -> Your App as shown below.
- If using sdk_config.ini, add
mode = live
in the[Service]
section (a complete example can be found here):
...
;Service Configuration
[Service]
; can be set to sandbox / live
mode = live
...
- If using code based configurations, add
mode
as follows:
$apiContext->setConfig(
array(
...
'mode' => 'live',
...
)
);
... with PayPal !
Getting Started
Using Our SDK
Configurations
Extras
External Links