.net 中的 Bing API
我使用此代码在我的应用程序中使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
也许在查询中:
-site:stackoverflow.com
Maybe in query:
-site:stackoverflow.com
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.