Google自定义搜索API - 将结果限制为每个域1个

时间:2015-05-15 18:51:34

标签: google-custom-search

有没有办法将Google Custom Search API返回的结果限制为每个域1个?

1 个答案:

答案 0 :(得分:-3)

是。如果您正在寻找第一个结果。如果您熟悉Python,则可以尝试以下操作。

res = service.cse().list(query,cx='YOURSEARCHENGINEIDHERE,).execute()

name = res['items'][0]['title']     #title of the first search result
url = res['items'][0]['link']       #url of the first search result