我正在使用 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 插件项目中)从这里。