问题1:HTTP请求返回的content转换成dict字典再处理数据报错
描述:使用httplib2库发起一个POST请求并处理返回的响应,返回的content直接使用json.loads()转换成dict字典会报错。
报错:user = json.loads(user_json)
File "/usr/lib/python3.5/json/__init__.py", line 312, in loads
s.__class__.__name__))
TypeError: the JSON object must be str, not 'bytes'
解决:因为python3的httplib2库返回的内容是bytes对象,先将其转成string字符串类型,再对其进行解析或再转成dict字典。
参考,https://www.oschina.net/question/1012422_145865
方法1,
user_string = user_json.decode()
user = json.loads(user_string) # 将string数据转成dict类型
print("type of user: ", type(user))
方法2,
import ast
user_string = user_json.decode()
user = ast.literal_eval(user_string) # 将string数据转成dict类型
print("type of user: ", user)