Skip to content

Instantly share code, notes, and snippets.

@migliori
migliori / addAttendee.php
Last active February 13, 2024 06:34 — forked from AFelipeTrujillo/addAttendee.php
Use Google Calendar API #google #api
<?php
include_once 'google-api-php-client/vendor/autoload.php';
$client = new Google_Client();
$application_creds = 'service-account-credentials.json';
$credentials_file = file_exists($application_creds) ? $application_creds : false;
define("SCOPE",Google_Service_Calendar::CALENDAR);
define("APP_NAME","Google Calendar API PHP");