Google自定义搜索API(CSE) - 仅检索讨论

时间:2013-01-07 22:12:32

标签: google-api google-custom-search

我想使用Google自定义搜索API仅在使用查询字符串&tbm=dsc等讨论中进行搜索。 不幸的是,API文档中没有给出tbm参数。

是否无法将搜索结果仅限于讨论?

2 个答案:

答案 0 :(得分:0)

不,目前还没有办法与CSE / GSS进行讨论搜索。唯一的特殊搜索是imageAPI reference中记录了该搜索。您可以使用标签和Refinements将搜索范围限制为特定网站和/或模式。

答案 1 :(得分:0)

无法将Google自定义搜索的搜索结果仅限于讨论网站。以防万一,请记住Google Custom Search is for searching over one website or a collection of websites.如果您的收藏集都是讨论网站,那么,这不是似乎是Google Custom Search的目的。但是,可能会有一些有用的解决方法/解决方案。

解决方法0

根据该网站查找或生成您感兴趣的讨论网站和create a custom search。这将完成(几乎)你所追求的相同结果。

解决方法1

您可以使用细化标签执行重定向。 This example redirects to a Google Scholar search.您可以使用&tbm=dsc完成相同的结果。

<CustomSearchEngine>
  <Title>Universities</Title>
  <Context>
    <Facet>
      <FacetItem title="Papers">
        <Label name="papers" mode="FILTER"/>
        <Redirect url="http://scholar.google.com/scholar?q=$q"/>
      </FacetItem>
    </Facet>
  </Context>
</CustomSearchEngine>