我正在尝试从 Python 的 API 中获取 glassdoor 数据:
import urllib2
id1 = 'x'
key = 'y'
action = 'employers'
company = 'company'
basepath = 'http://api.glassdoor.com/api/api.htm?v=1&format=json&t.p='
url = basepath + id1 + '&t.k=' + key + '&action=' + action + '&q=' + company + '&userip=192.168.43.42&useragent=Mozilla/5.0'
response = urllib2.urlopen(url)
html = response.read()
Run Code Online (Sandbox Code Playgroud)
我收到以下错误:
>>> response = urllib2.urlopen(url)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "//anaconda/lib/python2.7/urllib2.py", line 154, in urlopen
return opener.open(url, data, timeout)
File "//anaconda/lib/python2.7/urllib2.py", line 437, in …Run Code Online (Sandbox Code Playgroud)