Delphi ActiveX
Delphi ActiveX
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 Delphi ActiveX Downloads
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, Chilkat_TLB;
...
procedure TForm1.Button1Click(Sender: TObject);
var
success: Integer;
cert: TChilkatCert;
bdKey: TChilkatBinData;
privKey: TPrivateKey;
http: TChilkatHttp;
req: TChilkatHttpRequest;
resp: TChilkatHttpResponse;
json: TChilkatJsonObject;
begin
success := 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'
cert := TChilkatCert.Create(Self);
success := cert.LoadFromFile('qa_data/certs/TPPCertificate.cer');
if (success = 0) then
begin
Memo1.Lines.Add(cert.LastErrorText);
Exit;
end;
bdKey := TChilkatBinData.Create(Self);
success := bdKey.LoadFile('qa_data/certs/TPPprivateKey.key');
privKey := TPrivateKey.Create(Self);
success := privKey.LoadAnyFormat(bdKey.ControlInterface,'passwordIfNeeded');
if (success = 0) then
begin
Memo1.Lines.Add(privKey.LastErrorText);
Exit;
end;
success := cert.SetPrivateKey(privKey.ControlInterface);
if (success = 0) then
begin
Memo1.Lines.Add(cert.LastErrorText);
Exit;
end;
http := TChilkatHttp.Create(Self);
success := http.SetSslClientCert(cert.ControlInterface);
if (success = 0) then
begin
Memo1.Lines.Add(http.LastErrorText);
Exit;
end;
req := TChilkatHttpRequest.Create(Self);
req.AddParam('grant_type','client_credentials');
req.AddParam('client_id','TPP_test');
req.AddParam('scope','psd2:payment:sepa:write psd2:payment:sepa:read');
req.HttpVerb := 'POST';
req.ContentType := 'application/x-www-form-urlencoded';
resp := TChilkatHttpResponse.Create(Self);
success := http.HttpReq('https://auth-sandbox.connect.abnamro.com:8443/as/token.oauth2',req.ControlInterface,resp.ControlInterface);
if (success = 0) then
begin
Memo1.Lines.Add(http.LastErrorText);
Exit;
end;
if (resp.StatusCode <> 200) then
begin
Memo1.Lines.Add(resp.BodyStr);
Exit;
end;
// Get the JSON result:
// {"access_token":"TIhycwl8rfrZPkXGw15mwldASAAK","token_type":"Bearer","expires_in":7200}
json := TChilkatJsonObject.Create(Self);
json.Load(resp.BodyStr);
Memo1.Lines.Add('access_token: ' + json.StringOf('access_token'));
Memo1.Lines.Add('token_type: ' + json.StringOf('token_type'));
Memo1.Lines.Add('expires_in: ' + json.StringOf('expires_in'));
end;