Google Finance API 的小问题

发布于 2024-10-10 14:27:52 字数 909 浏览 1 评论 0原文

大家好,我似乎无法使用 google Finance api 登录我的帐户,我不知道为什么。这是我的代码

public static void main (String [ ] args)

 {
  FinanceService myService = new FinanceService("exampleCo-exampleApp-1");
  try
  {
   myService.setUserCredentials("[email protected]","...");
  }
  catch (AuthenticationException e)
  {
   // TODO Auto-generated catch block
   e.printStackTrace();
  }
 }

这是我的错误

Exception in thread "main" java.lang.Error: Unresolved compilation problem: 

 at com.google.gdata.util.VersionRegistry.ensureRegistry(VersionRegistry.java:88)
 at com.google.gdata.client.Service.initServiceVersion(Service.java:458)
 at com.google.gdata.client.Service.<clinit>(Service.java:147)
 at main.main(main.java:55)

行 55 是启动 FinanceService 的错误行

Hello all I can't seem to log in with google finance api to my account and I don't know why. Here is my code

public static void main (String [ ] args)

 {
  FinanceService myService = new FinanceService("exampleCo-exampleApp-1");
  try
  {
   myService.setUserCredentials("[email protected]","...");
  }
  catch (AuthenticationException e)
  {
   // TODO Auto-generated catch block
   e.printStackTrace();
  }
 }

And here is my error

Exception in thread "main" java.lang.Error: Unresolved compilation problem: 

 at com.google.gdata.util.VersionRegistry.ensureRegistry(VersionRegistry.java:88)
 at com.google.gdata.client.Service.initServiceVersion(Service.java:458)
 at com.google.gdata.client.Service.<clinit>(Service.java:147)
 at main.main(main.java:55)

line 55 is the one that starts out FinanceService

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

一个人的旅程 2024-10-17 14:27:52

我在 reddit 的帮助下解决了这个问题:christophermaness.com/a-problem-with-compiling-a-java-project –

I figured it out with the help of reddit: christophermaness.com/a-problem-with-compiling-a-java-project –

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文