Sample code for 30+ languages & platforms
Visual FoxPro

ABN AMRO OAuth2 Client Credentials Authentication

See more ABN AMRO Examples

Demonstrates how to obtain an access token for an ABN AMRO online API using OAuth2 with the Client Credentials flow.

Chilkat Visual FoxPro Downloads

Visual FoxPro
LOCAL lnSuccess
LOCAL loCert
LOCAL loBdKey
LOCAL loPrivKey
LOCAL loHttp
LOCAL loReq
LOCAL loResp
LOCAL loJson

lnSuccess = 0

* This example requires the Chilkat API to have been previously unlocked.
* See Global Unlock Sample for sample code.

* This example sends the following CURL request:

* 	curl -X POST -k https://auth-sandbox.connect.abnamro.com:8443/as/token.oauth2 \
* 	-v \
* 	--cert TPPCertificate.crt \
* 	--key TPPprivateKey.key \
* 	-H 'Cache-Control: no-cache' \
* 	-H 'Content-Type: application/x-www-form-urlencoded' \
* 	-d 'grant_type=client_credentials&client_id=TPP_test&scope=psd2:payment:sepa:write psd2:payment:sepa:read'

loCert = CreateObject('Chilkat.Cert')
lnSuccess = loCert.LoadFromFile("qa_data/certs/TPPCertificate.cer")
IF (lnSuccess = 0) THEN
    ? loCert.LastErrorText
    RELEASE loCert
    CANCEL
ENDIF

loBdKey = CreateObject('Chilkat.BinData')
lnSuccess = loBdKey.LoadFile("qa_data/certs/TPPprivateKey.key")

loPrivKey = CreateObject('Chilkat.PrivateKey')
lnSuccess = loPrivKey.LoadAnyFormat(loBdKey,"passwordIfNeeded")
IF (lnSuccess = 0) THEN
    ? loPrivKey.LastErrorText
    RELEASE loCert
    RELEASE loBdKey
    RELEASE loPrivKey
    CANCEL
ENDIF

lnSuccess = loCert.SetPrivateKey(loPrivKey)
IF (lnSuccess = 0) THEN
    ? loCert.LastErrorText
    RELEASE loCert
    RELEASE loBdKey
    RELEASE loPrivKey
    CANCEL
ENDIF

loHttp = CreateObject('Chilkat.Http')

lnSuccess = loHttp.SetSslClientCert(loCert)
IF (lnSuccess = 0) THEN
    ? loHttp.LastErrorText
    RELEASE loCert
    RELEASE loBdKey
    RELEASE loPrivKey
    RELEASE loHttp
    CANCEL
ENDIF

loReq = CreateObject('Chilkat.HttpRequest')
loReq.AddParam("grant_type","client_credentials")
loReq.AddParam("client_id","TPP_test")
loReq.AddParam("scope","psd2:payment:sepa:write psd2:payment:sepa:read")

loReq.HttpVerb = "POST"
loReq.ContentType = "application/x-www-form-urlencoded"

loResp = CreateObject('Chilkat.HttpResponse')
lnSuccess = loHttp.HttpReq("https://auth-sandbox.connect.abnamro.com:8443/as/token.oauth2",loReq,loResp)
IF (lnSuccess = 0) THEN
    ? loHttp.LastErrorText
    RELEASE loCert
    RELEASE loBdKey
    RELEASE loPrivKey
    RELEASE loHttp
    RELEASE loReq
    RELEASE loResp
    CANCEL
ENDIF

IF (loResp.StatusCode <> 200) THEN
    ? loResp.BodyStr
    RELEASE loCert
    RELEASE loBdKey
    RELEASE loPrivKey
    RELEASE loHttp
    RELEASE loReq
    RELEASE loResp
    CANCEL
ENDIF

* Get the JSON result:
* {"access_token":"TIhycwl8rfrZPkXGw15mwldASAAK","token_type":"Bearer","expires_in":7200}
loJson = CreateObject('Chilkat.JsonObject')
loJson.Load(loResp.BodyStr)
? "access_token: " + loJson.StringOf("access_token")
? "token_type: " + loJson.StringOf("token_type")
? "expires_in: " + loJson.StringOf("expires_in")

RELEASE loCert
RELEASE loBdKey
RELEASE loPrivKey
RELEASE loHttp
RELEASE loReq
RELEASE loResp
RELEASE loJson