0


Google+ API と Google のカスタム検索 API を 呼び出す C# プログラムを作成する方法をコード サンプルで教えてください。

::::: に簡単な説明があることは知っています。

URL:https://developers.google.com/+/api/
URL:https://developers.google.com/custom-search/v1/using_rest
URL:http://code.google.com/p/google -api-dotnet-client/wiki/OAuth2

しかし、ドキュメントに記載されているように、上記を実行する際のリンクに記載されているプロセスは
あまり明確ではありません。 Google+ API とカスタム検索 API
を呼び出すために使用できる C# コードによる簡単な図はありますか?

4

1 に答える 1

0

Google API ドットネット クライアント プロジェクトには、 Google + を含むほとんどの Google の API からの .NET ラッパーが含まれています。

いくつかの例がありますが、すべての API についてはまだありません。

公開アクティビティを照会するためのページからの Google+ の例は次のとおりです。

CommandLine.EnableExceptionHandling();            
CommandLine.DisplayGoogleSampleHeader("PlusService API");     

// Create the service.             
var objService= new PlusService();
objService.Key = ""; //put in user key.

var acts = objService.Activities.Search();
acts.Query = "super cool";
acts.MaxResults = 10;

var searchResults = acts.Fetch();

if (searchResults.Items != null)
{
   foreach (Activity feed in searchResults.Items)
   {
      //extract any property of uer interest
      CommandLine.WriteResult(feed.Title, feed.Actor);
   }
}
于 2012-04-13T07:57:55.847 に答える