列出文件夹中的文件

正如可能开发的那样,我想要获取特定文件夹中所有文件的列表。 我有以下基本的树结构

root
   swimmer
      trainings
         test1.doc
         test2.doc
      logs
         resultsA.csv
         resultsB.csv

试图列出root / swimmer / trainings中的文件,我尝试使用:

 GET https://www.googleapis.com/drive/v2/files/trainings/children

并在https://developers.google.com/drive/v2/reference/children/list中对其进行测试

但我得到了404响应:

404 Not Found
- Show headers -
  {
 "error": {
  "errors": [
   {
    "domain": "global",
    "reason": "notFound",
    "message": "File not found: trainings"
   }
  ],
  "code": 404,
  "message": "File not found: trainings"
 }
}

我也尝试过:GET https://www.googleapis.com/drive/v2/files?maxResults=10&projection=BASIC&q='trainings'+in+parents&key={YOUR_API_KEY}

未找到相同的结果..

我错在哪里?


你的两个http url都有很多错误。 仔细查阅文档。 在#1中它不是文件夹名称,它是文件夹ID(或者你认为它会知道可能的几个文件夹中名为'trainings'的文件夹)?

链接地址: http://www.djcxy.com/p/66433.html

上一篇: list files in folder

下一篇: api not possible using createdDate