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
(C) Google Calendar Search Events (List Events with Optional Query Parameters)See more Google Calendar ExamplesDemonstrates how to specify optional query parameters for listing events. This example uses the "q" parameter to free-text search for events, and uses the "timeMin" parameter to specify a lower bound for an event's end time.
#include <C_CkJsonObject.h> #include <C_CkHttp.h> #include <C_CkStringBuilder.h> #include <C_CkHttpRequest.h> #include <C_CkDateTime.h> void ChilkatSample(void) { HCkJsonObject jsonToken; BOOL success; HCkHttp http; HCkStringBuilder sbUrl; HCkHttpRequest req; HCkDateTime dt; HCkStringBuilder sbResponse; HCkJsonObject json; int numEvents; int i; // This example requires the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. // This example uses a previously obtained access token having permission for the // Google Calendar scope. // In this example, Get Google Calendar OAuth2 Access Token, the access // token was saved to a JSON file. This example fetches the access token from the file.. jsonToken = CkJsonObject_Create(); success = CkJsonObject_LoadFile(jsonToken,"qa_data/tokens/googleCalendar.json"); if (CkJsonObject_HasMember(jsonToken,"access_token") == FALSE) { printf("No access token found.\n"); CkJsonObject_Dispose(jsonToken); return; } http = CkHttp_Create(); CkHttp_putAuthToken(http,CkJsonObject_stringOf(jsonToken,"access_token")); // We'll want to build a URL with the query params.. sbUrl = CkStringBuilder_Create(); CkStringBuilder_Append(sbUrl,"https://www.googleapis.com/calendar/v3/calendars/{$calendarId}/events?"); // Use the HTTP request object as a helper for creating the URL encoded query param list.. req = CkHttpRequest_Create(); // Find events with the word "pizza". CkHttpRequest_AddParam(req,"q","pizza"); // Get events for the current date/time or later. dt = CkDateTime_Create(); CkDateTime_SetFromCurrentSystemTime(dt); CkHttpRequest_AddParam(req,"timeMin",CkDateTime_getAsTimestamp(dt,FALSE)); // Add these query params to the URL: CkStringBuilder_Append(sbUrl,CkHttpRequest_getUrlEncodedParams(req)); // Examine the URL.. printf("URL: %s\n",CkStringBuilder_getAsString(sbUrl)); // The URL looks like this: // https://www.googleapis.com/calendar/v3/calendars/{$calendarId}/events?q=pizza&timeMin=2017-08-11T13%3A35%3A28Z // Let's get events in the primary calendar. A calendar ID could have be used instead of "primary". CkHttp_SetUrlVar(http,"calendarId","primary"); sbResponse = CkStringBuilder_Create(); success = CkHttp_QuickGetSb(http,CkStringBuilder_getAsString(sbUrl),sbResponse); if (success != TRUE) { printf("%s\n",CkHttp_lastErrorText(http)); CkJsonObject_Dispose(jsonToken); CkHttp_Dispose(http); CkStringBuilder_Dispose(sbUrl); CkHttpRequest_Dispose(req); CkDateTime_Dispose(dt); CkStringBuilder_Dispose(sbResponse); return; } if (CkHttp_getLastStatus(http) != 200) { // Note: If a 401 unauthorized response is received, it likely means that the OAuth2 access token needs // to be refreshed or re-fetched. printf("Error response status: %d\n",CkHttp_getLastStatus(http)); printf("%s\n",CkStringBuilder_getAsString(sbResponse)); CkJsonObject_Dispose(jsonToken); CkHttp_Dispose(http); CkStringBuilder_Dispose(sbUrl); CkHttpRequest_Dispose(req); CkDateTime_Dispose(dt); CkStringBuilder_Dispose(sbResponse); return; } printf("%s\n",CkStringBuilder_getAsString(sbResponse)); // A sample JSON response: // (Code for parsing the Google Calendar events is shown below.) // { // "kind": "calendar#events", // "etag": "\"p32cafkumkb7ta0g\"", // "summary": "support@chilkatcloud.com", // "updated": "2017-08-11T13:19:48.143Z", // "timeZone": "America/Chicago", // "accessRole": "owner", // "defaultReminders": [ // { // "method": "popup", // "minutes": 10 // } // ], // "nextSyncToken": "CJin09aiz9UCEJin09aiz9UCGAU=", // "items": [ // { // "kind": "calendar#event", // "etag": "\"3004915160212000\"", // "id": "02pv1cpdp7vm11htnfi3ii7iie", // "status": "confirmed", // "htmlLink": "https://www.google.com/calendar/event?eid=MDJwdjFjcGRwN3ZtMTFodG5maTNpaTdpaWUgc3VwcG9ydEBjaGlsa2F0Y2xvdWQuY29t", // "created": "2017-08-11T13:19:40.000Z", // "updated": "2017-08-11T13:19:40.106Z", // "summary": "Eat Lou Malnati's Pizza", // "creator": { // "email": "support@chilkatcloud.com", // "self": true // }, // "organizer": { // "email": "support@chilkatcloud.com", // "self": true // }, // "start": { // "dateTime": "2017-08-12T12:00:00-05:00" // }, // "end": { // "dateTime": "2017-08-12T13:00:00-05:00" // }, // "iCalUID": "02pv1cpdp7vm11htnfi3ii7iie@google.com", // "sequence": 0, // "hangoutLink": "https://plus.google.com/hangouts/_/chilkatcloud.com/support?hceid=c3VwcG9ydEBjaGlsa2F0Y2xvdWQuY29t.02pv1cpdp7vm11htnfi3ii7iie", // "reminders": { // "useDefault": true // } // } // ] // } // // json = CkJsonObject_Create(); CkJsonObject_LoadSb(json,sbResponse); numEvents = CkJsonObject_SizeOfArray(json,"items"); i = 0; while (i < numEvents) { CkJsonObject_putI(json,i); printf("%s\n",CkJsonObject_stringOf(json,"items[i].summary")); printf("%s\n",CkJsonObject_stringOf(json,"items[i].start.dateTime")); printf("%s\n",CkJsonObject_stringOf(json,"items[i].end.dateTime")); printf("--\n"); i = i + 1; } // Sample output: // Eat Lou Malnati's Pizza // 2017-08-12T12:00:00-05:00 // 2017-08-12T13:00:00-05:00 // -- CkJsonObject_Dispose(jsonToken); CkHttp_Dispose(http); CkStringBuilder_Dispose(sbUrl); CkHttpRequest_Dispose(req); CkDateTime_Dispose(dt); CkStringBuilder_Dispose(sbResponse); CkJsonObject_Dispose(json); } |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.