0

FusionTables API を使用しようとしています。しかし、私はこのエラーが発生しています:

アセンブリ 'Google.Apis.Fusiontables.v1, Version=1.2.4737.25287, Culture=neutral, PublicKeyToken=null' のタイプ 'Google.Apis.Fusiontables.v1.Data.Table' のメソッド 'get_Error' には実装がありません。

誰かがこのエラーで私を助けてくれますか? これが私のコードです:

 // 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;
     }
 }

ありがとう

4

1 に答える 1

0

(生成されたAPIとGoogleクライアントライブラリ自体の)アセンブリバージョンを混在させているようです。

FusionTablesAPIの最新バージョンをhttp://code.google.com/p/google-api-dotnet-client/wiki/APIs#Fusion_Tables_APIからダウンロードしてみてください。バンドルには、参照する必要のあるすべてのdllが含まれています。

幸運を

于 2013-02-20T03:05:06.800 に答える