2
我最近在向timeline_url發出請求時收到400錯誤的請求解析錯誤。Google返回400解析錯誤
進出口張貼到這個網址timeline_url = ' https://www.googleapis.com/mirror/v1/timeline '
編輯 下面是代碼:
headers = {'Content-Type': 'application/json',
'Authorization' : 'Bearer %s' % access_token}
body = {"text" : "Waddup doe!"}
""" ***********THIS IS RETURNING ERROR 400 PARSE ERROR***********"""
send_request(timeline_url, headers, 'POST',body)
的send_request方法是使用requests
req = requests.post(url, data=body, headers=headers)
我只是試圖插入純文本到我的時間表。
我就是這麼做的,在第一和它仍然返回400解析錯誤。我想也許請求是不正確的,因爲它缺少內容長度。你是對的,請求會自動填充。 – Clocker
也許你沒有對身體進行json編碼?看我最近的編輯。 –
在我忘記它是如何完成之前,我知道它行得通。 json.dumps()失蹤。謝謝你,偉大的觀察。 – Clocker