php - 在谷歌日历中插入事件

标签 php events insert google-calendar-api google-api-php-client

我正在尝试使用日历 ID 在我的日历中插入一个事件。

我刚刚从 here 复制了一段代码

并从here下载了SDK

这是我的代码

<?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' => '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 = 'xxxxxxxxxxxxxx@group.calendar.google.com';

$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);



?>

但是我得到了这样的错误

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

如何解决这个问题。或者我做错了什么。请帮忙。

最佳答案

我猜你的问题的根源是你使用了太多的includes。仅使用 include('google-api-php-client-2.0.3/vendor/autoload.php'); 并删除其余部分。我认为您的代码结构方式应该足以创建事件,但我更喜欢这样做的方式:

<?php

session_start();

//INCLUDE PHP CLIENT LIBRARY
require_once "google-api-php-client-2.0.3/vendor/autoload.php";

$client = new Google_Client();
$client->setAuthConfig("client_creds.json");
$client->setRedirectUri('http://' . $_SERVER['HTTP_HOST'] . '/index.php');
$client->addScope("https://www.googleapis.com/auth/calendar");

if (isset($_SESSION['access_token']) && $_SESSION['access_token']) {

    $client->setAccessToken($_SESSION['access_token']);

    $cal = new Google_Service_Calendar($client);

    $event = new Google_Service_Calendar_Event(array(
      'summary' => 'Event One',
      'location' => 'Some Location',
      'description' => 'Google API Test Event',
      'start' => array(
        'dateTime' => '2016-11-14T10:00:00-07:00'   
      ),
      'end' => array(
        'dateTime' => '2016-11-14T10:25:00-07:00'
      ),  
      'reminders' => array(
        'useDefault' => FALSE,
        'overrides' => array(
          array('method' => 'email', 'minutes' => 24 * 60),
          array('method' => 'popup', 'minutes' => 10),
        ),
      ),
    ));

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

} else {

    if (!isset($_GET['code'])) {    

          $auth_url = $client->createAuthUrl();
          header('Location: ' . filter_var($auth_url, FILTER_SANITIZE_URL));

    } else {  

      $client->authenticate($_GET['code']);
      $_SESSION['access_token'] = $client->getAccessToken();

      $redirect_uri = 'http://' . $_SERVER['HTTP_HOST'] . '/index.php';
      header('Location: ' . filter_var($redirect_uri, FILTER_SANITIZE_URL));

    }

}

?>

请注意,对于 calendar Id 值,我使用 'primary' 因为它将是经过身份验证的用户的主日历。请引用文档here更多细节。希望对您有所帮助!

关于php - 在谷歌日历中插入事件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41374549/

相关文章:

c# - 在sql数据库表中插入新行

php - 从 HTML 将文本区域写入 PHP 文件

c# - Azure 事件中心 - 同一事件中心中的多种事件类型

c - 寻找更好的算法来插入 C 风格字符串 (char *)

c# - 将具有多个事件参数的 VB.NET 事件转换为 C#

C# 通用事件处理 - 链接/代理

php - pdo 准备插入失败

php - 如何在没有子类调用的情况下在父类中自动运行构造

javascript - 重写htaccess找不到文件

php - 尝试动态填充选择列表时的 Json 结果 "undefined"