Sample code for 30+ languages & platforms
AutoIt

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 AutoIt Downloads

AutoIt
Local $bSuccess = False

; 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'

$oCert = ObjCreate("Chilkat.Cert")
$bSuccess = $oCert.LoadFromFile("qa_data/certs/TPPCertificate.cer")
If ($bSuccess = False) Then
    ConsoleWrite($oCert.LastErrorText & @CRLF)
    Exit
EndIf

$oBdKey = ObjCreate("Chilkat.BinData")
$bSuccess = $oBdKey.LoadFile("qa_data/certs/TPPprivateKey.key")

$oPrivKey = ObjCreate("Chilkat.PrivateKey")
$bSuccess = $oPrivKey.LoadAnyFormat($oBdKey,"passwordIfNeeded")
If ($bSuccess = False) Then
    ConsoleWrite($oPrivKey.LastErrorText & @CRLF)
    Exit
EndIf

$bSuccess = $oCert.SetPrivateKey($oPrivKey)
If ($bSuccess = False) Then
    ConsoleWrite($oCert.LastErrorText & @CRLF)
    Exit
EndIf

$oHttp = ObjCreate("Chilkat.Http")

$bSuccess = $oHttp.SetSslClientCert($oCert)
If ($bSuccess = False) Then
    ConsoleWrite($oHttp.LastErrorText & @CRLF)
    Exit
EndIf

$oReq = ObjCreate("Chilkat.HttpRequest")
$oReq.AddParam "grant_type","client_credentials"
$oReq.AddParam "client_id","TPP_test"
$oReq.AddParam "scope","psd2:payment:sepa:write psd2:payment:sepa:read"

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

$oResp = ObjCreate("Chilkat.HttpResponse")
$bSuccess = $oHttp.HttpReq("https://auth-sandbox.connect.abnamro.com:8443/as/token.oauth2",$oReq,$oResp)
If ($bSuccess = False) Then
    ConsoleWrite($oHttp.LastErrorText & @CRLF)
    Exit
EndIf

If ($oResp.StatusCode <> 200) Then
    ConsoleWrite($oResp.BodyStr & @CRLF)
    Exit
EndIf

; Get the JSON result:
; {"access_token":"TIhycwl8rfrZPkXGw15mwldASAAK","token_type":"Bearer","expires_in":7200}
$oJson = ObjCreate("Chilkat.JsonObject")
$oJson.Load($oResp.BodyStr)
ConsoleWrite("access_token: " & $oJson.StringOf("access_token") & @CRLF)
ConsoleWrite("token_type: " & $oJson.StringOf("token_type") & @CRLF)
ConsoleWrite("expires_in: " & $oJson.StringOf("expires_in") & @CRLF)