Вопрос

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