当我运行以下代码时:
url = 'http://www.nytimes.com/2011/11/15/arts/music/new-music-from-caveman-los-campesinos-and-the-fall.html?_r=0'
try:
handle = urllib2.urlopen(url).info()
except urllib2.HTTPError, e:
print(e.code)
有错误并print e.code
打印303
。如果我使用 Chrome 或 Firefox 请求此 URL,它可以正常工作。
任何人都可以帮忙吗?谢谢