Google日历API服务帐户

时间:2016-12-09 13:21:28

标签: php google-api google-calendar-api

Google Calendar API有数百个examaple文件,我现在已经被困了几天而且我遇到了很多错误。我下载了https://github.com/google/google-api-php-client/releases/tag/v2.0.3 lib,并尝试在Google日历中添加一个活动。如果您能在stackoverflow上为我们新手提供最新的解决方案,那就太棒了。代码在hostinger.com上运行,文件在同一个目录中。

是否有准备好使用创建事件的示例?像新版this

Isn< client_secret.json'和/calendar-php-quickstart.json'?

相同
<?php
require_once __DIR__ . '/vendor/autoload.php';


define('APPLICATION_NAME', 'Google Calendar API PHP Quickstart');
define('CREDENTIALS_PATH', '/calendar-php-quickstart.json');
define('CLIENT_SECRET_PATH', __DIR__ . '/client_secret.json');
// If modifying these scopes, delete your previously saved credentials
// at ~/.credentials/calendar-php-quickstart.json
define('SCOPES', implode(' ', array(
 Google_Service_Calendar::CALENDAR_READONLY)
));

 if (php_sapi_name() != 'cli') {
  throw new Exception('This application must be run on the command line.');
 }

/**
* Returns an authorized API client.
* @return Google_Client the authorized client object
*/
function getClient() {
$client = new Google_Client();
$client->setApplicationName(APPLICATION_NAME);
$client->setScopes(SCOPES);
$client->setAuthConfig(CLIENT_SECRET_PATH);
$client->setAccessType('offline');

 // Load previously authorized credentials from a file.
 $credentialsPath = expandHomeDirectory(CREDENTIALS_PATH);
 if (file_exists($credentialsPath)) {
  $accessToken = json_decode(file_get_contents($credentialsPath), true);
 } else {
// Request authorization from the user.
$authUrl = $client->createAuthUrl();
printf("Open the following link in your browser:\n%s\n", $authUrl);
print 'Enter verification code: ';
$authCode = trim(fgets(STDIN));

// Exchange authorization code for an access token.
$accessToken = $client->fetchAccessTokenWithAuthCode($authCode);

   // Store the credentials to disk.
   if(!file_exists(dirname($credentialsPath))) {
  mkdir(dirname($credentialsPath), 0700, true);
  }
  file_put_contents($credentialsPath, json_encode($accessToken));
  printf("Credentials saved to %s\n", $credentialsPath);
  }
  $client->setAccessToken($accessToken);

  // Refresh the token if it's expired.
 if ($client->isAccessTokenExpired()) {
$client->fetchAccessTokenWithRefreshToken($client->getRefreshToken());
file_put_contents($credentialsPath, json_encode($client->getAccessToken()));
 }
 return $client;
}

  /**
  * Expands the home directory alias '~' to the full path.
 * @param string $path the path to expand.
 * @return string the expanded path.
 */
function expandHomeDirectory($path) {
$homeDirectory = getenv('HOME');
 if (empty($homeDirectory)) {
  $homeDirectory = getenv('HOMEDRIVE') . getenv('HOMEPATH');
  }
 return str_replace('~', realpath($homeDirectory), $path);
  }

// Get the API client and construct the service object.
 $client = getClient();


 $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' => 'lpage@example.com'),
   array('email' => 'sbrin@example.com'),
  ),
   'reminders' => array(
   'useDefault' => FALSE,
    'overrides' => array(
     array('method' => 'email', 'minutes' => 24 * 60),
     array('method' => 'popup', 'minutes' => 10),
    ),
    ),
    ));

$calendarId = 'primary';
$event = $service->events->insert($calendarId, $event);
printf('Event created: %s\n', $event->htmlLink);

1 个答案:

答案 0 :(得分:0)

This is the example Google gives for php inserting a calendar event in v3:

请注意,对于v3,您必须使用OAuth 2.0,但最好的方法是使用the google-api-php-client using this example called "idtoken"

// 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.

$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' => 'lpage@example.com'),
    array('email' => 'sbrin@example.com'),
  ),
  'reminders' => array(
    'useDefault' => FALSE,
    'overrides' => array(
      array('method' => 'email', 'minutes' => 24 * 60),
      array('method' => 'popup', 'minutes' => 10),
    ),
  ),
));

$calendarId = 'primary';
$event = $service->events->insert($calendarId, $event);
printf('Event created: %s\n', $event->htmlLink);
相关问题