.net 中的 Bing API

发布于 2024-12-03 06:55:54 字数 329 浏览 0 评论 0原文

我使用此代码在我的应用程序中使用 bing api:

string requestString = "http://api.bing.net/xml.aspx?"

        // Common request fields (required)
        + "AppId=" + bingAppId
        + "&Query=" + searchString
        + "&Sources=Web"
        + "&Web.Count=20";

并且我想知道是否有办法告诉 api 我不想从特定网站获取结果。

I use this code to use bing api in my app:

string requestString = "http://api.bing.net/xml.aspx?"

        // Common request fields (required)
        + "AppId=" + bingAppId
        + "&Query=" + searchString
        + "&Sources=Web"
        + "&Web.Count=20";

and i want to know if there is a way to tell the api that i dont want to get results from a specific website.

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

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

发布评论

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

评论(2

他夏了夏天 2024-12-10 06:55:54

也许在查询中:-site:stackoverflow.com

Maybe in query: -site:stackoverflow.com

手心的温暖 2024-12-10 06:55:54

Bing API 可以支持仅来自选定网站的范围界定结果(使用 Bing 自定义搜索 API)。但我怀疑它会让你省略一个网站。

Bing API can support scoping results, from only select websites (using Bing Custom Search API). But I doubt it will let you omit a website.

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