在 C# 中使用 Bing API

发布于 2024-10-13 07:30:16 字数 55 浏览 4 评论 0原文

我们如何在 C# 中使用 Bing API?我必须将查询传递给 Bing API,然后获取结果。

How do we use the Bing API in C#? I have to pass a query to the Bing API and then get the results.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

┊风居住的梦幻卍 2024-10-20 07:30:16
BingService.BingService service = new BingService.BingService();

        SearchRequest request = new SearchRequest();
        // use your Bing AppID
        request.AppId = ""; /* Your App ID */
        request.Query = "rose"; // your search query

        // I want to search only web
        request.Sources = new SourceType[]
        {
            SourceType.Image 
        };

        SearchResponse response = service.Search(request);

        foreach (ImageResult result in response.Image.Results)
        {

            //lstBxImages.Items.Add("<a href="+result.Url + '"'+"></a>" + result.Title);
            imgliteral.Controls.Add(new LiteralControl("<img src=" + result.MediaUrl + " width=100
BingService.BingService service = new BingService.BingService();

        SearchRequest request = new SearchRequest();
        // use your Bing AppID
        request.AppId = ""; /* Your App ID */
        request.Query = "rose"; // your search query

        // I want to search only web
        request.Sources = new SourceType[]
        {
            SourceType.Image 
        };

        SearchResponse response = service.Search(request);

        foreach (ImageResult result in response.Image.Results)
        {

            //lstBxImages.Items.Add("<a href="+result.Url + '"'+"></a>" + result.Title);
            imgliteral.Controls.Add(new LiteralControl("<img src=" + result.MediaUrl + " width=100
江湖彼岸 2024-10-20 07:30:16

从 Microsoft 站点下载 bing dll 并添加这些 dll。然后我们就可以使用bing服务了。

Download bing dlls from microsoft site and add those dlls . Then only we can able to use bing service.

自演自醉 2024-10-20 07:30:16

这里有一些东西会对你有很大帮助
https://github.com/insatmc/BingMapHelper

Here's something will help you a lot
https://github.com/insatmc/BingMapHelper

青春如此纠结 2024-10-20 07:30:16

只需添加到上面,BING 就以 PDF 形式提供了完整的 API 文档。

这是基本详细信息版本

Just adding to above there is a full documentation of te API given by BING in a PDF.

Here is a Basic Details Version

帅冕 2024-10-20 07:30:16

hii..

在应用程序中添加对 Web 引用的 bing 引用并使用 search.wsdl

hii..

Add a bing reference to web references in an application and use search.wsdl

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文