Google api 使用'时出错;谷歌api网络客户端';接触易熔电缆

Google api 使用'时出错;谷歌api网络客户端';接触易熔电缆,google-api,google-fusion-tables,google-api-dotnet-client,Google Api,Google Fusion Tables,Google Api Dotnet Client,我正在尝试使用FusionTables API。但我得到了这个错误: 类型“Google.api.Fusiontables.v1.Data.Table”中的方法“get_Error” 来自程序集'Google.api.Fusiontables.v1,版本=1.2.4737.25287, Culture=neutral,PublicKeyToken=null'没有实现 有人能帮我解决这个错误吗?这是我的密码: // Create the service. if (fTableService =

我正在尝试使用FusionTables API。但我得到了这个错误:

类型“Google.api.Fusiontables.v1.Data.Table”中的方法“get_Error” 来自程序集'Google.api.Fusiontables.v1,版本=1.2.4737.25287, Culture=neutral,PublicKeyToken=null'没有实现

有人能帮我解决这个错误吗?这是我的密码:

 // Create the service.
 if (fTableService == null)
 {
     // Register the authenticator.
     var auth = CreateAuthenticator();
     fTableService = new FusiontablesService(auth);
     if (fTableService != null)
     {                   
         name = fTableService.Table.List().Fetch().Items[0].Name;
     }
 }

谢谢

它看起来像是在程序集版本(生成的API和google客户端库本身)之间混合使用

请尝试从下载FusionTables API的最新版本。 该捆绑包包含您需要引用的所有DLL


祝你好运

好的,我会在这个周末的某个时候试试,然后再给你回复。谢谢你的回复。我几乎放弃了。