Delphi ActiveX
Delphi ActiveX
RSAP Union API - Get Members Status
See more _Miscellaneous_ Examples
Demonstrates how to use an OAuth2 access token for the RSAP Union API. Calls the endpoint to get the statuses of all union members.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;
http: TChilkatHttp;
jToken: TChilkatJsonObject;
cert: TChilkatCert;
privKey: TPrivateKey;
sbResponseBody: TChilkatStringBuilder;
jResp: TChilkatJsonObject;
respStatusCode: Integer;
begin
success := 0;
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
http := TChilkatHttp.Create(Self);
// Load the access token previously obtained by this example: RSAP Union OAuth2
jToken := TChilkatJsonObject.Create(Self);
success := jToken.LoadFile('qa_data/tokens/rsapToken.json');
if (success = 0) then
begin
Memo1.Lines.Add('Failed to load access token JSON.');
Exit;
end;
// Adds the "Authorization: Bearer ACCESS_TOKEN" header.
http.AuthToken := jToken.StringOf('access_token');
// For authentication, assuming both the client cert and access token are needed???
cert := TChilkatCert.Create(Self);
success := cert.LoadFromFile('qa_data/certs_and_keys/union_client_certificate.crt');
if (success = 0) then
begin
Memo1.Lines.Add(cert.LastErrorText);
Exit;
end;
privKey := TPrivateKey.Create(Self);
success := privKey.LoadAnyFormatFile('qa_data/certs_and_keys/union_client_certificate.nopass.key','');
if (success = 0) then
begin
Memo1.Lines.Add(privKey.LastErrorText);
Exit;
end;
// Associate the private key with the cert.
// This will fail if the private key is not actually the correct one that corresponds to the public key stored within the cert.
success := cert.SetPrivateKey(privKey.ControlInterface);
if (success = 0) then
begin
Memo1.Lines.Add(cert.LastErrorText);
Exit;
end;
// Tell HTTP to use the cert for client TLS certificate authentication.
success := http.SetSslClientCert(cert.ControlInterface);
if (success = 0) then
begin
Memo1.Lines.Add(http.LastErrorText);
Exit;
end;
sbResponseBody := TChilkatStringBuilder.Create(Self);
success := http.QuickGetSb('https://api-test.rsap.ca/members/status',sbResponseBody.ControlInterface);
if (success = 0) then
begin
Memo1.Lines.Add(http.LastErrorText);
Exit;
end;
jResp := TChilkatJsonObject.Create(Self);
jResp.LoadSb(sbResponseBody.ControlInterface);
jResp.EmitCompact := 0;
Memo1.Lines.Add('Response Body:');
Memo1.Lines.Add(jResp.Emit());
respStatusCode := http.LastStatus;
Memo1.Lines.Add('Response Status Code = ' + IntToStr(respStatusCode));
if (respStatusCode >= 400) then
begin
Memo1.Lines.Add('Response Header:');
Memo1.Lines.Add(http.LastHeader);
Memo1.Lines.Add('Failed.');
Exit;
end;
end;