0

私は Google Drive API を利用しようとしており、ここにある例を見ています - https://developers.google.com/drive/v2/reference/files/get

この例を機能させるには、次のものを含める必要があります

誰かがこの dll を使用したことがありますか? どこからダウンロードすればよいかわかりませんか?

Google.Apis.Drive.v2 dll を簡単に見つけることができました。

4

2 に答える 2

1

これは.NET 用の Google API クライアント ライブラリの一部です。必要な dll はダウンロード ページから入手できます。

http://code.google.com/p/google-api-dotnet-client/wiki/Downloads

于 2012-07-19T16:17:31.590 に答える
1

ここでこれを見つけました: https://code.google.com/p/google-api-dotnet-client/source/browse/Src/GoogleApis/Apis/Authentication/IAuthenticator.cs?r=e6585033994bfb3a24d4c140db834cb14b9738b2

namespace Google.Apis.Authentication
{
    /// <summary>
    /// Classes that implement this interface will know how 
    /// a WebRequest with the approreate authentication embed in the request.
    /// </summary>
    [Obsolete("IAuthenticator is not supported any more and it's going to be removed in 1.7.0-beta. " +
            "Consider using UserCredential or ServiceAccountCredential from the new Google.Apis.Auth NuGet package " +
            "which supports .NET 4, .NET for Windows, Store apps, Windows Phone 7.5 and 8 and Portable Class " +
            "Libraries as well")]
    public interface IAuthenticator
    {
        /// <summary>
        /// Takes an existing httpwebrequest and modifies its headers according to 
        /// the authentication system used.
        /// </summary>
        /// <param name="request"></param>
        /// <returns></returns>
        void ApplyAuthenticationToRequest(HttpWebRequest request);
    }
}
于 2015-05-07T20:08:59.747 に答える