我想下载“令牌”受保护文件并使用我的cookie文件以避免多次重新登录。 我进行的方式如下
首先,导入cookie
import requests, cookielib
cj = cookielib.MozillaCookieJar('cookies.txt')
cj.load()
r = requests.get(url, cookies=cj)
这是我遇到问题的地方,我必须按照这些步骤才能成功下载所需的文件。 (方括号中的所有内容都必须更换)
>> http://videoXXXXXXXX.fr/index.php?optio … &video_id=[VIDEO_ID]&load=1
Recover the cookie provided via "header set-cookie"
>> http://videoXXXXXXXX.fr/index.php?optio … &video_id=[VIDEO_ID]
Recover the "order_id" in the sent back page [ORDER_ID]
>> http://videoXXXXXXXX.fr/index.php?optio … &order_id=[ORDER_ID]
Recover the response token: [Token]
>> http://videoXXXXXXXX.fr/index.php?optio … raw&token=[Token]&order_id=[ORDER_ID]
This step allow the activation of the cookie recovered in step 1 as well as to obtain the complete file
>> http://videoXXXXXXXX.fr/picture_[VIDEO_ID].png
但事实是,我希望得到一些帮助,以便在“Python”中完成所有这些工作
提前感谢您的时间和帮助。