I cannot make the gocardless bank integration working, always got the following message:
Missing Credentials
Invalid or missing credentials for Gocardless Bank Account Data. Contact support for help, if this > issue persists.
ACTIONS MADE :
- I see the bank accounts and the transaction when I’m connecting on gocardless
- I got an API/SECRET from gocardless. I tested that I can retrieve successfully a token calling from the invoice ninja selfhosted server :
curl -X POST "https://bankaccountdata.gocardless.com/api/v2/token/new/" -H 'accept: application/json' -H 'Content-Type: application/json' -d '{
"secret_key": "XXXXX",
"secret_id": "XXXX"
}'|jq .
I add the following variables to .env :
NORDIGEN_SECRET_ID=“XXXXX”
NORDIGEN_SECRET_KEY=“XXXXXXX”
NORDIGEN_TEST_MODE=false
Invoice Ninja Version : v5.8.57-M156
BTW, how can I get more logs ? the laravel.log doesn’t provide any info even when APP_DEBUG=“true”
Julien