我想知道是否有来自Google的网页描述如何处理Google日历API的错误。驱动程序在https://developers.google.com/drive/handle-errors处有一页。我没有通过谷歌搜索找到类似的页面。如果有一页,请告诉我。
干杯!
答案 0 :(得分:1)
这可能有点太迟了,但现在有一个用于V3:
https://developers.google.com/google-apps/calendar/v3/errors
答案 1 :(得分:0)
您可以使用Google日历将相同的Google云端硬盘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服务的其他功能中,您可以处理此错误。