是否有关于处理谷歌日历API错误的文档



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

干杯!

这可能有点晚了,但现在有一个V3:

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

您可以在使用Google Calendar的应用程序中使用相同的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服务的函数中,你可以处理这个错误。

相关内容

  • 没有找到相关文章

最新更新