我正在使用Google Drive的C#API V2,而且我似乎無法找到FilesResource.ListRequest.Fetch()方法...我發現FilesResource.ListRequest接口與google中描述的稍有不同驅動文檔,所以我想對它做了一些改變,但沒有反映在Web文檔中。任何人都知道我現在應該如何執行查詢?如何使用.NET Google Drive API執行查詢?
這就是我試圖運行:提前
public void SomeMethod(Settings settings)
{
var provider = new NativeApplicationClient(GoogleAuthenticationServer.Description, settings.ApiKey, settings.ApiSecret);
var auth = new OAuth2Authenticator<NativeApplicationClient>(provider, AuthProvider);
_driveService = new Google.Apis.Drive.v2.DriveService(new BaseClientService.Initializer {Authenticator = auth});
var request = _driveService.Files.List();
request.Q = "mimeType='application/vnd.google-apps.folder' and trashed=false";
request.Fetch() // <-- This method does not exist! :/
}
謝謝!
截至2014年2月,.Execute方法似乎也從FilesResource.ListRequest中消失。我無法找到使用的替代方法。任何線索?確認我在VS2013的NuGet中使用最新的Google.Apis和Google.Apis.Drive。 –