I am trying to work with FusionTables API. But I am getting this error:
Method 'get_Error' in type 'Google.Apis.Fusiontables.v1.Data.Table' from assembly 'Google.Apis.Fusiontables.v1, Version=1.2.4737.25287, Culture=neutral, PublicKeyToken=null' does not have an implementation.
Can some one please help me with this error? Here is my code:
// 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;
}
}
Thanks