Warning: file_get_contents(/data/phpspider/zhask/data//catemap/3/reactjs/22.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Google calendar api 超出未经验证使用的Google Calendar Webhook有效负载每日限制_Google Calendar Api - Fatal编程技术网

Google calendar api 超出未经验证使用的Google Calendar Webhook有效负载每日限制

Google calendar api 超出未经验证使用的Google Calendar Webhook有效负载每日限制,google-calendar-api,Google Calendar Api,我正在尝试将谷歌日历与我在泽西岛的微服务集成 我已经按照Google文档配置了连接,现在我能够创建和删除Webhook,创建删除和列出事件 然而,当我在Google Calendar中创建一个事件时,该日历本身的webhook的有效负载击中了我的端点,而不是通知我此类事件的创建,它会说: { "error": { "errors": [ { "domain": "usageLimits", "reason": "dailyLimitExceededUnreg",

我正在尝试将谷歌日历与我在泽西岛的微服务集成

我已经按照Google文档配置了连接,现在我能够创建和删除Webhook,创建删除和列出事件

然而,当我在Google Calendar中创建一个事件时,该日历本身的webhook的有效负载击中了我的端点,而不是通知我此类事件的创建,它会说:

{
 "error": {
  "errors": [
   {
    "domain": "usageLimits",
    "reason": "dailyLimitExceededUnreg",
    "message": "Daily Limit for Unauthenticated Use Exceeded. Continued use requires signup.",
    "extendedHelp": "https://code.google.com/apis/console"
   }
  ],
  "code": 403,
  "message": "Daily Limit for Unauthenticated Use Exceeded. Continued use requires signup."
 }
}
连接到项目的范围是日历(应该给予项目读/写权限),当限制为100K时,我总共没有收到100个请求。 OAuth2.0也应该正确配置,因为我能够执行所有基本的CRUD操作

在谷歌方面,我已经启用了日历API,但仍然不走运

你知道我能做什么或者我能做什么吗


谢谢

我自己找到了(愚蠢的)解决方案。。。试图访问Google使用postman和OAuth2.0作为身份验证方法提供的uri资源链接。并自动检索web钩子。。。我期待的是Json负载,而不是负载本身的链接…

启用日历API后,您是否获得了新的访问令牌?@RafaGuillermo我刚刚尝试在google控制台中删除客户端并创建一组新凭据,但我得到了相同的响应。。。这感觉像是谷歌方面的问题,而不是我的身份验证。。。不管怎样,谢谢你…你检查过不同的解决方案了吗?