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 ActiveX) GetHarvest - Test Personal Access TokenDemonstrates how to test your GetHarvest Personal Access Token
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 http: TChilkatHttp; success: Integer; sbResponseBody: TChilkatStringBuilder; jResp: TChilkatJsonObject; respStatusCode: Integer; id: Integer; first_name: WideString; last_name: WideString; email: WideString; telephone: WideString; timezone: WideString; weekly_capacity: Integer; has_access_to_all_future_projects: Integer; is_contractor: Integer; is_admin: Integer; is_project_manager: Integer; can_see_rates: Integer; can_create_projects: Integer; can_create_invoices: Integer; is_active: Integer; created_at: WideString; updated_at: WideString; default_hourly_rate: WideString; cost_rate: WideString; avatar_url: WideString; i: Integer; count_i: Integer; strVal: WideString; begin // This example assumes the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. http := TChilkatHttp.Create(Self); http.SetRequestHeader('User-Agent','Harvest API Example'); http.SetRequestHeader('Harvest-Account-ID','ACCOUNT_ID'); http.SetRequestHeader('Authorization','Bearer ACCESS_TOKEN'); sbResponseBody := TChilkatStringBuilder.Create(Self); success := http.QuickGetSb('https://api.harvestapp.com/api/v2/users/me.json',sbResponseBody.ControlInterface); if (success <> 1) 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.LastResponseHeader); Exit; end; // Sample JSON response: // { // "id": 2826142, // "first_name": "Joe", // "last_name": "Johnson", // "email": "joe@example.com", // "telephone": "", // "timezone": "Central Time (US & Canada)", // "weekly_capacity": 126000, // "has_access_to_all_future_projects": false, // "is_contractor": false, // "is_admin": true, // "is_project_manager": false, // "can_see_rates": true, // "can_create_projects": true, // "can_create_invoices": true, // "is_active": true, // "created_at": "2019-06-06T15:57:58Z", // "updated_at": "2019-06-06T15:58:32Z", // "default_hourly_rate": 175.0, // "cost_rate": 60.0, // "roles": [ // "role1", // "role2" // ], // "avatar_url": "https://d3s3969qhosaug.cloudfront.net/default-avatars/4d46.png?1559836678" // } // Sample code for parsing the JSON response... // Use the following online tool to generate parsing code from sample JSON: // Generate Parsing Code from JSON id := jResp.IntOf('id'); first_name := jResp.StringOf('first_name'); last_name := jResp.StringOf('last_name'); email := jResp.StringOf('email'); telephone := jResp.StringOf('telephone'); timezone := jResp.StringOf('timezone'); weekly_capacity := jResp.IntOf('weekly_capacity'); has_access_to_all_future_projects := jResp.BoolOf('has_access_to_all_future_projects'); is_contractor := jResp.BoolOf('is_contractor'); is_admin := jResp.BoolOf('is_admin'); is_project_manager := jResp.BoolOf('is_project_manager'); can_see_rates := jResp.BoolOf('can_see_rates'); can_create_projects := jResp.BoolOf('can_create_projects'); can_create_invoices := jResp.BoolOf('can_create_invoices'); is_active := jResp.BoolOf('is_active'); created_at := jResp.StringOf('created_at'); updated_at := jResp.StringOf('updated_at'); default_hourly_rate := jResp.StringOf('default_hourly_rate'); cost_rate := jResp.StringOf('cost_rate'); avatar_url := jResp.StringOf('avatar_url'); i := 0; count_i := jResp.SizeOfArray('roles'); while i < count_i do begin jResp.I := i; strVal := jResp.StringOf('roles[i]'); i := i + 1; end; end; |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.