我想知道谷歌是否有一个网页来描述如何处理谷歌日历 API 的错误。驱动程序在https://developers.google.com/drive/handle-errors有一页。我没有通过谷歌搜索找到类似的页面。请让我知道是否有一页。
干杯!
我想知道谷歌是否有一个网页来描述如何处理谷歌日历 API 的错误。驱动程序在https://developers.google.com/drive/handle-errors有一页。我没有通过谷歌搜索找到类似的页面。请让我知道是否有一页。
干杯!
这可能为时已晚,但现在有一个适用于 V3:
https://developers.google.com/google-apps/calendar/v3/errors
您可以在使用 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 服务的其他功能中,您可以处理此错误。