我对使用Request、urlopen和JSONDecoder().decode()有些困惑。
目前我有:

hdr = {'User-agent' : 'anything'}  # header, User-agent header describes my web browser

我假设服务器使用这个来确定哪些浏览器是可接受的?不确定
我的网址是:
url = 'http://wwww.reddit.com/r/aww.json'

我设置了一个req变量
req = Request(url,hdr)  #request to access the url with header
json = urlopen(req).read()   # read json page

我尝试在终端中使用urlopen,但出现以下错误:
TypeError: must be string or buffer, not dict # This has to do with me header?

data = JSONDecoder().decode(json)   # translate json data so I can parse through it with regular python functions?

我不确定为什么我会得到TypeError

最佳答案

如果查看Request的文档,可以看到构造函数签名实际上是Request(url, data=None, headers={}, …)。所以第二个参数,URL后面的那个参数,是您随请求发送的数据。但如果您想设置头,则必须指定headers参数。
你可以用两种不同的方法。或者将None作为数据参数传递:

Request(url, None, hdr)

但是,这需要明确地传递data参数,并且必须确保传递默认值不会造成任何不必要的影响。因此,您可以告诉Python直接传递header参数,而不必指定data
Request(url, headers=hdr)

关于python - 带有urlopen()的TypeError,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/19966763/

10-12 16:32