C++ Google Calendar: Get an Event

Back to Index

Returns a specified event from a specified calendar.
This example gets an event from the calendar having the ID = "support@chilkatcloud.com", where the event ID equals "35ocdnnjofbtfs6c602uqvdg9u"

Documentation: https://developers.google.com/google-apps/calendar/v3/reference/events/get


#include <CkRest.h>
#include <CkOAuth2.h>
#include <CkStringBuilder.h>
#include <CkJsonObject.h>

void ChilkatSample(void)
    {
    CkRest rest;
    bool success;

    //   Provide a previously obtained OAuth2 access token.
    CkOAuth2 oauth2;
    oauth2.put_AccessToken("OAUTH2_ACCESS_TOKEN");
    rest.SetAuthOAuth2(oauth2);

    success = rest.Connect("www.googleapis.com",443,true,true);
    if (success != true) {
        std::cout << rest.lastErrorText() << "\r\n";
        return;
    }

    CkStringBuilder sbJson;
    success = rest.FullRequestNoBodySb("GET","/calendar/v3/calendars/support@chilkatcloud.com/events/35ocdnnjofbtfs6c602uqvdg9u",sbJson);
    if (success != true) {
        std::cout << rest.lastErrorText() << "\r\n";
        return;
    }

    if (rest.get_ResponseStatusCode() != 200) {
        std::cout << "Received error response code: " << rest.get_ResponseStatusCode() << "\r\n";
        std::cout << "Response body:" << "\r\n";
        std::cout << sbJson.getAsString() << "\r\n";
        return;
    }

    CkJsonObject json;
    json.LoadSb(sbJson);

    //  The following code parses the JSON response.
    //  A sample JSON response is shown below the sample code.
    const char *kind = 0;
    const char *etag = 0;
    const char *id = 0;
    const char *status = 0;
    const char *htmlLink = 0;
    const char *created = 0;
    const char *updated = 0;
    const char *summary = 0;
    const char *location = 0;
    const char *creatorEmail = 0;
    bool creatorSelf;
    const char *organizerEmail = 0;
    bool organizerSelf;
    const char *startDateTime = 0;
    const char *endDateTime = 0;
    const char *iCalUID = 0;
    int sequence;
    const char *hangoutLink = 0;
    bool remindersUseDefault;
    int i;
    int count_i;
    const char *email = 0;
    const char *responseStatus = 0;
    bool organizer;
    bool self;

    kind = json.stringOf("kind");
    etag = json.stringOf("etag");
    id = json.stringOf("id");
    status = json.stringOf("status");
    htmlLink = json.stringOf("htmlLink");
    created = json.stringOf("created");
    updated = json.stringOf("updated");
    summary = json.stringOf("summary");
    location = json.stringOf("location");
    creatorEmail = json.stringOf("creator.email");
    creatorSelf = json.BoolOf("creator.self");
    organizerEmail = json.stringOf("organizer.email");
    organizerSelf = json.BoolOf("organizer.self");
    startDateTime = json.stringOf("start.dateTime");
    endDateTime = json.stringOf("end.dateTime");
    iCalUID = json.stringOf("iCalUID");
    sequence = json.IntOf("sequence");
    hangoutLink = json.stringOf("hangoutLink");
    remindersUseDefault = json.BoolOf("reminders.useDefault");
    i = 0;
    count_i = json.SizeOfArray("attendees");
    while (i < count_i) {
        json.put_I(i);
        email = json.stringOf("attendees[i].email");
        responseStatus = json.stringOf("attendees[i].responseStatus");
        organizer = json.BoolOf("attendees[i].organizer");
        self = json.BoolOf("attendees[i].self");
        i = i + 1;
    }

    std::cout << "Example Completed." << "\r\n";
    }

Sample JSON Response Body

{
  "kind": "calendar#event",
  "etag": "\"3020331471326000\"",
  "id": "35ocdnnjofbtfs6c602uqvdg9u",
  "status": "confirmed",
  "htmlLink": "https://www.google.com/calendar/event?eid=MzVvY2RubmpvZmJ0ZnM2YzYwMnVxdmRnOXUgc3VwcG9ydEBjaGlsa2F0Y2xvdWQuY29t",
  "created": "2017-11-08T18:25:38.000Z",
  "updated": "2017-11-08T18:28:55.663Z",
  "summary": "QXQC",
  "location": "Quigley's Irish Pub, 43 E Jefferson Ave, Naperville, IL 60540, USA",
  "creator": {
    "email": "support@chilkatcloud.com",
    "self": true
  },
  "organizer": {
    "email": "support@chilkatcloud.com",
    "self": true
  },
  "start": {
    "dateTime": "2017-11-09T20:00:00-06:00"
  },
  "end": {
    "dateTime": "2017-11-09T23:00:00-06:00"
  },
  "iCalUID": "35ocdnnjofbtfs6c602uqvdg9u@google.com",
  "sequence": 0,
  "attendees": [
    {
      "email": "dean@example.com",
      "responseStatus": "needsAction"
    },
    {
      "email": "support@chilkatcloud.com",
      "organizer": true,
      "self": true,
      "responseStatus": "accepted"
    },
    {
      "email": "ajay@example.com",
      "responseStatus": "needsAction"
    },
    {
      "email": "jim@example.com",
      "responseStatus": "needsAction"
    },
    {
      "email": "gilian@example.com",
      "responseStatus": "needsAction"
    }
  ],
  "hangoutLink": "https://plus.google.com/hangouts/_/chilkatcloud.com/support?hceid=c3VwcG9ydEBjaGlsa2F0Y2xvdWQuY29t.35ocdnnjofbtfs6c602uqvdg9u",
  "reminders": {
    "useDefault": true
  }
}