- - No accesstoken could be created, check configuration
- - Sandbox (Test) of Productie (Live) Omgeving
- - Refresh Token
- - Signing Key
- - Access Token
- - Basic gateway settings
- - Configuration bestand
- - Unknown response received from Rabo Smart Pay (See logs).
- - Update Cipher Suite - Februari 2022
- - Server cipher suites
- - Configuratie
- - IP-Adres whitelisting
- - Authenticatie errors
- - Webhook URL
- - Smart Pay error codes
In het Configuration-bestand in de map../idealcheckout/configuration/ tref je de volgende informatie aan:
// Use TEST/LIVE mode; true=TEST, false=LIVE
$aSettings['TEST_MODE'] = false;
Deze code geeft aan of de TEST MODE aan of uit staat. In de configuration file wordt namelijk uitgegaan of er gebruik wordt gemaakt van de Sandbox (TEST) Omgeving. Oftwel staat, TEST MODE AAN of UIT ?
Om te weten welke omgeving je aanroept, hebben wij hieronder de twee omgevingen benoemt.
Productie Omgeving/Live Omgeving
false=LIVE
Als bij
--------------------------------------------------------------
$aSettings['TEST_MODE'] = false;
--------------------------------------------------------------
staat, betekent dit dat de TEST_MODE op False oftewel UIT staat.
Op dat moment comuniceer je met de Productie-omgeving (LIVE)
Sandbox omgeving/test omgeving
true=TEST
Als bij
--------------------------------------------------------------
$aSettings['TEST_MODE'] = true;
--------------------------------------------------------------
staat, betekent dit dat de TEST_MODE op True oftewel AAN staat.
Dit houdt in dat je communiceert met de Sandbox omgeving (TEST)