C# Google Drive API References -
i'm trying connect google drive
api. google states provides necessary dll
s , references at link here ("download latest version of library"). however, when try add necessary reference(s), c#
unable find dll
s , 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 dll
s 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.
Comments
Post a Comment