Google calendar api (Calendar usage limits exceeded)(Google 日历 API(超出日历使用限制))
本文介绍了Google 日历 API(超出日历使用限制)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我在我的 php 项目中使用 Google Calendar Api,并且我每天都会收到超出日历使用限制"的情况.插入查询时的消息,但删除和列表方法工作正常․这是我的插入功能.谁能帮帮我?
I am using Google Calendar Api in my php project, and I every day get "Calendar usage limits exceeded" message when I doing insert query, but delete and list methods work fine․ It is my insert function. who can help me?
function insertEvent($start, $end, $cId, $namePhoneClient,$myEmail,$trainerMail){
$client = getClient();
$service = new Google_Service_Calendar($client);
$event = new Google_Service_Calendar_Event(array(
'summary' => $namePhoneClient,
'start' => array(
'dateTime' => $start,
'timeZone' => 'Europe/Moscow',
),
'end' => array(
'dateTime' => $end,
'timeZone' => 'Europe/Moscow',
),
'recurrence' => array(
'RRULE:FREQ=DAILY;COUNT=1'
),
'attendees' => array(
array('email' => $myEmail),
array('email' => $trainerMail),
),
));
$calendarId = $cId;
$event_inserted = $service->events->insert($calendarId, $event);
return $event_inserted;
}
推荐答案
可以查看 API 使用限制 这里和这里.
You can see the API usage limits here and here.
它们如下:
- 每天总计 1,000,000 次查询
- 在短时间内创建了 100,000 个事件
- 在短时间内创建了 60 个日历
- 在短时间内向外部客人发出 10,000 次邀请
- 在短时间内通过给客人发送电子邮件"功能发送了 2,000 封电子邮件
- 在短时间内 750 个日历股
我建议你插入更少的事件.
I suggest that you insert fewer events.
这篇关于Google 日历 API(超出日历使用限制)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
沃梦达教程
本文标题为:Google 日历 API(超出日历使用限制)
基础教程推荐
猜你喜欢
- mysqli_insert_id 是否有可能在高流量应用程序中返回 2021-01-01
- 如何在 PHP 中的请求之间持久化对象 2022-01-01
- Libpuzzle 索引数百万张图片? 2022-01-01
- 通过 PHP SoapClient 请求发送原始 XML 2021-01-01
- 在多维数组中查找最大值 2021-01-01
- 在 Woocommerce 中根据运输方式和付款方式添加费用 2021-01-01
- 在 PHP 中强制下载文件 - 在 Joomla 框架内 2022-01-01
- WooCommerce 中选定产品类别的自定义产品价格后缀 2021-01-01
- 超薄框架REST服务两次获得输出 2022-01-01
- XAMPP 服务器不加载 CSS 文件 2022-01-01