1

我正在使用 Google Calendar API,并且在 Eclipse 独立 Java-Project 中一切正常。现在我想将(完全相同的)代码添加到我的Eclipse 插件中。不幸的是,我现在遇到了一个问题,即使用 Google API 的身份验证不再正常工作。在AuthorizationCodeInstalledApp(flow, new LocalServerReceiver()).authorize("user"); 浏览器启动身份验证过程后,我可以单击“身份验证”,然后浏览器执行我不知道的操作(无限加载)并且仅当我取消程序时才停止。在 Eclipse 控制台中,我收到以下错误:

!MESSAGE While loading class "org.mortbay.jetty.RetryRequest", thread "Thread[349166459@qtp-300209212-1 - Acceptor0 SocketConnector@localhost:18312,5,main]" timed out waiting (5005ms) for thread "Thread[main,6,main]" to finish starting bundle "myproject.version.qualifier [896]". To avoid deadlock, thread "Thread[349166459@qtp-300209212-1 - Acceptor0 SocketConnector@localhost:18312,5,main]" is proceeding but "org.mortbay.jetty.RetryRequest" may not be fully initialized.

我不知道这个错误是什么意思,我能做什么。谢谢你的帮助!

事故

PS:我有工作示例(仅在普通的 Eclipse 项目中,不在 Eclipse 插件项目中)从这里

4

1 回答 1

1

幸运的是,我找到了解决这个问题的方法(错误?)......我刚刚创建了一个新的(片段)项目并在该项目(而不是插件项目)中进行了授权,现在,相同的代码在那里工作! ...这很奇怪,但有效...

于 2012-11-05T14:56:11.183 回答