我正在尝试从python进行自定义谷歌搜索。我在developer.google.com找到了相关代码。
我的代码:
url = ('https://ajax.googleapis.com/ajax/services/search/web'
'?v=1.0&q=teen%20wolf%20s02e01%20divxstage.eu&userip=USERS-IP-ADDRESS')
request = urllib2.Request(url, None, {'Referer': "http://www.my-ajax-site.com"})
response = urllib2.urlopen(request)
results = simplejson.load(response)
print results
正如您所见,我正在查询Teen Wolf S02E01 divxstage.eu
。上面的脚本返回了json response。
现在,当我只是从浏览器中搜索Teen Wolf S02E01 divxstage.eu
时,谷歌给我的第一个链接是网站divxstage.eu
的链接,这是我的必需链接。
现在,如果你仔细查看json response
它不包含divxstage.eu
链接,结果也是有限的。
所以,我的问题是为什么上述两种方法的输出存在差异,以及如何自定义查询以获取divxstage.eu
所需的www.divxstage.eu/video/6qihgxf1ejzx1
链接}。