因此,我通过 Google Drive API 获取文件,如下所示:
GET https://www.googleapis.com/drive/v2/files/{...}/children?q={...}
但是返回的 JSON 似乎不包含文件的标题。相反,它更像
{
...
"items": [[{u'kind': u'drive#childReference', u'childLink': u'https://www.googleapis.com/drive/v2/files/...', u'id': u'...', u'selfLink': u'https://www.googleapis.com/drive/v2/files/.../children/...'}, ...]
}
应用程序是否被迫get
对每个项目进行 a 以获得标题?这似乎非常低效。