Chilkat Examples

ChilkatHOME.NET Core C#Android™AutoItCC#C++Chilkat2-PythonCkPythonClassic ASPDataFlexDelphi ActiveXDelphi DLLGoJavaLianjaMono C#Node.jsObjective-CPHP ActiveXPHP ExtensionPerlPowerBuilderPowerShellPureBasicRubySQL ServerSwift 2Swift 3,4,5...TclUnicode CUnicode C++VB.NETVBScriptVisual Basic 6.0Visual FoxProXojo Plugin

.NET Core C# Examples

Web API Categories

ASN.1
AWS KMS
AWS Misc
Amazon EC2
Amazon Glacier
Amazon S3
Amazon S3 (new)
Amazon SES
Amazon SNS
Amazon SQS
Async
Azure Cloud Storage
Azure Key Vault
Azure Service Bus
Azure Table Service
Base64
Bounced Email
Box
CAdES
CSR
CSV
Certificates
Code Signing
Compression
DKIM / DomainKey
DNS
DSA
Diffie-Hellman
Digital Signatures
Dropbox
Dynamics CRM
EBICS
ECC
Ed25519
Email Object
Encryption
FTP
FileAccess
Firebase
GMail REST API
GMail SMTP/IMAP/POP
Geolocation
Google APIs
Google Calendar
Google Cloud SQL
Google Cloud Storage
Google Drive
Google Photos
Google Sheets
Google Tasks
Gzip
HTML-to-XML/Text
HTTP

HTTP Misc
IMAP
JSON
JSON Web Encryption (JWE)
JSON Web Signatures (JWS)
JSON Web Token (JWT)
Java KeyStore (JKS)
MHT / HTML Email
MIME
MS Storage Providers
Microsoft Graph
Misc
NTLM
OAuth1
OAuth2
OIDC
Office365
OneDrive
OpenSSL
Outlook
Outlook Calendar
Outlook Contact
PDF Signatures
PEM
PFX/P12
PKCS11
POP3
PRNG
REST
REST Misc
RSA
SCP
SCard
SFTP
SMTP
SSH
SSH Key
SSH Tunnel
ScMinidriver
SharePoint
SharePoint Online
Signing in the Cloud
Socket/SSL/TLS
Spider
Stream
Tar Archive
ULID/UUID
Upload
WebSocket
XAdES
XML
XML Digital Signatures
XMP
Zip
curl

 

 

 

(.NET Core C#) Google Calendar Search Events (List Events with Optional Query Parameters)

See more Google Calendar Examples

Demonstrates 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.

Chilkat .NET Downloads

Chilkat .NET Assemblies

Chilkat for .NET Core

Chilkat for Mono

// 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..
Chilkat.JsonObject jsonToken = new Chilkat.JsonObject();
bool success = jsonToken.LoadFile("qa_data/tokens/googleCalendar.json");
if (jsonToken.HasMember("access_token") == false) {
    Debug.WriteLine("No access token found.");
    return;
}

Chilkat.Http http = new Chilkat.Http();
http.AuthToken = jsonToken.StringOf("access_token");

// We'll want to build a URL with the query params..
Chilkat.StringBuilder sbUrl = new Chilkat.StringBuilder();
sbUrl.Append("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..
Chilkat.HttpRequest req = new Chilkat.HttpRequest();

// Find events with the word "pizza".
req.AddParam("q","pizza");

// Get events for the current date/time or later.
Chilkat.CkDateTime dt = new Chilkat.CkDateTime();
dt.SetFromCurrentSystemTime();
req.AddParam("timeMin",dt.GetAsTimestamp(false));

// Add these query params to the URL:
sbUrl.Append(req.GetUrlEncodedParams());

// Examine the URL..
Debug.WriteLine("URL: " + sbUrl.GetAsString());

// 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".
http.SetUrlVar("calendarId","primary");
Chilkat.StringBuilder sbResponse = new Chilkat.StringBuilder();
success = http.QuickGetSb(sbUrl.GetAsString(),sbResponse);
if (success != true) {
    Debug.WriteLine(http.LastErrorText);
    return;
}

if (http.LastStatus != 200) {
    // Note: If a 401 unauthorized response is received, it likely means that the OAuth2 access token needs
    // to be refreshed or re-fetched.
    Debug.WriteLine("Error response status: " + Convert.ToString(http.LastStatus));
    Debug.WriteLine(sbResponse.GetAsString());
    return;
}

Debug.WriteLine(sbResponse.GetAsString());

// 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
//    }
//   }
//  ]
// }
// 
// 

Chilkat.JsonObject json = new Chilkat.JsonObject();
json.LoadSb(sbResponse);

int numEvents = json.SizeOfArray("items");
int i = 0;
while (i < numEvents) {
    json.I = i;
    Debug.WriteLine(json.StringOf("items[i].summary"));
    Debug.WriteLine(json.StringOf("items[i].start.dateTime"));
    Debug.WriteLine(json.StringOf("items[i].end.dateTime"));
    Debug.WriteLine("--");
    i = i + 1;
}

// Sample output:

// Eat Lou Malnati's Pizza
// 2017-08-12T12:00:00-05:00
// 2017-08-12T13:00:00-05:00
// --

 

© 2000-2024 Chilkat Software, Inc. All Rights Reserved.