Java Google Calendar: QuickAdd a Calendar Event

Back to Index

Creates an event based on a simple text string. (This example adds an event to the calendar with id = "support@chilkatcloud.com".)

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


import com.chilkatsoft.*;

public class ChilkatExample {

  static {
    try {
        System.loadLibrary("chilkat");
    } catch (UnsatisfiedLinkError e) {
      System.err.println("Native code library failed to load.\n" + e);
      System.exit(1);
    }
  }

  public static void main(String argv[])
  {
    CkRest rest = new CkRest();
    boolean success;

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

    success = rest.Connect("www.googleapis.com",443,true,true);
    if (success != true) {
        System.out.println(rest.lastErrorText());
        return;
        }

    rest.AddQueryParam("text","Dentist Appointment");
    rest.AddQueryParam("sendNotifications","true");

    CkStringBuilder sbReq = new CkStringBuilder();

    CkStringBuilder sbJson = new CkStringBuilder();
    success = rest.FullRequestSb("POST","/calendar/v3/calendars/support@chilkatcloud.com/events/quickAdd",sbReq,sbJson);
    if (success != true) {
        System.out.println(rest.lastErrorText());
        return;
        }

    if (rest.get_ResponseStatusCode() != 200) {
        System.out.println("Received error response code: " + rest.get_ResponseStatusCode());
        System.out.println("Response body:");
        System.out.println(sbJson.getAsString());
        return;
        }

    CkJsonObject json = new CkJsonObject();
    json.LoadSb(sbJson);

    //  The following code parses the JSON response.
    //  A sample JSON response is shown below the sample code.
    String kind;
    String etag;
    String id;
    String status;
    String htmlLink;
    String created;
    String updated;
    String summary;
    String creatorEmail;
    boolean creatorSelf;
    String organizerEmail;
    boolean organizerSelf;
    String startDateTime;
    String endDateTime;
    String iCalUID;
    int sequence;
    String hangoutLink;
    boolean remindersUseDefault;

    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");
    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");

    System.out.println("Example Completed.");
  }
}

Sample JSON Response Body

{
  "kind": "calendar#event",
  "etag": "\"3020352941868000\"",
  "id": "52e7uk7j7vl5dosj7b25memov0",
  "status": "confirmed",
  "htmlLink": "https://www.google.com/calendar/event?eid=NTJlN3VrN2o3dmw1ZG9zajdiMjVtZW1vdjAgc3VwcG9ydEBjaGlsa2F0Y2xvdWQuY29t",
  "created": "2017-11-08T21:27:50.000Z",
  "updated": "2017-11-08T21:27:50.934Z",
  "summary": "Dentist Appointment",
  "creator": {
    "email": "support@chilkatcloud.com",
    "self": true
  },
  "organizer": {
    "email": "support@chilkatcloud.com",
    "self": true
  },
  "start": {
    "dateTime": "2017-11-08T15:27:50-06:00"
  },
  "end": {
    "dateTime": "2017-11-08T16:27:50-06:00"
  },
  "iCalUID": "52e7uk7j7vl5dosj7b25memov0@google.com",
  "sequence": 0,
  "hangoutLink": "https://plus.google.com/hangouts/_/chilkatcloud.com/support?hceid=c3VwcG9ydEBjaGlsa2F0Y2xvdWQuY29t.52e7uk7j7vl5dosj7b25memov0",
  "reminders": {
    "useDefault": true
  }
}