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) Delete a Task ListDemonstrates how to delete a Google task list.
integer li_rc oleobject loo_Fac string ls_AccessToken oleobject loo_Http 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 // Delete the task list with this ID: MDM4MzQ4NTA3NDQwMDUxMzQ2OTQ6OTk5Njk3NjkxNzg4Nzg2NDow loo_Http.SetUrlVar("taskListId","MDM4MzQ4NTA3NDQwMDUxMzQ2OTQ6OTk5Njk3NjkxNzg4Nzg2NDow") loo_Resp = loo_Http.QuickRequest("DELETE","https://www.googleapis.com/tasks/v1/users/@me/lists/{$taskListId}") if loo_Http.LastMethodSuccess = 0 then Write-Debug loo_Http.LastErrorText destroy loo_Fac destroy loo_Http return end if // Show the response body. (empty for success) Write-Debug loo_Resp.BodyStr // Examine the response status code. (204 = success) Write-Debug "response status code: " + string(loo_Resp.StatusCode) destroy loo_Resp destroy loo_Fac destroy loo_Http |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.