我对使用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
答案 0 :(得分:4)
如果查看Request
的文档,可以看到构造函数签名实际上是Request(url, data=None, headers={}, …)
。因此,第二个参数(URL后面的参数)是您随请求发送的数据。但是,如果您想要设置标题,则必须指定headers
参数。
您可以通过两种不同的方式完成此操作。您将None
作为数据参数传递:
Request(url, None, hdr)
但是,这要求您明确传递data
参数,并且必须确保传递默认值不会导致任何不良影响。相反,您可以告诉Python 明确地传递header
参数,而不指定data
:
Request(url, headers=hdr)