Unicode C++ Google Calendar: Get Calendar

Back to Index

Returns an entry on the user's calendar list.
This example gets the calendar having the ID = "support@chilkatcloud.com".

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


#include <CkRestW.h>
#include <CkOAuth2W.h>
#include <CkStringBuilderW.h>
#include <CkJsonObjectW.h>

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

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

    success = rest.Connect(L"www.googleapis.com",443,true,true);
    if (success != true) {
        wprintf(L"%s\n",rest.lastErrorText());
        return;
    }

    CkStringBuilderW sbJson;
    success = rest.FullRequestNoBodySb(L"GET",L"/calendar/v3/users/me/calendarList/support@chilkatcloud.com",sbJson);
    if (success != true) {
        wprintf(L"%s\n",rest.lastErrorText());
        return;
    }

    if (rest.get_ResponseStatusCode() != 200) {
        wprintf(L"Received error response code: %d\n",rest.get_ResponseStatusCode());
        wprintf(L"Response body:\n");
        wprintf(L"%s\n",sbJson.getAsString());
        return;
    }

    CkJsonObjectW json;
    json.LoadSb(sbJson);

    //  The following code parses the JSON response.
    //  A sample JSON response is shown below the sample code.
    const wchar_t *kind = 0;
    const wchar_t *etag = 0;
    const wchar_t *id = 0;
    const wchar_t *summary = 0;
    const wchar_t *timeZone = 0;
    const wchar_t *colorId = 0;
    const wchar_t *backgroundColor = 0;
    const wchar_t *foregroundColor = 0;
    bool selected;
    const wchar_t *accessRole = 0;
    bool primary;
    int i;
    int count_i;
    const wchar_t *method = 0;
    int minutes;
    const wchar_t *type = 0;

    kind = json.stringOf(L"kind");
    etag = json.stringOf(L"etag");
    id = json.stringOf(L"id");
    summary = json.stringOf(L"summary");
    timeZone = json.stringOf(L"timeZone");
    colorId = json.stringOf(L"colorId");
    backgroundColor = json.stringOf(L"backgroundColor");
    foregroundColor = json.stringOf(L"foregroundColor");
    selected = json.BoolOf(L"selected");
    accessRole = json.stringOf(L"accessRole");
    primary = json.BoolOf(L"primary");
    i = 0;
    count_i = json.SizeOfArray(L"defaultReminders");
    while (i < count_i) {
        json.put_I(i);
        method = json.stringOf(L"defaultReminders[i].method");
        minutes = json.IntOf(L"defaultReminders[i].minutes");
        i = i + 1;
    }

    i = 0;
    count_i = json.SizeOfArray(L"notificationSettings.notifications");
    while (i < count_i) {
        json.put_I(i);
        type = json.stringOf(L"notificationSettings.notifications[i].type");
        method = json.stringOf(L"notificationSettings.notifications[i].method");
        i = i + 1;
    }

    wprintf(L"Example Completed.\n");
    }

Sample JSON Response Body

{
  "kind": "calendar#calendarListEntry",
  "etag": "\"1465249947472000\"",
  "id": "support@chilkatcloud.com",
  "summary": "support@chilkatcloud.com",
  "timeZone": "America/Chicago",
  "colorId": "14",
  "backgroundColor": "#9fe1e7",
  "foregroundColor": "#000000",
  "selected": true,
  "accessRole": "owner",
  "defaultReminders": [
    {
      "method": "popup",
      "minutes": 10
    }
  ],
  "notificationSettings": {
    "notifications": [
      {
        "type": "eventCreation",
        "method": "email"
      },
      {
        "type": "eventChange",
        "method": "email"
      },
      {
        "type": "eventCancellation",
        "method": "email"
      },
      {
        "type": "eventResponse",
        "method": "email"
      }
    ]
  },
  "primary": true
}