2

我对使用 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

4

1 回答 1

4

如果您查看 的文档Request,您可以看到构造函数签名实际上是Request(url, data=None, headers={}, …). 所以第二个参数,即 URL 之后的参数,是您与请求一起发送的数据。但是,如果您想设置标题,则必须指定headers参数。

您可以通过两种不同的方式执行此操作。您可以None作为数据参数传递:

Request(url, None, hdr)

但是,这需要您data显式地传递参数,并且您必须确保传递默认值不会造成任何不良影响。因此,您可以告诉 Python显式传递header参数,而无需指定data

Request(url, headers=hdr)
于 2013-11-13T23:56:22.367 回答