4

我在 Google 上阅读了以下两页:1)https://developers.google.com/google-apps/documents-list/#getting_a_list_of_documents_and_files 和 2)https://developers.google.com/accounts/docs/OAuth2WebServer

我可以在后续的 Google API 调用中使用 access_token (OAuth2)(我想调用 Google Docs Listing 或 Google Drive)。

我想使用 curl 或类似的东西,只是形成我的 https URL。- 因此,在第一个文档中声明形成如下 URL:https://docs.google.com/feeds/default/private/full - 在第二个文档中,示例声明使用类似 https://www .googleapis.com/oauth2/v1/userinfo?access_token=xxxxx(将访问令牌添加到调用中)

几个问题 - 我是打电话给 googleapis.com 还是 docs.google.com?- 我可以打电话给 https://docs.google.com/feeds/default/private/full?access_token=xxxxx 只需将访问令牌添加到通话中吗?

谢谢

4

3 回答 3

3

您第一次使用 Google API 需要付出一些努力,但随后它变得简单而优雅:

  1. 手动准备一次性操作):登录 Google,创建项目,启用相关 API,创建新客户 ID。
  2. 获取 OAuth 代码、刷新令牌和访问令牌一次性操作)。
  3. 进行 API 调用重复的任意操作)。

这是整个过程的详细说明-进行Google API调用的步骤。还可以在此处查看基于 Google Calendar API 的实用示例,其中包含单个 HTML 文件中的完整演示代码 -轻松紧凑地访问我的 Google 日历

于 2014-12-13T22:03:55.990 回答
0

Hie you can go through the Google Docs Sample Available Here

it's a command line smaple but this same thing you can implement in android. it works for me. you will find "docs-cmdline-sample" in repo. that will help you.

于 2012-08-29T06:54:09.450 回答
0

最快的入门方法可能是 Google Drive API 的快速入门指南,它展示了如何设置您的环境并编写一个完整的命令行应用程序以将文件上传到 Drive:

https://developers.google.com/drive/quickstart

于 2012-08-29T04:11:13.653 回答