- 论坛徽章:
- 0
|
1、登录自己portal的过程中,同时登录Discuz 并记录登录Discuz成功后的cookie
#登录获取登录formhash
# 。。。。。。省略,或见最上面的通用登录代码
#登陆Discuz
postdata = {
'answer':arg['answer'],
'formhash':formhash,
'password':arg['password'],
'questionid':0 if arg['questionid']=='' else arg['questionid'],
'referer':arg['domain'] if arg['referer']=='' else arg['referer'],
'username':arg['username'],
}
postdata = urllib.urlencode(postdata)
login_url = arg['domain']+'member.php?mod=logging&action=login&loginsubmit=yes&handlekey=login&loginhash=LCaB3&inajax=1'
req = urllib2.Request(
url= login_url,
data=postdata
)
page = urllib2.urlopen(req)
# 在此记录全局变量,登录后返回的Cookie
global g_cookie
g_cookie = page.info()['Set-cookie']
logger.info(g_cookie)
c = opener.open(req).read(300)
flag = 'BBS login failed: %s' % arg['username']
if 'succeedhandle_login' in c:
cookie.save(cookieFile)
logger.info('BBS login success!')
flag = 'success'
elif 'action=activation' in c:
flag = 'activation'
2、登录Discuz成功后,访问Discuz论坛
通过setting中设置的url =r('^bbs/$','redirect_bbs')
views视图处理如下:
def redrict_bbs(request):
ucResult = ''
# 将登录过程中存储的cookie文件 load
cookiePath = './bbs.cookies.dat'
cookiejar = cookielib.LWPCookieJar()
cookiejar.load(cookiePath, ignore_discard=True, ignore_expires=True)
# 重定向到 论坛
response = HttpResponseRedirect('http://bbs.37joy.com/forum.php')
cookies = cookiejar._cookies['.bbs.37joy.com']['/']
for ckey in cookies:
logger.info('load cookie key : ' + ckey)
cookie = cookies[ckey]
# 设置带cookie 的定向response
response.set_cookie(cookie.name,cookie.value,domain='.bbs.37joy.com')
return response
3、网络抓包:
第一个包 Get "/bbs/"的,其响应头信息:
Content-Type text/html; charset=utf-8
Date Tue, 06 Nov 2012 08:23:04 GMT
Location http://bbs.37joy.com/forum.php
Server WSGIServer/0.1 Python/2.5
Set-Cookie ZPmT_2132_lastact=1352184990%09member.php%09logging; Domain=.bbs.37joy.com; Path=/ ZPmT_2132_sid=mzrQpr; Domain=.bbs.37joy.com; Path=/ ZPmT_2132_saltkey=g9fRGCgn; Domain=.bbs.37joy.com; Path=/ ZPmT_2132_lastvisit=1352181390; Domain=.bbs.37joy.com; Path=/
Vary Cookie
注:其中cookie和登录存储的cookie文件load的key和value同,但和 返回的g_cookie 的key不同,少了ZPmt_2132_auth .
第二个包的头信息:
Connection Keep-Alive
Content-Type text/html; charset=utf-8
Date Tue, 06 Nov 2012 08:23:04 GMT
Keep-Alive timeout=5, max=100
Server Apache/2.2.22 (Win32) PHP/5.2.17 mod_python/3.3.0b Python/2.5
Set-Cookie ZPmT_2132_lastact=1352190184%09forum.php%09; expires=Wed, 07-Nov-2012 08:23:04 GMT; path=/ ZPmT_2132_onlineusernum=2; expires=Tue, 06-Nov-2012 08:28:04 GMT; path=/ ZPmT_2132_sid=d5rrYY; expires=Wed, 07-Nov-2012 08:23:04 GMT; path=/
Transfer-Encoding chunked
X-Powered-By PHP/5.2.17
注:跳转到furom.php的响应包头cookie和请求包头已经不一样!
登录Discuz后,访问Discuz,浏览器客户端,不能获得设置的cookie!
|
|