我有一个带有 HTML 表单的网站。登录后,它会将我带到一个 start.php 站点,然后将我重定向到一个 overview.php。
我想从该服务器下载文件...当我单击 ZIP 文件的下载链接时,链接后面的地址是:
getimage.php?path="vol/img"&id="4312432"
我该如何处理请求?我试图创建一个会话并使用正确的参数执行 GET-Command ......但答案只是我未登录时会看到的网站。
c = requests.Session()
c.auth =('myusername', 'myPass')
request1 = c.get(myUrlToStart.PHP)
tex = request1.text
with open('data.zip', 'wb') as handle:
request2 = c.get(urlToGetImage.Php, params=payload2, stream=True)
print(request2.headers)
for block in request2.iter_content(1024):
if not block:
break
handle.write(block)