1

我想知道谷歌是否有一个网页来描述如何处理谷歌日历 API 的错误。驱动程序在https://developers.google.com/drive/handle-errors有一页。我没有通过谷歌搜索找到类似的页面。请让我知道是否有一页。

干杯!

4

2 回答 2

1

这可能为时已晚,但现在有一个适用于 V3:

https://developers.google.com/google-apps/calendar/v3/errors

于 2016-04-28T14:05:51.177 回答
0

您可以在使用 Google 日历的应用程序中使用相同的 Google Drive API 示例代码。例如,要返回资源未找到(错误 404)或服务无法执行的错误,您可以执行以下操作:

  <?php

  try { 
    $service->events->delete($calendar, $id, array('sendNotifications' => true)); 
    return true; 
  } catch (Google_Exception $e) { 
    print $e->getCode(); 
    //return false; 
    // or display the error message with $e->getMessage()
  }

  ?> 

因此,在尝试使用此 google 服务的其他功能中,您可以处理此错误。

于 2013-07-12T13:18:47.727 回答