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:

enter image description here

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

Popular posts from this blog

c# - Binding a comma separated list to a List<int> in asp.net web api -

Delphi 7 and decode UTF-8 base64 -

html - Is there any way to exclude a single element from the style? (Bootstrap) -