Chilkat HOME .NET Core C# Android™ AutoIt C C# C++ Chilkat2-Python CkPython Classic ASP DataFlex Delphi ActiveX Delphi DLL Go Java Lianja Mono C# Node.js Objective-C PHP ActiveX PHP Extension Perl PowerBuilder PowerShell PureBasic Ruby SQL Server Swift 2 Swift 3,4,5... Tcl Unicode C Unicode C++ VB.NET VBScript Visual Basic 6.0 Visual FoxPro Xojo Plugin
(Delphi DLL) SugarCRM LogoutDemonstrates how to logout of a session.
uses Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics, Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, StringBuilder, Rest, JsonObject; ... procedure TForm1.Button1Click(Sender: TObject); var rest: HCkRest; success: Boolean; sbReq: HCkStringBuilder; sbJson: HCkStringBuilder; json: HCkJsonObject; success: Boolean; begin rest := CkRest_Create(); success := CkRest_Connect(rest,'your.site.domain',443,True,True); if (success <> True) then begin Memo1.Lines.Add(CkRest__lastErrorText(rest)); Exit; end; CkRest_AddHeader(rest,'Cache-Control','no-cache'); CkRest_AddHeader(rest,'OAuth-Token','<access_token>'); sbReq := CkStringBuilder_Create(); sbJson := CkStringBuilder_Create(); success := CkRest_FullRequestSb(rest,'POST','/rest/v10/oauth2/logout',sbReq,sbJson); if (success <> True) then begin Memo1.Lines.Add(CkRest__lastErrorText(rest)); Exit; end; if (CkRest_getResponseStatusCode(rest) <> 200) then begin Memo1.Lines.Add('Received error response code: ' + IntToStr(CkRest_getResponseStatusCode(rest))); Memo1.Lines.Add('Response body:'); Memo1.Lines.Add(CkStringBuilder__getAsString(sbJson)); Exit; end; json := CkJsonObject_Create(); CkJsonObject_LoadSb(json,sbJson); // The following code parses the JSON response. // A sample JSON response is shown below the sample code. success := CkJsonObject_BoolOf(json,'success'); // A sample JSON response body that is parsed by the above code: // { // "success": true // } Memo1.Lines.Add('Example Completed.'); CkRest_Dispose(rest); CkStringBuilder_Dispose(sbReq); CkStringBuilder_Dispose(sbJson); CkJsonObject_Dispose(json); end; |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.