TypeError:JSON对象必须为str,而不是“ bytes”


79

我有以下抛出的非常基本的代码; TypeError: the JSON object must be str, not 'bytes'

import requests
import json

url = 'my url'
user = 'my user'
pwd = 'my password'

response = requests.get(url, auth=(user, pwd))

if(myResponse.ok):
    Data = json.loads(myResponse.content)

我尝试将解码设置为Data变量,如下所示,但它会引发相同的错误; jData = json.loads(myResponse.content).decode('utf-8')

有什么建议么?


Answers:


138
json.loads(myResponse.content.decode('utf-8'))

您只是将其以错误的顺序放置,是无辜的错误。


(深入解答)。正如wim所礼貌地指出的那样,在极少数情况下,他们可以选择UTF-16或UTF-32。在这种情况下,对于开发人员而言,这种情况将不那么常见,在这种情况下,他们将有意识地决定放弃宝贵的带宽。因此,如果遇到编码问题,可以将utf-8更改为16、32等。

有两种解决方案。您可以使用请求的内置.json()函数:

myResponse.json()

或者,您可以选择通过进行字符检测chardet。Chardet是基于研究开发的图书馆。该库具有一个功能:detect。Detect可以检测到最常见的编码,然后使用它们来编码您的字符串。

import chardet
json.loads(myResponse.content.decode(chardet.detect(myResponse.content)["encoding"]))

31

让请求为您解码:

data = response.json()

这将检查标题(内容类型)和响应编码,自动检测如何正确解码内容。


1
我正在尝试使用您的方法,但出现错误:“ InMemoryUploadedFile”对象没有属性“ json”,这是来自request.FILES ['file']。json()
Manza

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.