Skip to content

Instantly share code, notes, and snippets.

View FehNeves01's full-sized avatar

FELIPE BARBOSA NEVES FehNeves01

  • CPV - Educacional
View GitHub Profile
@FehNeves01
FehNeves01 / addAttendee.php
Created August 22, 2023 18:55 — forked from AFelipeTrujillo/addAttendee.php
Use Google Calendar 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");