我一直试图通过python代码向深度梦想网站发布图像文件,但每次尝试时,我都会回到主页面。我仍然对请求的post方法不熟悉,但经过几个小时的搜索后,我似乎不知道出了什么问题。
这是我尝试过的代码:
url = 'http://psychic-vr-lab.com/deepdream/'
files = {'imagefile': open('test.jpg', 'rb')}
print("sending file to "+url)
r = requests.post(url, files=files)
print(r.text)
这是我在浏览器中尝试时的有效负载
------WebKitFormBoundaryVe3sVw1pN61EAIZ3
Content-Disposition: form-data; name="imagefile"; filename="test.jpeg"
Content-Type: image/jpeg
------WebKitFormBoundaryVe3sVw1pN61EAIZ3
Content-Disposition: form-data; name="MAX_FILE_SIZE"
5000000
------WebKitFormBoundaryVe3sVw1pN61EAIZ3--
任何有关理解的帮助都会很棒!