有没有办法将Google Custom Search API返回的结果限制为每个域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