Skip to content

Instantly share code, notes, and snippets.

View jainsiddharth21's full-sized avatar
🤔

Siddharth Jain jainsiddharth21

🤔
View GitHub Profile
@daudmalik06
daudmalik06 / addAttendee.php
Created July 28, 2017 09:10 — 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");