您能否通过代码示例告诉我如何编写将调用
的 C# 程序Google的Google+ API和Custom Search API。
我知道在
:::::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
但是,文档中给出的执行上述操作的链接中提到的过程是
不是很清楚。
是否有一个简单的 C# 代码插图,我可以用来调用 Google+ API 和自定义
搜索 API?
API Dotnet Client 项目包含来自大多数 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);
}
}