C# Google Drive API References -


i'm trying connect google drive api. google states provides necessary dlls , references at link here ("download latest version of library"). however, when try add necessary reference(s), c# unable find dlls , manual search them yields 0 results. referenced link:

the zip file contains core library , drive-specific dlls. referencing these dlls in solution discussed in next section.

the following namespaces need references:

using dotnetopenauth.oauth2; using google.apis.authentication.oauth2; using google.apis.authentication.oauth2.dotnetopenauth; using google.apis.drive.v2; using google.apis.drive.v2.data; using google.apis.util; using google.apis.services; 

in looking around on google link, don't find necessary dlls referenced in above.

note: test desktop console app, not web application.

edit: should add, if add below files existing items, still unable find of assemblies:

google.apis.drive.v2.1.5.0.95-beta.nuspec google.apis.drive.v2.cs google.apis.drive.v2.csproj packages.config  using dotnetopenauth.oauth2; using google.apis.authentication.oauth2; using google.apis.authentication.oauth2.dotnetopenauth; using google.apis.util; using google.apis.services; 

you can download api , it's dependencies via nuget.org if want them precompiled. nuget version out-of-date however, if want newest version have download source , build it.

i'd go nuget version simplicity.

google drive api on nuget.org


Comments

Popular posts from this blog

java - activate/deactivate sonar maven plugin by profile? -

python - TypeError: can only concatenate tuple (not "float") to tuple -

java - What is the difference between String. and String.this. ? -