Bing API初体验

Bing API初体验,第1张

概述作者:马宁 Bing正式发布没几天,除了功能和搜索结果外,作为开发者来说,我们关心的还有Bing API啥时候能出。周末浏览MSDN网站时,发现Bing Service已经上线了,链接是:http://msdn.microsoft.com/en-us/library/dd900818.aspx Bing提供的API很丰富,除了搜索外,还增加了广告Ad、图片、新闻、Phonebook、拼写和视频的搜

作者:马宁 Bing正式发布没几天,除了功能和搜索结果外,作为开发者来说,我们关心的还有Bing API啥时候能出。周末浏览MSDN网站时,发现Bing Service已经上线了,链接是:http://msdn.microsoft.com/en-us/library/dd900818.aspx

Bing提供的API很丰富,除了搜索外,还增加了广告Ad、图片、新闻、Phonebook、拼写和视频的搜索。而访问协议有三种:JsON,XML和SOAP。JsON协议用于AJAX应用,XML用于Silverlight应用,SOAP用于传统的.NET等强类型程序。可见,微软在推出API方面还是很有效率的。

使用Bing API的第一步,是去Bing Developer Center上申请一个AppID,每个应用应该使用一个单独的AppID。Bing Developer Center的网址是:http://bing.com/developers 。在页面里先用live ID登录,然后选择Get a new App ID,填写一些基本信息,然后你就会得到一串很长的AppID。需要注意的是,Bing还有一个网址是http://www.bing.com/developer/ ,估计是为1.1版本准备的,现在还不能申请AppID。大家一定要分清楚。

接下来,我们在Visual Studio 2008里创建一个.NET应用。在Project菜单里选择Add Service Reference,在d出对话框的Address文本框里填入:

http://api.search.live.net/search.wsdl?AppID=yourAppId

注意:AppID=后要填写你申请到的AppID.

 

在找到liveSearchService的引用后,将其添加到我们的工程中。接下来,我根据PhoneBook和WebSearch两个例子写了DEMO,更多例子可以参考:

http://msdn.microsoft.com/en-us/library/dd251066.aspx

需要提醒的是,可能是文档没有更新,Bing API的类名称还会发生变化。我发现在2009年6月8日导出的引用中,liveSearchService的名称变成了liveSearchPortTypeClIEnt。Web Search的代码如下:

        private voID button2_Click(object sender,EventArgs e)
        {
            // liveSearchService implements Idisposable.
            using (liveSearchPortTypeClIEnt service = new liveSearchPortTypeClIEnt())
            {
                try
                {
                    SearchRequest request = buildrequestWeb();

                    // Send the request; display the response.
                    SearchResponse response = service.Search(request);
                    displayResponseWeb(response);
                }
                catch (System.Net.WebException ex)
                {
                    // An exception occurred while accessing the network.
                    Console.Writeline(ex.Message);
                }
            }
        }

        private SearchRequest buildrequestWeb()
        {
            SearchRequest request = new SearchRequest();

            // Common request fIElds (required)
            request.AppID = AppID;
            request.query = "马宁";
            request.sources = new SourceType[] { SourceType.Web };

            // Common request fIElds (optional)
            request.Version = "2.0";
            request.Market = "en-us";
            request.Adult = Adultoption.Moderate;
            request.AdultSpecifIEd = true;
            request.Options = new SearchOption[]
            {
                SearchOption.EnableHighlighting
            };

            // Web-specific request fIElds (optional)
            request.Web = new WebRequest();
            request.Web.Count = 30;
            request.Web.CountSpecifIEd = true;
            request.Web.Offset = 0;
            request.Web.OffsetSpecifIEd = true;
            request.Web.Options = new WebSearchOption[]
            {
                WebSearchOption.disableHostCollapsing,
                WebSearchOption.disablequeryAlterations
            };

            return request;

        }

        private voID displayResponseWeb(SearchResponse response)
        {
            // display the results header.
            ListBox1.Items.Add("Bing API Version " + response.Version);
            ListBox1.Items.Add("Web results for " + response.query.SearchTerms);
            ListBox1.Items.Add(string.Format("displaying {0} to {1} of {2} results",
                response.Web.Offset + 1,
                response.Web.Offset + response.Web.Results.Length,
                response.Web.Total));

            // display the Web results.
            System.Text.StringBuilder builder = new System.Text.StringBuilder();
            foreach (WebResult result in response.Web.Results)
            {
                builder.Length = 0;
                builder.Appendline(result.Title);
                builder.Appendline(result.Description);
                builder.Appendline(result.Url);
                builder.Append("Last Crawled: ");
                builder.Appendline(result.DateTime);

                ListBox1.Items.Add(builder.ToString());
                Console.Writeline();
            }
        }
从代码上来看,很简单,先创建一个liveSearchPortTypeClIEnt的对象,然后,创建SearchRequest对象,在Request里需要设置的是AppID,query和Sources。AppID不用多说了,query里填我们要查的关键字,Sources里指定SourceType,我们这里指定的是SourceType.Web。

 

将SearchRequest参数传递给liveSearchPortTypeClIEnt的Search方法,会返回一个SearchResponse的对象,里边包含我们的搜索结果。结果会包含在response.Web.Results对象里,最主要的参数是Title、Description和Url。

最后的运行结果就是这样的了:

 

Bing的好坏还需要时间检验,但是Bing API和Google Api应该差不多,而且考虑了不同用户的需求,这也许就是软件公司和互联网公司不一样的地方。同时推出的还有Bing Map API,改天试一下。

 

更多关于windows Embedded CE开发的文章,请参考“windows Embedded CE 中国研发团队”的中文博客:http://blogs.msdn.com/wincechina/

总结

以上是内存溢出为你收集整理的Bing API初体验全部内容,希望文章能够帮你解决Bing API初体验所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1045880.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-24
下一篇 2022-05-24

发表评论

登录后才能评论

评论列表(0条)

保存