John Smith
John Smith

Reputation: 223

How do I get an APIUsername, APIPassword for the Paypal live?

i have implemented the PayPal Express CheckOut Payment Method.

For SandBox Mode i have used :

$config['Sandbox'] = TRUE;

$config['APIVersion'] = '85.0';

$config['APIUsername'] = $config['Sandbox'] ? 'sd_1343200577_biz_api1.cc.net' : '[email protected]';

$config['APIPassword'] = $config['Sandbox'] ? '**' : 'PRODUCTION_PASSWORD_GOES_HERE';

$config['APISignature'] = $config['Sandbox'] ? 'AT4ajMclTj-jvhyMzN1.QC92FSBxAvBRxmuR5zhQBpe.GL5IRm8gyHxd' : 'PRODUCTION_SIGNATURE_GOES_HERE';

$config['DeviceID'] = $config['Sandbox'] ? '' : 'PRODUCTION_DEVICE_ID_GOES_HERE';

$config['ApplicationID'] = $config['Sandbox'] ? 'APP-80W284485P519543T' : 'PRODUCTION_APP_ID_GOES_HERE';

$config['DeveloperEmailAccount'] = $config['Sandbox'] ? '[email protected]' : 'PRODUCTION_DEV_EMAIL_GOES_HERE';

Its Time to go live now

So how to get all this For Live Payment

APIUsername APIPassword APISignature DeviceID ApplicationID DeveloperEmailAccount

Thanks in Advance

-John

Upvotes: 0

Views: 161

Answers (1)

Drew Angell
Drew Angell

Reputation: 26036

Go here and login. It will return your live credentials for you.

Upvotes: 1

Related Questions