I am trying to list all the documents using Google Drive List API. But it doesn't list all the documents some documents details are not presented in the response.

This issue occurred in some of our customer's Drive account. When tried in OAuth2 playground, it results in the same response with missing documents list for these users.

Note : scope I used https://www.googleapis.com/auth/drive

File mimetype is "application/vnd.google-apps.spreadsheet"

Can anyone please help me to find out the reason for this ?

有帮助吗?

解决方案

Probably the resultlist is limited to 100 items. You might want to check that! There's an option to increase this limit:

            DocumentsListQuery dlq = new DocumentsListQuery(DocumentsListQuery.documentsBaseUri) 
            { 
                NumberToRetrieve = 100000,
                ShowFolders = true,
                Trashed = false
            };
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top