c# - Multiple Files from Google Client library - Drive API's Not Found -
i've installed google.api.drives.v2 nuget without issue, when attempt create driveservice object, multiple file not found errors. used when ran windows 8.1, vs2013, different google drive objects, , never show stopping. since upgrading vs2015, unable work, i've removed references google api's , reinstalled packages , reset references. here's c# code i'm running:
clientsecrets googlesecrets = new clientsecrets(); googlesecrets.clientid = clientid; googlesecrets.clientsecret = clientsecret; credential = googlewebauthorizationbroker.authorizeasync(googlesecrets, new[] { driveservice.scope.drive }, "user", cancellationtoken.none, new filedatastore("test")).result;
and here's picture of when debug:
if continue step through, error ton of other files. examples: googlewebauthorizationbroker.cs, googleauthorizationcodeflow.cs, etc.
eventually if keep stepping through system.aggregateexception: unhandled exception of type 'system.aggregateexception' occurred in mscorlib.dll
i'm sure it's silly , simple. advice helpful, thank you!
Comments
Post a Comment