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(超出日历使用限制)
猜你喜欢
- SoapClient 设置自定义 HTTP Header 2021-01-01
- 从 PHP 中的输入表单获取日期 2022-01-01
- 如何定位 php.ini 文件 (xampp) 2022-01-01
- PHP Count 布尔数组中真值的数量 2021-01-01
- Oracle 即时客户端 DYLD_LIBRARY_PATH 错误 2022-01-01
- Mod使用GET变量将子域重写为PHP 2021-01-01
- Laravel 仓库 2022-01-01
- 正确分离 PHP 中的逻辑/样式 2021-01-01
- 没有作曲家的 PSR4 自动加载 2022-01-01
- 带有通配符的 Laravel 验证器 2021-01-01