I am trying to insert an event in my calendar using calendar id.
I just copied a code snippet from here
and downloaded SDK from here
Here is my code
<?php // Refer to the PHP quickstart on how to setup the environment: // https://developers.google.com/google-apps/calendar/quickstart/php // Change the scope to Google_Service_Calendar::CALENDAR and delete any stored // credentials. include('google-api-php-client-2.0.3/vendor/autoload.php'); include('google-api-php-client-2.0.3/src/Google/Client.php'); include('google-api-php-client-2.0.3/src/Google/Service/Resource.php'); include('google-api-php-client-2.0.3/google-api-php-client-2.0.3/vendor/google/apiclient-services/src/Google/Service/Calendar.php'); include('google-api-php-client-2.0.3/google-api-php-client-2.0.3/src/Google/Service.php'); $event = new Google_Service_Calendar_Event(array( 'summary' => 'Google I/O 2015', 'location' => '800 Howard St., San Francisco, CA 94103', 'description' => 'A chance to hear more about Google\'s developer products.', 'start' => array( 'dateTime' => '2015-05-28T09:00:00-07:00', 'timeZone' => 'America/Los_Angeles', ), 'end' => array( 'dateTime' => '2015-05-28T17:00:00-07:00', 'timeZone' => 'America/Los_Angeles', ), 'recurrence' => array( 'RRULE:FREQ=DAILY;COUNT=2' ), 'attendees' => array( array('email' => '[email protected]'), array('email' => '[email protected]'), ), 'reminders' => array( 'useDefault' => FALSE, 'overrides' => array( array('method' => 'email', 'minutes' => 24 * 60), array('method' => 'popup', 'minutes' => 10), ), ), )); $calendarId = '[email protected]'; $client = new Google_Client(); $client->setApplicationName("schedular app"); $client->setClientId('xxxxx.apps.googleusercontent.com'); $client->setClientSecret('xxxxxxxxxxxxx'); $service = new Google_Service_Calendar_Events_Resource($client,$event,'',''); $events = $service->insert($calendarId, $event); printf('Event created: %s\n', $event->htmlLink); ?> but I am getting error like
Fatal error: Cannot declare class Google_Service, because the name is already in use in D:\xampp\htdocs\gmt\google-api-php-client-2.0.3\src\Google\Service.php on line 18 How to solve this. or what i am doing wrong. please help.