rogerxavier commited on
Commit
34cefe0
·
verified ·
1 Parent(s): b1a5839

Update login.py

Browse files
Files changed (1) hide show
  1. login.py +2 -2
login.py CHANGED
@@ -33,10 +33,10 @@ def get_response_headers(account:str,password:str,captcha_text:str):
33
  }
34
 
35
  response = session.post(login_url, data=payload)
36
-
37
  # 获取响应头
38
  headers = response.headers
39
- print(headers)
40
  return headers
41
 
42
 
 
33
  }
34
 
35
  response = session.post(login_url, data=payload)
36
+ print("login请求结果是:",response.text)
37
  # 获取响应头
38
  headers = response.headers
39
+ print('login请求响应头是:',headers)
40
  return headers
41
 
42