Rust
Rust
Insert a New Google Calendar Event
See more Google Calendar Examples
Demonstrates how to insert a new Google Calendar event.Chilkat Rust Downloads
// 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..
let json_token = chilkat::JsonObject::new();
let _ = json_token.load_file("qa_data/tokens/googleCalendar.json").is_ok();
if !json_token.has_member("access_token") {
println!("No access token found.");
return;
}
let http = chilkat::Http::new();
http.set_auth_token(&json_token.string_of("access_token").unwrap_or_default());
// Build a Google Calendar event:
let json = chilkat::JsonObject::new();
json.set_emit_compact(false);
let _ = json.update_string("kind", "calendar#event");
let _ = json.update_string("summary", "Eat Lou Malnati's Pizza");
let _ = json.update_string("start.dateTime", "2021-03-12T12:00:00-05:00");
let _ = json.update_string("end.dateTime", "2021-03-12T13:00:00-05:00");
println!("{}", json.emit().unwrap_or_default());
// This is the event JSON we'll be sending the HTTP POST:
// {
// "kind": "calendar#event",
// "summary": "Eat Lou Malnati's Pizza",
// "start": {
// "dateTime": "2021-03-12T12:00:00-05:00"
// },
// "end": {
// "dateTime": "2021-03-12T13:00:00-05:00"
// }
// }
let url = "https://www.googleapis.com/calendar/v3/calendars/{$calendarId}/events".to_string();
let _ = http.set_url_var("calendarId", "primary");
let resp = chilkat::HttpResponse::new();
if http.http_json("POST", &url, &json, "application/json", &resp).is_err() {
println!("{}", http.last_error_text());
return;
}
let json_resp = chilkat::JsonObject::new();
json_resp.set_emit_compact(false);
let _ = json_resp.load(&resp.body_str());
if resp.status_code() == 200 {
// Success.
// The newly created event resource JSON is returned.
println!("{}", json_resp.emit().unwrap_or_default());
} else {
if resp.status_code() == 401 {
println!("Try refreshing the access token and then retry...");
}
// Failed.
// Show the JSON error response.
println!("{}", json_resp.emit().unwrap_or_default());
}
// A successful response body:
// {
// "kind": "calendar#event",
// "etag": "\"3004969011208000\"",
// "id": "v7kvmsvsoms3hjl5uq423jqhb0",
// "status": "confirmed",
// "htmlLink": "https://www.google.com/calendar/event?eid=djdrdm1zdnNvbXMzaGpsNXVxNDIzanFoYjAgc3VwcG9ydEBjaGlsa2F0Y2xvdWQuY29t",
// "created": "2017-08-11T20:48:25.000Z",
// "updated": "2017-08-11T20:48:25.604Z",
// "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": "v7kvmsvsoms3hjl5uq423jqhb0@google.com",
// "sequence": 0,
// "hangoutLink": "https://plus.google.com/hangouts/_/chilkatcloud.com/support?hceid=c3VwcG9ydEBjaGlsa2F0Y2xvdWQuY29t.v7kvmsvsoms3hjl5uq423jqhb0",
// "reminders": {
// "useDefault": true
// }
// }