Sample code for 30+ languages & platforms
Delphi DLL

Get Task Lists

See more Google Tasks Examples

Demonstrates how to download the Google task lists.

Chilkat Delphi DLL Downloads

Delphi DLL
uses
    Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
    Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, Http, FileAccess, HttpResponse, JsonObject;

...

procedure TForm1.Button1Click(Sender: TObject);
var
success: Boolean;
fac: HCkFileAccess;
accessToken: PWideChar;
http: HCkHttp;
resp: HCkHttpResponse;
kind: PWideChar;
etag: PWideChar;
i: Integer;
count_i: Integer;
id: PWideChar;
title: PWideChar;
updated: PWideChar;
selfLink: PWideChar;
json: HCkJsonObject;

begin
success := False;

// This example requires the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.

// Get the previously obtained access token.
// See Get Google Tasks Access Token.

fac := CkFileAccess_Create();
accessToken := CkFileAccess__readEntireTextFile(fac,'qa_data/tokens/googleTasks.txt','utf-8');
if (CkFileAccess_getLastMethodSuccess(fac) = False) then
  begin
    Memo1.Lines.Add(CkFileAccess__lastErrorText(fac));
    Exit;
  end;

http := CkHttp_Create();

CkHttp_putAuthToken(http,accessToken);

resp := CkHttpResponse_Create();
success := CkHttp_HttpNoBody(http,'GET','https://www.googleapis.com/tasks/v1/users/@me/lists',resp);
if (success = False) then
  begin
    Memo1.Lines.Add(CkHttp__lastErrorText(http));
    Exit;
  end;

// Show the response body.
Memo1.Lines.Add(CkHttpResponse__bodyStr(resp));

// Examine the response status code.
Memo1.Lines.Add('response status code: ' + IntToStr(CkHttpResponse_getStatusCode(resp)));

// Use this online tool to generate parsing code from sample JSON: 
// Generate Parsing Code from JSON

json := CkJsonObject_Create();
CkJsonObject_Load(json,CkHttpResponse__bodyStr(resp));

kind := CkJsonObject__stringOf(json,'kind');
etag := CkJsonObject__stringOf(json,'etag');
i := 0;
count_i := CkJsonObject_SizeOfArray(json,'items');
while i < count_i do
  begin
    CkJsonObject_putI(json,i);
    kind := CkJsonObject__stringOf(json,'items[i].kind');
    id := CkJsonObject__stringOf(json,'items[i].id');
    title := CkJsonObject__stringOf(json,'items[i].title');
    updated := CkJsonObject__stringOf(json,'items[i].updated');
    selfLink := CkJsonObject__stringOf(json,'items[i].selfLink');
    i := i + 1;
  end;

// Sample response:

// {
//  "kind": "tasks#taskLists",
//  "etag": "\"84_7Cubo3y98GMV9bE3zQclHxhc/cv_AS-HUP96xJ9bgP8Y2B8WGSpM\"",
//  "items": [
//   {
//    "kind": "tasks#taskList",
//    "id": "MDM4MzQ4NTA3NDQwMDUxMzQ2OTQ6MDow",
//    "title": "My Tasks",
//    "updated": "2019-04-04T17:42:52.000Z",
//    "selfLink": "https://www.googleapis.com/tasks/v1/users/@me/lists/MDM4MzQ4NTA3NDQwMDUxMzQ2OTQ6MDow"
//   },
//   {
//    "kind": "tasks#taskList",
//    "id": "MDM4MzQ4NTA3NDQwMDUxMzQ2OTQ6MzE3OTUxODY4OTU1MTEwMDow",
//    "title": "ccc",
//    "updated": "2019-04-04T17:15:19.000Z",
//    "selfLink": "https://www.googleapis.com/tasks/v1/users/@me/lists/MDM4MzQ4NTA3NDQwMDUxMzQ2OTQ6MzE3OTUxODY4OTU1MTEwMDow"
//   },
//   {
//    "kind": "tasks#taskList",
//    "id": "MDM4MzQ4NTA3NDQwMDUxMzQ2OTQ6NDQ0NTA4MDYyNTY3OTEzMzow",
//    "title": "bbb",
//    "updated": "2019-04-04T17:15:02.000Z",
//    "selfLink": "https://www.googleapis.com/tasks/v1/users/@me/lists/MDM4MzQ4NTA3NDQwMDUxMzQ2OTQ6NDQ0NTA4MDYyNTY3OTEzMzow"
//   },
//   {
//    "kind": "tasks#taskList",
//    "id": "MDM4MzQ4NTA3NDQwMDUxMzQ2OTQ6NzAwOTA4MDA1NzU2ODYwMzow",
//    "title": "aaa",
//    "updated": "2019-04-04T17:13:17.000Z",
//    "selfLink": "https://www.googleapis.com/tasks/v1/users/@me/lists/MDM4MzQ4NTA3NDQwMDUxMzQ2OTQ6NzAwOTA4MDA1NzU2ODYwMzow"
//   }
//  ]
// }
// 
// response status code: 200

CkFileAccess_Dispose(fac);
CkHttp_Dispose(http);
CkHttpResponse_Dispose(resp);
CkJsonObject_Dispose(json);

end;