我从google文档中获取了以下代码:
public static void detectDriveChanges() throws IOException {
StartPageToken response = DRIVE.changes()
.getStartPageToken().execute();
String savedStartPageToken = response.getStartPageToken();
System.out.println("Start token: " + savedStartPageToken);
// Begin with our last saved start token for this user or the
// current token from getStartPageToken()
String pageToken = savedStartPageToken;
while (pageToken != null) {
ChangeList changes = DRIVE.changes().list(pageToken)
.setFields("*")
.execute();
for (Change change : changes.getChanges()) {
// Process change
System.out.println("Change found for file: " + change.getFileId());
}
if (changes.getNewStartPageToken() != null) {
// Last page, save this token for the next polling interval
savedStartPageToken = changes.getNewStartPageToken();
}
pageToken = changes.getNextPageToken();
}
}
. setfields ("*")导致以下错误的请求响应。
Exception in thread "main" com.google.api.client.googleapis.json.GoogleJsonResponseException: 400 Bad Request
{
"code" : 400,
"errors" : [ {
"domain" : "global",
"message" : "Bad Request",
"reason" : "badRequest"
} ],
"message" : "Bad Request"
如果我将setfields中的*更改为text,那么我将获得无效参数。如果我把它全部去掉,就不会有错误。我已经谷歌试图确定什么可能的参数是setFields在这种情况下,但我还没有找到任何东西。
我在哪里找到setFields在这个实例中可能的参数列表?
当setFields设置为*
时,为什么上面的代码会失败?我使用以下依赖项
<dependency>
<groupId>com.google.apis</groupId>
<artifactId>google-api-services-drive</artifactId>
<version>v3-rev40-1.22.0</version>
</dependency>
的问候Conteh
setField
for Drive API用于部分响应,它将取决于您想要的数据将成为返回对象的一部分。
设置"*"将不起作用,因为它不代表Response
对象中的任何字段。要使其工作,您要么不设置字段以获取所有值,要么指定仅需要的字段(取决于您调用的API,对于changeList,它可以是changes
, nextPageToken
, newStartPageToken
, kind
删除。setfilters工作,但我仍然想减轻流量和内存使用。这个列表帮助我找到了mime类型的字段名,结果是"mimeType"区分大小写!试试这里列出的字段
我需要从所有文件中整理文件夹,因为文件夹也是google drive上的文件。以下是我需要的:
。setFields("nextPageToken, files(id, name, mimeType)")
好运。
正如@adjuremods指出的那样,您可以通过跳过'setFields'来检索所有字段,也就是说,不设置特定字段。添加到他的回答和回答你的问题在第四段(希望不是太晚,以帮助其他开发人员):"我在哪里找到setFields在这个实例中可能的参数列表? "
您可以从以下属性列表中选择要在请求上设置的字段:https://developers.google.com/drive/api/v3/reference/files#properties只是要仔细检查一下该物业是否可用。例如,'imageMediaMetadata'仅对图像文件可用;'thumbnailLink'在请求'元数据'时可用,而'创建'请求不可用;等等
我所问的问题中的代码需要分成如下两个函数,因为首先需要设置SAVED_START_PAGE_TOKEN,然后可以列出对驱动器所做的任何后续更改。我把这个贴出来是为了说清楚。
/**
* Sets SAVED_START_PAGE_TOKEN. Now any changes in google drive
* the occur after this point can be listed in the the function
* detectDriveChanges
* @throws IOException
*/
public static void SetStartPageToken() throws IOException {
StartPageToken response = DRIVE.changes().getStartPageToken().execute();
SAVED_START_PAGE_TOKEN = response.getStartPageToken();
System.out.println("Start token: " + SAVED_START_PAGE_TOKEN);
}
/**
* List any changes to the google drive since the last time
* SAVED_START_PAGE_TOKEN was set
* @throws IOException
*/
public static void detectDriveChanges() throws IOException {
// Begin with our last saved start token for this user or the
// current token from getStartPageToken()
String pageToken = SAVED_START_PAGE_TOKEN;
while (pageToken != null) {
ChangeList changes = DRIVE.changes().list(pageToken)
.setFields("changes")
.execute();
for (Change change : changes.getChanges()) {
System.out.println("Change found for file: " + change.getFileId());
}
if (changes.getNewStartPageToken() != null) {
// Last page, save this token for the next polling interval
SAVED_START_PAGE_TOKEN = changes.getNewStartPageToken();
}
pageToken = changes.getNextPageToken();
}
}