0

您能否通过代码示例告诉我如何编写一个调用
Google+ API 和 Google 的自定义搜索 API 的 C# 程序。

我知道在 ::::: 上有一个简短的描述

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

但是文档中给出的上述链接中提到的过程
并不是很清楚。
是否有通过 C# 代码进行的简单说明,可用于调用 Google+ API 和自定义
搜索 API?

4

1 回答 1

0

Google API Dotnet 客户端项目包含来自大多数 Google API 的 .NET 包装器,包括Google+

他们确实有几个示例,但还没有针对所有 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 回答