c# - NativeApplicationClient 和 OAuth2Authenticator 未解析

标签 c# oauth-2.0 google-api google-bigquery google-api-dotnet-client

我正在编写一个控制台应用程序以从 BigQuery 下载数据。再一次,.NET 库含糊不清。 In this question两名 Google 员工 发布了回复,但这些回复都无法在我的机器上运行,因为他们还没有明确说明他们使用的是哪些引用资料。我再次粘贴代码并详细说明:

using DotNetOpenAuth.OAuth2;
using Google.Apis.Authentication.OAuth2;
using Google.Apis.Authentication.OAuth2.DotNetOpenAuth;

using Google.Apis.Bigquery.v2;
using Google.Apis.Util;

{
    public class Program
    {
        public static void Main(string[] args)
        {
            // Register an authenticator.
            var provider = new NativeApplicationClient(GoogleAuthenticationServer.Description);

            // Put your client id and secret here (from https://developers.google.com/console)
            // Use the installed app flow here.
            provider.ClientIdentifier = "<client id>";
            provider.ClientSecret = "<client secret>";

            // Initiate an OAuth 2.0 flow to get an access token
            var auth = new OAuth2Authenticator<NativeApplicationClient>(provider, GetAuthorization);

            // Create the service.
            var service = new BigqueryService(auth);

            // Do something with the BigQuery service here
            // Such as... service.[some BigQuery method].Fetch();
        }

        private static IAuthorizationState GetAuthorization(NativeApplicationClient arg)
        {
            // Get the auth URL:
            IAuthorizationState state = new AuthorizationState(new[] { BigqueryService.Scopes.Bigquery.GetStringValue() });
            state.Callback = new Uri(NativeApplicationClient.OutOfBandCallbackUrl);
            Uri authUri = arg.RequestUserAuthorization(state);

            // Request authorization from the user (by opening a browser window):
            Process.Start(authUri.ToString());
            Console.Write("  Authorization Code: ");
            string authCode = Console.ReadLine();
            Console.WriteLine();

            // Retrieve the access token by using the authorization code:
            return arg.ProcessUserAuthorization(authCode, state);
        }
    }
}
  1. 首先,Google.Apis.Authentication 现在已过时,NuGet 鼓励您改用 Google.Api.Auth
  2. NativeApplicationClient 不解析使用代码中的任何 using。也许它包含在过时的 Google.Apis.Authentication 中。
  3. 其中一名员工发布了指向代码的 Github 存储库的链接 ( https://github.com/google/google-api-dotnet-client#Latest_Stable_Release )。但是此存储库中的大多数项目都需要我没有的 Windows 8.1。

我们可以使用任何简单明了的代码来下载 BigQuery 查询结果吗?我想这里的主要问题是制作 auth 对象。

最佳答案

为了安装这个 nuget 包:

PM> Install-Package Google.Apis.Bigquery.v2

这是我通常使用的代码。

/// <summary>
/// Authenticate to Google Using Oauth2
/// Documentation https://developers.google.com/accounts/docs/OAuth2
/// </summary>
/// <param name="clientId">From Google Developer console https://console.developers.google.com</param>
/// <param name="clientSecret">From Google Developer console https://console.developers.google.com</param>
/// <param name="userName">A string used to identify a user.</param>
/// <returns></returns>
public static BigqueryService  AuthenticateOauth(string clientId, string clientSecret, string userName)
{

    string[] scopes = new string[] { BigqueryService.Scope.Bigquery,                // view and manage your BigQuery data
                                     BigqueryService.Scope.BigqueryInsertdata ,     // Insert Data into Big query
                                     BigqueryService.Scope.CloudPlatform,           // view and manage your data acroos cloud platform services
                                     BigqueryService.Scope.DevstorageFullControl,   // manage your data on Cloud platform services
                                     BigqueryService.Scope.DevstorageReadOnly ,     // view your data on cloud platform servies
                                     BigqueryService.Scope.DevstorageReadWrite };   // manage your data on cloud platform servies

    try
    {
        // here is where we Request the user to give us access, or use the Refresh Token that was previously stored in %AppData%
        UserCredential credential = GoogleWebAuthorizationBroker.AuthorizeAsync(new ClientSecrets { ClientId = clientId, ClientSecret = clientSecret }
                                                                                     , scopes
                                                                                     , userName
                                                                                     , CancellationToken.None
                                                                                     , new FileDataStore("Daimto.BigQuery.Auth.Store")).Result;

        BigqueryService service = new BigqueryService(new BaseClientService.Initializer()
        {
            HttpClientInitializer = credential,
            ApplicationName = "BigQuery API Sample",
        });
        return service;
    }
    catch (Exception ex)
    {

        Console.WriteLine(ex.InnerException);
        return null;

    }

}

关于c# - NativeApplicationClient 和 OAuth2Authenticator 未解析,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32712366/

相关文章:

c# - 如何将整数数组转换为逗号分隔的字符串

c# - HttpWebRequest 返回 (400) 错误请求

c# - UWP 无法通过 FolderPicker 从硬盘访问文件夹

c# - XmlSerializer 序列化空变量以使用两个标签?

google-api - google geocoding api 的计费问题

http - 什么定义了标记 cookie?

java - 发送 token 和请求 SAS URI 时出现 500 内部服务器错误

java - Spring oauth2 不重定向到原始 url

c# - 不断收到错误 : redirect_uri_mismatch using youtube api v3

javascript - 发布请求正文谷歌API