谷歌日历API(v3)-PHP可以写但不能读?

谷歌日历API(v3)-PHP可以写但不能读?,php,curl,calendar,google-api,google-calendar-api,Php,Curl,Calendar,Google Api,Google Calendar Api,我花了一整天的时间研究谷歌日历API。我终于设法在我的谷歌日历中插入了一个事件,但现在我似乎无法让“list”命令正常工作 以下代码有效: <?php $start = array( "dateTime" => $date . "T" . $start_time . ":00", "timeZone" => "Europe/Berlin" ); $end = array( "dateTime" =

我花了一整天的时间研究谷歌日历API。我终于设法在我的谷歌日历中插入了一个事件,但现在我似乎无法让“list”命令正常工作

以下代码有效:

    <?php
    $start = array(
        "dateTime" => $date . "T" . $start_time . ":00",
        "timeZone" => "Europe/Berlin"
    );

    $end = array(
        "dateTime" => $date . "T" . $end_time . ":00",
        "timeZone" => "Europe/Berlin"
    );

    $headerarray = array(
        'Content-type: application/json',
        'Authorization: Bearer ' . $access_token,
        'X-JavaScript-User-Agent: Google APIs Explorer'
    );

    $post_data = array(
        "start"       => $start,
        "end"         => $end,
        "summary"     => $title,
        "description" => $description,
        "key"         => $api_key
    );

    $post_data = json_encode($post_data);

    $url = 'https://www.googleapis.com/calendar/v3/calendars/' . $calendar_id . '/events';

    $ch = curl_init();
    curl_setopt($ch, CURLOPT_URL, $url);
    curl_setopt($ch, CURLOPT_POST, 1);
    curl_setopt($ch, CURLOPT_HTTPGET, true);
    curl_setopt($ch, CURLOPT_HTTPHEADER, $headerarray);
    curl_setopt($ch, CURLOPT_POSTFIELDS, $post_data);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);

    $response = curl_exec($ch);
    $response = json_decode($response);
    ?>

这段代码在我的日历中创建了一个新事件,所以我应该正确设置所有内容,对吗

但是,此代码不起作用:

    <?php
    $headerarray = array(
        "Authorization: Bearer " . $access_token,
        "X-JavaScript-User-Agent: Google APIs Explorer"
    );

    $url = 'https://www.googleapis.com/calendar/v3/calendars/' . $calendar_id . '/events?key=' . $api_key;

    $ch = curl_init();
    curl_setopt($ch, CURLOPT_URL, $url);
    curl_setopt($ch, CURLOPT_HTTPHEADER, $headerarray);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);

    $response = curl_exec($ch);
    $response = json_decode($response);
    ?>

在这种情况下,我得到以下响应:
Access未配置。请使用Google开发者控制台激活项目的API。

但事实并非如此。我正确配置了访问权限,否则我将无法将事件插入日历,对吗?也许我没有使用cURL,对吗

这是列表功能的参考:

我在这里看不到什么?非常感谢您的帮助。

试试这个:

  • 转到:
  • 选择项目
  • 转到:API和身份验证
  • 激活日历api

    • 我花了一整天的时间来创建事件,我能够获取事件

      这是我从GoogleOAuth获取数据的代码,我正在使用codeigniter框架

      <?php
          // product_config
           $config['google_id'] = '';
           $config['google_secret'] = '';
      
          // oauth file
          function get_calendar_events(OAuth2_Token_Access $token){
              try{
      
                  $max_results = 250;
                  $url = 'https://www.googleapis.com/calendar/v3/calendars/primary/events?showDeleted=false&$orderBy=email&maxResults='.$max_results.'&alt=json&v=3.0&oauth_token='.$token->access_token;
                  $google_events = json_decode(file_get_contents($url), true);
      
                  return $google_events;
      
              }catch (Exception $e) {
                  // Exception
              }
          }
      
          /*** Controller ***/
          function myCalendar() {
              try {
                  $events = array();
                  $provider_name = 'google';
                  $provider = $this->oauth2->provider($provider_name, array(
                          'id' => $this->config->item($provider_name.'_id', 'product_config'),
                          'secret' => $this->config->item($provider_name.'_secret', 'product_config'),
                          'scopes' =>  array('https://www.googleapis.com/auth/calendar',
                                      'https://www.googleapis.com/auth/calendar.readonly')
                  ));
      
                  if (!$this->input->get('code')){ // access authorizing
                      // By sending no options it'll come back here
                      $provider->authorize();
                  }else{
                      // Get the Token
                      $token = $provider->access($this->input->get('code'));
                      $events  = $provider->get_calendar_events($token);
              }catch (Exception $e) {
                  // Exception
              }
          }
      ?>
      

      好吧,别客气!现在可以了。我不知道为什么。我不知道为什么它以前不起作用。我没有做任何改变,它突然起作用了-在第一个示例中,为什么要使用
      curlopt\u httpget
      curlopt\u post
      public function create_calendar_event(OAuth2_Token_Access $token,$description, $leaveDate , $toLeaveDate,$title, $stime, $etime ){
          try {
      
              $title = $title;
      
              //$start_time = '00:00'; $end_time = '23:59';
              $start_time = $stime;
              $end_time = $etime;
              $timezone       = 'Asia/Kolkata';
      
              $start = array(
                  "dateTime" => $leaveDate . "T" . $start_time . ":00",
                  "timeZone" => $timezone
              );
      
              $end = array(
                  "dateTime" => $toLeaveDate . "T" . $end_time . ":00",
                  "timeZone" => $timezone
              );
      
              $headerarray = array(
                  'Content-type: application/json',
                  'Authorization: Bearer ' . $token->access_token,
                  'X-JavaScript-User-Agent: Google APIs Explorer'
              );
      
              $post_data = array(
                      "start"       => $start,
                      "end"         => $end,
                      "summary"     => $title,
                      "description" => $description,
                      "key"         => $this->api_key
              );
      
              $post_data = json_encode($post_data);
              $calendar_id = 'primary';
      
              $url = 'https://www.googleapis.com/calendar/v3/calendars/' . $calendar_id . '/events';
      
              $result = $this->NewcurlRequest($url, $headerarray, $post_data);
      
          }catch(Exception $e){
              // Exception
          }
      }
      public function NewcurlRequest($url,$headerarray,$post_data, $curl_call = true){
          try{
      
              $ch = curl_init();
              curl_setopt($ch, CURLOPT_URL, $url);
              curl_setopt($ch, CURLOPT_POST, 1);
              //curl_setopt($ch, curlopt_post, true);
              curl_setopt($ch, CURLOPT_HTTPHEADER, $headerarray);
              curl_setopt($ch, CURLOPT_POSTFIELDS, $post_data);
              curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
      
              $response = curl_exec($ch);
              curl_close($ch);
      
              return $response;
          } catch (Exception $e) {
              return $e;
          }
      }