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) Outlook Calendar List EventsSee more Outlook Calendar ExamplesRetrieve a list of events in a calendar. For more information, see https://docs.microsoft.com/en-us/graph/api/calendar-list-events?view=graph-rest-1.0&tabs=http
integer li_rc oleobject loo_Http oleobject loo_JsonToken integer li_Success string ls_CalendarId oleobject loo_Resp oleobject loo_Json string ls_OriginalStartTimeZone string ls_OriginalEndTimeZone string ls_ResponseStatusResponse string ls_ResponseStatusTime string ls_ICalUId integer li_ReminderMinutesBeforeStart integer li_IsReminderOn integer i integer li_Count_i // This example requires the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. loo_Http = create oleobject // Use "Chilkat_9_5_0.Http" for versions of Chilkat < 10.0.0 li_rc = loo_Http.ConnectToNewObject("Chilkat.Http") if li_rc < 0 then destroy loo_Http MessageBox("Error","Connecting to COM object failed") return end if // Use your previously obtained access token here: Get Outlook Calendar OAuth2 Access Token (Azure AD v2.0 Endpoint). loo_JsonToken = create oleobject // Use "Chilkat_9_5_0.JsonObject" for versions of Chilkat < 10.0.0 li_rc = loo_JsonToken.ConnectToNewObject("Chilkat.JsonObject") li_Success = loo_JsonToken.LoadFile("qa_data/tokens/outlookCalendar.json") if li_Success = 0 then Write-Debug loo_JsonToken.LastErrorText destroy loo_Http destroy loo_JsonToken return end if loo_Http.AuthToken = loo_JsonToken.StringOf("access_token") // Specify the ID of the calendar to list. ls_CalendarId = "AQMkADAwATM0MDAAMS1iNTcwLWI2NTEtMDACLTAwCgBGAAADsVyfxjDU406Ic4X7ill8xAcA5_vF7TKKdE6bGCRqXyl2PQAAAgEGAAAA5_vF7TKKdE6bGCRqXyl2PQAAAiCsAAAA" loo_Http.SetUrlVar("id",ls_CalendarId) // To list the events in the default calendar, use the following URL: https://graph.microsoft.com/v1.0/me/calendars/events loo_Resp = loo_Http.QuickRequest("GET","https://graph.microsoft.com/v1.0/me/calendars/{$id}/events") if loo_Http.LastMethodSuccess <> 1 then Write-Debug loo_Http.LastErrorText destroy loo_Http destroy loo_JsonToken return end if Write-Debug "Response status code = " + string(loo_Resp.StatusCode) // The HTTP request succeeded if the response status code = 200. if loo_Resp.StatusCode <> 200 then Write-Debug loo_Resp.BodyStr Write-Debug "Failed" destroy loo_Resp destroy loo_Http destroy loo_JsonToken return end if loo_Json = create oleobject // Use "Chilkat_9_5_0.JsonObject" for versions of Chilkat < 10.0.0 li_rc = loo_Json.ConnectToNewObject("Chilkat.JsonObject") loo_Json.Load(loo_Resp.BodyStr) loo_Json.EmitCompact = 0 Write-Debug loo_Json.Emit() // Here is a sample response: // Use this online tool to generate parsing code from sample JSON: // Generate Parsing Code from JSON // { // "value": [ // { // "originalStartTimeZone": "originalStartTimeZone-value", // "originalEndTimeZone": "originalEndTimeZone-value", // "responseStatus": { // "response": "", // "time": "datetime-value" // }, // "iCalUId": "iCalUId-value", // "reminderMinutesBeforeStart": 99, // "isReminderOn": true // } // ] // } destroy loo_Resp i = 0 li_Count_i = loo_Json.SizeOfArray("value") do while i < li_Count_i loo_Json.I = i ls_OriginalStartTimeZone = loo_Json.StringOf("value[i].originalStartTimeZone") ls_OriginalEndTimeZone = loo_Json.StringOf("value[i].originalEndTimeZone") ls_ResponseStatusResponse = loo_Json.StringOf("value[i].responseStatus.response") ls_ResponseStatusTime = loo_Json.StringOf("value[i].responseStatus.time") ls_ICalUId = loo_Json.StringOf("value[i].iCalUId") li_ReminderMinutesBeforeStart = loo_Json.IntOf("value[i].reminderMinutesBeforeStart") li_IsReminderOn = loo_Json.BoolOf("value[i].isReminderOn") i = i + 1 loop destroy loo_Http destroy loo_JsonToken destroy loo_Json |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.