我使用谷歌日历 API v3与Oauth 1.0和JAVA为我的网络应用程序。
It says on the official website ( https://developers.google.com/google-apps/calendar/pricing ) that the quota is 10 000 queries per day. I ve also set up in my Google API console panel a limit of a 100 requests per second per user.
当我做测试时,日历API运行良好(我在雅瓦应用软件中所做的所有操作都出现在日历上 ) 。 然后当我在大约50次操作时,我得到了403次禁止的、有限额的错误。
有人有同样的问题吗?
谢谢 谢谢
编辑:
我从谷歌得到的JSON错误是:
com.google.api.client.googleapis.json.GoogleJsonResponseException: 403 Forbidden
{
"code" : 403,
"errors" : [ {
"domain" : "usageLimits",
"message" : "Quota Exceeded",
"reason" : "quotaExceeded"
} ],
"message" : "Quota Exceeded"
}
Google 日历的依附性在我的项目中 :
<dependency>
<groupId>com.google.apis</groupId>
<artifactId>google-api-services-calendar</artifactId>
<version>v3-rev7-1.6.0-beta</version>
</dependency>