-1

我正在尝试使用 tampermonkey/greasemonkey 通过 PyLoad 的 API 进行身份验证,但 cookie 既没有在响应中也没有在标头中发送。
它成功登录,但答案与Firefox控制台的答案不同(cookie丢失)。

Greasemonkey :
responseText: true
responseHeader: Cache-Control: no-cache, must-revalidate
--------------- Content-Length: 4
------------ --- 内容类型:应用程序/json
--------------- 日期:星期日,2018 年 2 月 11 日 20:39:10 GMT
------------ --- 服务器:CherryPy/3.1.2 WSGI 服务器

firefox :
response: 67fc662d6[...]758b2f94ffd2
header: Cache-Control no-cache, must-revalidate
--------- Content-Length 34
--------- Content-Type application/ json
--------- 日期 Sun,2018 年 2 月 11 日 19:59:11 GMT
--------- 服务器 CherryPy/3.1.2 WSGI 服务器
--------- Set- cookie beaker.session.id=67fc662d6…2038 年 1 月 04:14:07 GMT;路径=/

4

1 回答 1

0

cookie 仅存在于第一个请求中,并且不会在几天内重新发送。创建了一个会话,因此无需在以下请求中重复使用 cookie。

于 2018-02-17T10:26:04.697 回答