我想從我的api返回一個json對象。使用python的請求框架從api獲取json對象。內容類型在運行時返回application/json,因此內容爲json。Python使用請求來執行GET來接收應用程序/ json對象
url = 'theUrl'
response = requests.get(url)
print(response.headers['content-type'])
data = json.load(response)
運行時返回腳本:
提高ValueError異常( 「無JSON對象可以解碼」) ValueError異常:無JSON對象可以被解碼。
執行請求時,還會出現另一個問題api會引發錯誤。 API的錯誤日誌產生的
message.internal.WriterInterceptorExecutor錯誤:沒有找到
我已經嘗試了各種不同的方法來此,但似乎無法接受的媒體類型= {text/html的} MessageBodyWriter json對象。任何人遇到類似問題?
你的意思是有'數據= json.loads(response.json)'? – ritlew