Google Calendar API
Google Calendar API integration for Delphi. Create, read, update, and delete calendar events programmatically.
Google Calendar API integration for Delphi. Create, read, update, and delete calendar events programmatically.
uses
sgcHTTP_API_Google_Calendar;
var
Calendar: TsgcHTTPGoogleCalendar;
begin
Calendar := TsgcHTTPGoogleCalendar.Create(nil);
Calendar.GoogleOptions.ClientId := 'your-client-id';
Calendar.GoogleOptions.ClientSecret := 'your-secret';
// Create a new event
Calendar.CreateEvent('primary',
'Meeting', Now, Now + 1/24);
end;
Deep-link to the component reference, grab the ready-to-run demo project, and download the trial.