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
(PowerBuilder) Create Google Task ListDemonstrates how to create a new task list.
integer li_rc oleobject loo_Fac string ls_AccessToken oleobject loo_Http oleobject loo_Json integer li_Success oleobject loo_Resp // 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. loo_Fac = create oleobject // Use "Chilkat_9_5_0.FileAccess" for versions of Chilkat < 10.0.0 li_rc = loo_Fac.ConnectToNewObject("Chilkat.FileAccess") if li_rc < 0 then destroy loo_Fac MessageBox("Error","Connecting to COM object failed") return end if ls_AccessToken = loo_Fac.ReadEntireTextFile("qa_data/tokens/googleTasks.txt","utf-8") if loo_Fac.LastMethodSuccess <> 1 then Write-Debug loo_Fac.LastErrorText destroy loo_Fac return end if loo_Http = create oleobject // Use "Chilkat_9_5_0.Http" for versions of Chilkat < 10.0.0 li_rc = loo_Http.ConnectToNewObject("Chilkat.Http") loo_Http.AuthToken = ls_AccessToken // Create a task list named "aaa" loo_Json = create oleobject // Use "Chilkat_9_5_0.JsonObject" for versions of Chilkat < 10.0.0 li_rc = loo_Json.ConnectToNewObject("Chilkat.JsonObject") li_Success = loo_Json.UpdateString("title","aaa") loo_Resp = loo_Http.PostJson("https://www.googleapis.com/tasks/v1/users/@me/lists",loo_Json.Emit()) if loo_Http.LastMethodSuccess = 0 then Write-Debug loo_Http.LastErrorText destroy loo_Fac destroy loo_Http destroy loo_Json return end if // Show the response body. Write-Debug loo_Resp.BodyStr // Examine the response status code. Write-Debug "response status code: " + string(loo_Resp.StatusCode) destroy loo_Resp // Sample response: // Use this online tool to generate parsing code from sample JSON: // Generate Parsing Code from JSON // { // "kind": "tasks#taskList", // "id": "MDM4MzQ4NTA3NDQwMDUxMzQ2OTQ6NzAwOTA4MDA1NzU2ODYwMzow", // "etag": "\"84_7Cubo3y98GMV9bE3zQclHxhc/tK44F5sk_kx_cfoK27XsUCxCTKE\"", // "title": "aaa", // "updated": "2019-04-04T17:13:17.000Z", // "selfLink": "https://www.googleapis.com/tasks/v1/users/@me/lists/MDM4MzQ4NTA3NDQwMDUxMzQ2OTQ6NzAwOTA4MDA1NzU2ODYwMzow" // } // // response status code: 200 destroy loo_Fac destroy loo_Http destroy loo_Json |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.