Since I switched from the sandbox mode to the real deal I get a client authentication failed error.
Config:
{
\"port\": 5000,
\"api\": {
After searching for a few hours i found out that i needed another property. Apparently you need to add the property mode with the value "live". The documentation isn't very clear on this part, neither are there any live example codes in the node sdk github repository.
My config now looks like the following:
{
"port": 5000,
"api": {
"mode": "live",
"host": "api.paypal.com",
"port": "",
"client_id": "-",
"client_secret": "-"
}
}