我正在使用Google Drive API测试Android DriveQuickstart, 在尝试使用API访问Drive的示例代码时,我收到了以下错误。
400错误请求 消息:无效的字段选择项
答案 0 :(得分:1)
400:错误请求
用户错误。这可能意味着必需的字段或参数没有 已提供,提供的值无效,或组合 提供的字段无效。
此错误必须引用此行代码:
FileList result = mService.files().list()
.setPageSize(10)
.setFields("nextPageToken, items(id, name)")
.execute();
将.setFields("nextPageToken, items(id, name)")
更改为
setFields("nextPageToken, files(id, name)")