import json
import urllib.request, urllib.error, urllib.parse
Name = 'BagFullOfHoles' #Random player
Platform = 'xone'#pc, xbox, xone, ps4, ps3
url = 'http://api.bfhstats.com/api/playerInfo?plat=' + Platform + '&name=' + Name
json_obj = urllib.request.urlopen(url)
data = json.load(json_obj)
print (data)
類型錯誤:一類字節對象類型錯誤:無法使用類字節對象的字符串模式,API
就在最近使用2to3.py,這對不能使用字符串模式當我嘗試修復它時,出現錯誤或其他問題。任何人有任何指針?
[Python JSON解碼錯誤TypeError的可能的重複:不能在類似字節的對象上使用字符串模式](http://stackoverflow.com/questions/22359997/python-json-decoding-error-typeerror-傾斜使用的-A-串圖案上一個字節樣)。正如第一個答案所述,_「在Python 3中,您需要將'urllib.request.urlopen()'的'bytes'返回值解碼爲一個unicode字符串」_「。 –