Objective-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


#import <CkoRest.h>
#import <CkoOAuth2.h>
#import <CkoStringBuilder.h>
#import <CkoJsonObject.h>
#import <NSString.h>

CkoRest *rest = [[CkoRest alloc] init];
BOOL success;

//   Provide a previously obtained OAuth2 access token.
CkoOAuth2 *oauth2 = [[CkoOAuth2 alloc] init];
oauth2.AccessToken = @"OAUTH2_ACCESS_TOKEN";
[rest SetAuthOAuth2: oauth2];

success = [rest Connect: @"www.googleapis.com" port: [NSNumber numberWithInt: 443] tls: YES autoReconnect: YES];
if (success != YES) {
    NSLog(@"%@",rest.LastErrorText);
    return;
}

CkoStringBuilder *sbJson = [[CkoStringBuilder alloc] init];
success = [rest FullRequestNoBodySb: @"GET" uriPath: @"/calendar/v3/users/me/calendarList/support@chilkatcloud.com" sb: sbJson];
if (success != YES) {
    NSLog(@"%@",rest.LastErrorText);
    return;
}

if ([rest.ResponseStatusCode intValue] != 200) {
    NSLog(@"%@%d",@"Received error response code: ",[rest.ResponseStatusCode intValue]);
    NSLog(@"%@",@"Response body:");
    NSLog(@"%@",[sbJson GetAsString]);
    return;
}

CkoJsonObject *json = [[CkoJsonObject alloc] init];
[json LoadSb: sbJson];

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

kind = [json StringOf: @"kind"];
etag = [json StringOf: @"etag"];
id = [json StringOf: @"id"];
summary = [json StringOf: @"summary"];
timeZone = [json StringOf: @"timeZone"];
colorId = [json StringOf: @"colorId"];
backgroundColor = [json StringOf: @"backgroundColor"];
foregroundColor = [json StringOf: @"foregroundColor"];
selected = [json BoolOf: @"selected"];
accessRole = [json StringOf: @"accessRole"];
primary = [json BoolOf: @"primary"];
i = 0;
count_i = [[json SizeOfArray: @"defaultReminders"] intValue];
while (i < count_i) {
    json.I = [NSNumber numberWithInt: i];
    method = [json StringOf: @"defaultReminders[i].method"];
    minutes = [[json IntOf: @"defaultReminders[i].minutes"] intValue];
    i = i + 1;
}

i = 0;
count_i = [[json SizeOfArray: @"notificationSettings.notifications"] intValue];
while (i < count_i) {
    json.I = [NSNumber numberWithInt: i];
    type = [json StringOf: @"notificationSettings.notifications[i].type"];
    method = [json StringOf: @"notificationSettings.notifications[i].method"];
    i = i + 1;
}

NSLog(@"%@",@"Example Completed.");

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
}