列出檔案

由於 Google 雲端硬碟中包含的大部分資訊都是私人使用者資料。你必須具有訪問令牌才能訪問該資訊。可以通過 Oauth2 身份驗證過程檢索訪問令牌。

GET https://www.googleapis.com/drive/v2/files?access_token={Valid Access Token}

響應

{
  "kind": "drive#fileList",
  "etag": etag,
  "selfLink": string,
  "nextPageToken": string,
  "nextLink": string,
  "items": [
    [files Resource][2]
  ]
}