Chinaunix首页 | 论坛 | 博客
  • 博客访问: 547230
  • 博文数量: 142
  • 博客积分: 2966
  • 博客等级: 少校
  • 技术积分: 1477
  • 用 户 组: 普通用户
  • 注册时间: 2009-12-07 22:37
文章分类

全部博文(142)

文章存档

2013年(3)

2012年(21)

2011年(53)

2010年(33)

2009年(32)

分类: Python/Ruby

2011-05-21 12:40:14

  1. #!/usr/bin/env python
  2. import urllib
  3. import httplib2
  4. http = httplib2.Http()
  5. url= ''
  6. body ={'USERNAME': 'foo', 'PASSWORD': 'bar'}
  7. headers = {'Content-type': 'application/x-www-form-urlencoded'}
  8. response, content = http.request(url, 'POST', headers=headers, body=urllib.urlencode(body))
  9. headers = {'Cookie': response['set-cookie']}
  10. url = ''
  11. response, content = http.request(url, 'GET', headers=headers)
httplib2文档:  
从http post method的response里拿到cookie,然后之后用这个cookie与服务器交互。
阅读(1596) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~