我在 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 只需将访问令牌添加到通话中吗?
谢谢