如何导入 com.google.api.client 库?

发布于 2024-11-30 13:11:27 字数 223 浏览 3 评论 0原文

这个问题以前可能被问过,但我无法用这些解释解决我的问题。 我想开始在我的 Eclipse IDE 中使用 google api。我从谷歌代码下载了一个示例。 (纬度-json-oauth-样本)。它需要导入 com.google.api.client.auth.oauth。我可以从哪里找到以及如何将它们导入到该项目中? 我已经安装了 maven 和 mylyn 插件,我认为使用这些插件我可以下载所有依赖项,但我无法下载。 谢谢。

This question might be asked before but I couldn't solve my problem with those explananations.
I want to start using google apis in my Eclipse IDE. I've downloaded a sample from google codes. (latitude-json-oauth-sample). It requires to import com.google.api.client.auth.oauth. From where I can find and how import those to this project?
I've installed maven and mylyn plugins, and I thought that with these plugins I would be able to download all dependencies but I couldn't make it.
Thanks.

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

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

发布评论

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

评论(1

〃温暖了心ぐ 2024-12-07 13:11:27

这些工件可在中央 Maven 存储库中找到。将以下内容添加到您的 pom 文件中:

<dependency>
    <groupId>com.google.api.client</groupId>
    <artifactId>google-api-client-auth</artifactId>
    <version>1.2.3-alpha</version>
</dependency>

The artifacts are available in the central maven repository. Add following to your pom file:

<dependency>
    <groupId>com.google.api.client</groupId>
    <artifactId>google-api-client-auth</artifactId>
    <version>1.2.3-alpha</version>
</dependency>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文