Tag: 谷歌 的BigQuery

NativeApplicationClient和OAuth2Authenticator未解析

我正在编写一个控制台应用程序来从BigQuery下载数据。 再一次,.NET库是模糊和混乱的。 在这个问题中 , 两名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 = […]