English 中文(简体)
Java - Google 日历API v3 配额,两条长腿的Oauth
原标题:Java - Google Calendar API v3 quota with 2 legged Oauth

我使用谷歌日历 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>
问题回答

是的,我去过那里,看到这个discussion ...

或者您确定您的 API 控制台与您的 Google App 项目和使用过的 AUPTH 消费密钥/ 机密相关 。 用于普通 Google 账户和 Google App 账户的 API 控制台之间有区别 。 您必须创建 Google Apps 市场列表, 这将自动创建一个新的 API 控制台, 与您从市场收到的 AUPTH 消费密钥/ 机密相关 。

希望这能帮上忙...





相关问题
Spring Properties File

Hi have this j2ee web application developed using spring framework. I have a problem with rendering mnessages in nihongo characters from the properties file. I tried converting the file to ascii using ...

Logging a global ID in multiple components

I have a system which contains multiple applications connected together using JMS and Spring Integration. Messages get sent along a chain of applications. [App A] -> [App B] -> [App C] We set a ...

Java Library Size

If I m given two Java Libraries in Jar format, 1 having no bells and whistles, and the other having lots of them that will mostly go unused.... my question is: How will the larger, mostly unused ...

How to get the Array Class for a given Class in Java?

I have a Class variable that holds a certain type and I need to get a variable that holds the corresponding array class. The best I could come up with is this: Class arrayOfFooClass = java.lang....

SQLite , Derby vs file system

I m working on a Java desktop application that reads and writes from/to different files. I think a better solution would be to replace the file system by a SQLite database. How hard is it to migrate ...

热门标签