我试图获得PHPSESSID。我做错了什么?
import requests
k = requests.get('http://index.hu')
for cookie in k.cookies:
print (cookie.name, cookie.value)
结果:
('INX_CHECKER2', '1')
('mobile_detect', 'desktop')
当我打开页面时,它在Cookie中有PHPSESSID。
答案 0 :(得分:0)
主页面未设置PHPSESSID,如您在问题的评论中发现的那样。 通过向http://index.hu/ident
发出请求来设置通过将代码更改为:
import requests
k = requests.get('http://index.hu/ident')
for cookie in k.cookies:
print (cookie.name, cookie.value)
我得到以下结果:
INX_CHECKER2 1
PHPSESSID 7hq1o1rqe9ft78h0d2agelcf90
inx_checker2 1