Gdata の例外処理


デフォルト以外のカレンダー指定

  1. カレンダーIDの取得
     $gdataCal = new Zend_Gdata_Calendar($client);
     $calFeed = $gdataCal->getCalendarListFeed();
     echo "<h1>" . $calFeed->title->text . "</h1>\n";
     echo "<ul>\n";
     foreach ($calFeed as $calendar) {
       preg_match("/\/([^\/]+)$/i",$calendar->id->text,$match);
       echo $calendar->title->text . "のカレンダーID:" . $match[1] . "<br />\n";
     }
     echo "</ul>\n"
  2. カレンダーIDを指定して取得
    $query = $service->newEventQuery();
    $query->setUser(カレンダーID);

Google Calenderの操作


トップ   編集 凍結 差分 バックアップ 添付 複製 名前変更 リロード   新規 一覧 検索 最終更新   ヘルプ   最終更新のRSS
Last-modified: 2018-09-15 (土) 07:31:38