qd-today / qd

QD [v20240210] —— HTTP请求定时任务自动执行框架 base on HAR Editor and Tornado Server
https://qd-today.github.io/qd/
MIT License
4.46k stars 577 forks source link

[Feature] 提取 Request Headers #466

Closed chen8945 closed 1 year ago

chen8945 commented 1 year ago

Verify steps

Describe the Feature

目前框架似乎只支持提取Response Headers,但是个别网站在使用账号密码登录后需要提取请求头中 Cookie 的部分内容,加入到后续请求的请求头中

Describe the solution

例如这个,就需要提取请求头 Cookie 中的 b2_token 字段,加入到后续请求的请求头中 image image

Describe alternatives

No response

Additional context

No response

a76yyyy commented 1 year ago

可是request header不可能是凭空来的呀?它一般只可能是手动设置或者其他response的结果

chen8945 commented 1 year ago

可是request header不可能是凭空来的呀?它一般只可能是手动设置或者其他response的结果

刚刚找到了另一个方式获取token,但是之前我说的是这样的

这第一个请求是通过账号密码登录,发送出去后响应内容为空,直接重定向到了网站首页,第二个请求响应头里也没有相关数据,也可能是我遗漏了,回头我再排查看看 image