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 我不想从特定网站获取结果。

4

2 回答 2

0

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

于 2011-09-08T07:52:08.727 回答
0

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

于 2019-09-03T04:57:01.327 回答