新浪微博爬取筆記(2):wap端模擬登錄 python

===================php

看了其餘人的博客都寫的很簡潔乾淨,我這邊的排版簡直要暈。圖和代碼一塊兒上,小白每一步都要有講解。。。html

===================python

 

雖然weibo.com的模擬登錄用http://www.cnblogs.com/houkai/p/3487816.html的代碼成功了,可是新版微博的標籤太複雜,並且爬取一個用戶的微博列表的時候,最底端是「正在加載」,很差模擬。所以改爬weibo.cn。瀏覽器

除此以外,weibo.cn比weibo.com更適合爬取的緣由還有:cookie

一、weibo.cn的模擬登錄步驟比weibo.com要簡單;app

二、微博列表是分頁顯示,目前每頁有5條;dom

三、評論,轉發列表都是靜態加載。socket

 

先進行模擬登錄。模擬登錄有兩種方法,在pc端操做:工具

一、user-agent用UC瀏覽器,模仿手機端,如http://blog.csdn.net/zhaolina004/article/details/28699095,步驟簡單。須要注意的是,雖然在手機端能夠採用保存登錄後頁面即保存cookie下次直接登錄的方式,pc端則不行。post

####15年4月 登錄後地址變爲http://weibo.cn/?vt=4 再也不顯示gsid (事實上顯示gsid的網址重定向到weibo.cn/?vt=4,如下截圖中會顯示,直接訪問並不能進入登錄頁面,用UC也不行)

####放棄

二、user-agent用Firefox瀏覽器,如http://qinxuye.me/article/simulate-weibo-login-in-python/,這篇是12年的文章,如今是15年4月,登錄頁面地址和請求數據等都發生了改變,須要作一些修改。

 

=====================================================

試一下方法2, 邊作邊寫:

原始代碼來自http://qinxuye.me/article/simulate-weibo-login-in-python/,現粘貼到下方:

 1 import urllib2
 2 import urllib
 3 import cookielib
 4 
 5 import lxml.html as HTML
 6 
 7 class Fetcher(object):
 8     def __init__(self, username=None, pwd=None, cookie_filename=None):
 9         self.cj = cookielib.LWPCookieJar()
10         if cookie_filename is not None:
11             self.cj.load(cookie_filename)
12         self.cookie_processor = urllib2.HTTPCookieProcessor(self.cj)
13         self.opener = urllib2.build_opener(self.cookie_processor, urllib2.HTTPHandler)
14         urllib2.install_opener(self.opener)
15         
16         self.username = username
17         self.pwd = pwd
18         self.headers = {'User-Agent':'Mozilla/5.0 (Windows NT 6.1; rv:14.0) Gecko/20100101 Firefox/14.0.1',
19                         'Referer':'','Content-Type':'application/x-www-form-urlencoded'}
20     
21     def get_rand(self, url):
22         headers = {'User-Agent':'Mozilla/5.0 (Windows;U;Windows NT 5.1;zh-CN;rv:1.9.2.9)Gecko/20100824 Firefox/3.6.9',
23                    'Referer':''}
24         req = urllib2.Request(url ,urllib.urlencode({}), headers)
25         resp = urllib2.urlopen(req)
26         login_page = resp.read()
27         rand = HTML.fromstring(login_page).xpath("//form/@action")[0]
28         passwd = HTML.fromstring(login_page).xpath("//input[@type='password']/@name")[0]
29         vk = HTML.fromstring(login_page).xpath("//input[@name='vk']/@value")[0]
30         return rand, passwd, vk
31     
32     def login(self, username=None, pwd=None, cookie_filename=None):
33         if self.username is None or self.pwd is None:
34             self.username = username
35             self.pwd = pwd
36         assert self.username is not None and self.pwd is not None
37         
38         url = 'http://3g.sina.com.cn/prog/wapsite/sso/login.php?ns=1&revalid=2&backURL=http%3A%2F%2Fweibo.cn%2F&backTitle=%D0%C2%C0%CB%CE%A2%B2%A9&vt='
39         rand, passwd, vk = self.get_rand(url)
40         data = urllib.urlencode({'mobile': self.username,
41                                  passwd: self.pwd,
42                                  'remember': 'on',
43                                  'backURL': 'http://weibo.cn/',
44                                  'backTitle': '新浪微博',
45                                  'vk': vk,
46                                  'submit': '登陸',
47                                  'encoding': 'utf-8'})
48         url = 'http://3g.sina.com.cn/prog/wapsite/sso/' + rand
49         req = urllib2.Request(url, data, self.headers)
50         resp = urllib2.urlopen(req)
51         page = resp.read()
52         link = HTML.fromstring(page).xpath("//a/@href")[0]
53         if not link.startswith('http://'): link = 'http://weibo.cn/%s' % link
54         req = urllib2.Request(link, headers=self.headers)
55         urllib2.urlopen(req)
56         if cookie_filename is not None:
57             self.cj.save(filename=cookie_filename)
58         elif self.cj.filename is not None:
59             self.cj.save()
60         print 'login success!'
61         
62     def fetch(self, url):
63         print 'fetch url: ', url
64         req = urllib2.Request(url, headers=self.headers)
65         return urllib2.urlopen(req).read()

 

看一下登陸過程,用firefox的httpfox工具:

(1)進入登錄頁面,獲得url

 

對照代碼中38,39行,須要改url爲以上頁面的url:

38         url = 'http://3g.sina.com.cn/prog/wapsite/sso/login.php?ns=1&revalid=2&backURL=http%3A%2F%2Fweibo.cn%2F&backTitle=%D0%C2%C0%CB%CE%A2%B2%A9&vt='
39         rand, passwd, vk = self.get_rand(url)

 

再看一下39行用到的get_rand():

*從第7行開始按照代碼,查找頁面元素,可看到rand, passwd, vk這些值在哪裏:

(注意這裏的headers又被定義了一遍,而在_init_()中已經給定了self.headers,暫且註釋掉,而且根據實際所用的firefox版本(以上頁面Request Header中的user-agent項)改掉_init_中的self.headers.)

(這裏獲得的password不是用戶密碼,是登錄request須要提交數據項的名稱,後面有解釋)

 1 def get_rand(self, url):##############get rand, see html page 
 2         #headers = {'User-Agent':'Mozilla/5.0 (Windows;U;Windows NT 5.1;zh-CN;rv:1.9.2.9)Gecko/20100824 Firefox/3.6.9',
 3         #           'Referer':''}  #####why different?
 4         req = urllib2.Request(url ,urllib.urlencode({}), self.headers)
 5         resp = urllib2.urlopen(req)
 6         login_page = resp.read()
 7         rand = HTML.fromstring(login_page).xpath("//form/@action")[0]
 8         passwd = HTML.fromstring(login_page).xpath("//input[@type='password']/@name")[0]
 9         vk = HTML.fromstring(login_page).xpath("//input[@name='vk']/@value")[0]
10         return rand, passwd, vk

輸入用戶名和密碼:

 

輸入用戶名和密碼以後,沒有新的響應,說明新浪沒有對這兩個字段作加密處理,這是和微博pc端weibo.com不一樣的地方。

 

(2)提交post

 

可看到有4個重定向,和一個200的最終url。 其中第一個重定向是POST方法,其他的都是GET。

先看POST的重定向:

看一下原始代碼的login()部分40到49行,

40         data = urllib.urlencode({'mobile': self.username,
41                                  passwd: self.pwd,
42                                  'remember': 'on',
43                                  'backURL': 'http://weibo.cn/',
44                                  'backTitle': '新浪微博',
45                                  'vk': vk,
46                                  'submit': '登陸',
47                                  'encoding': 'utf-8'})
48         url = 'http://3g.sina.com.cn/prog/wapsite/sso/' + rand
49         req = urllib2.Request(url, data, self.headers)

(其中password的「:」前的部分是一個變量,緣由在下一張截圖中)

rand, password, vk字段都是在get_rand()時已經獲得。看一下登錄request中須要的具體數據項data:

 

 

password後是一個「_」另加四位數字。這個數字不是固定的,這是我第二次訪問,和第一次訪問的數字已經不一樣了。因此在get_rand()中用變量存儲password;

 value部分有一些亂碼。頁面是utf-8編碼的,把最下面的Pretty改爲Raw顯示獲得utf-8編碼的形式,整理一下:

1 mobile=******2 password_2854=*******  ##這是上一次登錄的password名稱3 remember=on
4 backURL=http%253A%252F%252Fweibo.cn
5 backTitle=%E6%89%8B%E6%9C%BA%E6%96%B0%E6%B5%AA%E7%BD%91
6 tryCount=
7 vk=2854_cfe0_1714426041
8 submit=%E7%99%BB%E5%BD%95

這些value值段的是utf-8編碼後的形式。用網上的在線utf-8轉換,獲得的是和上圖同樣的亂碼。。Anyway,那就直接用utf-8編碼後的結果。

#############update 4.21############

說錯了,這裏不是utf-8編碼,而是HTML轉義序列的unicode解碼, HTML轉義序列參見http://www.zhihu.com/question/21390312的最高票回答;

%8B%E6%9C%BA%E6%96%用unicode編碼以後成爲「&#, &#」格式的HTML轉義序列,character reference, "從 HTML 4 開始,NCR 以 Unicode 爲準,與文檔編碼無關"。

網頁編碼是utf-8而不是報文編碼。 個人火狐瀏覽器設置的編碼也是utf-8,因此解析出來是亂碼

#################################

 

用本地看到的POST data改一下原始代碼中的data部分,一樣也改一下POST請求的url:

 1     data = urllib.urlencode({'mobile':self.username,
 2                                   passwd :self.pwd,
 3                                  'remember':'on',
 4                                  'backURL':'http://weibo.cn/',
 5                                  #'backTitle':u''.decode('utf-8').encode('utf-8'),
 6                                  #'backTitle':'&#x65B0&#x6D6A&#x5FAE&#x535A',
 7                                  'backTitle':'%E6%89%8B%E6%9C%BA%E6%96%B0%E6%B5%AA%E7%BD%91',
 8                                  'tryCount':'',
 9                                  'vk':vk,
10                                  #'submit':u''.decode('utf-8').encode('utf-8'),
11                                  #'submit':'&#x767B&#x9646',
12                                  'submit':'%E7%99%BB%E5%BD%95'})
13         url = 'http://login.weibo.cn/login/?' + rand + '&backURL=http%3A%2F%2Fweibo.cn%2F&backTitle=%E5%BE%AE%E5%8D%9A&vt=4&revalid=2&ns=1'

 

 (原始代碼定位元素用了lxml這個包。另外一個方案是用BeautifulSoup。雖然lxml的速度聽說比BeautifulSoup快10倍。。可是lxml安裝比較麻煩。。因此先改成BeautifulSoup實現。)

 

(3)經過GET獲得gsid,獲得登錄url,重定向到最終url "weibo.cn/&vt=4"

再看GET帶gsid的url的重定向到主頁,看一下GET報文:

代碼中這部分沒法理解,新浪應該已經改了:

48         url = 'http://login.weibo.cn/' + rand
49         req = urllib2.Request(url, data, self.headers)
50         resp = urllib2.urlopen(req)
51         page = resp.read()
52         link = HTML.fromstring(page).xpath("//a/@href")[0]
53         if not link.startswith('http://'): link = 'http://weibo.cn/%s' % link
54         req = urllib2.Request(link, headers=self.headers)     

如上上圖,須要GET weibo.cn/ + gsid,gsid的值在cookie中,如圖:

 

 

cookie中的gsid_CTandWT字段的值便是。是由weibo.cn存儲的。

看一下四個重定向:

 

 

第一個login.weibo.cn裏面沒有這個cookie;第三個passport.weibo.com是weibo.com的,沒有gsid;第二個和第四個裏面有。可是gsid_CTandWM不是由第二個get產生的,由於第二個的報文中的cookie行裏已經用了gsid。

那隻能認爲第一個的POST就獲得了gsid值,雖然response報文裏什麼都沒有(估計是對用戶隱蔽吧)。

參考這篇文章http://blog.csdn.net/xiexieni057/article/details/16698787裏處理cookie的方法:

 1         #get an important cookie value gsid from cookiejar  
 2         try:  
 3             beginPos = str(self.cookie).index('gsid_CTandWM')  
 4             endPos = str(self.cookie).index('for', beginPos)  
 5         except Exception as e:  
 6             print e  
 7         if beginPos >= endPos:  
 8             print "cookie was changed by sina"  
 9         else:  
10             cookie_value = str(self.cookie)[beginPos: endPos]  
11         self.headers2 = {'User-Agent': 'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:37.0) Gecko/20100101 Firefox/37.0',  
12                          'cookie': cookie_value}  
13         #use gsid to login
14         req = urllib2.Request(url="http://weibo.cn",  
15                                   data=urllib.urlencode({}),  
16                                   headers=self.headers2)  
17         urllib2.urlopen(req)

貼一下改完後的代碼:

 1 # -*- coding : utf-8 -*-
 2 import re 
 3 import urllib2   
 4 import random 
 5 import urllib
 6 import cookielib
 7 import socket
 8  
 9 #import lxml.html as HTML
10 from bs4 import BeautifulSoup
11 
12 class Fetcher(object):
13     def __init__(self, iplist=[], username=None, pwd=None, cookie_filename=None):
14         if iplist != []:
15             self.iplist = iplist
16             proxy_ip = random.choice(self.iplist) 
17             self.proxy_handler = urllib2.ProxyHandler({'http': 'http://' + proxy_ip})
18         else:
19             self.proxy_handler = urllib2.ProxyHandler()
20 
21         self.cj = cookielib.LWPCookieJar()
22         ##cookie jar, use self.cj to restore the cookies generated in the process
23         if cookie_filename is not None:
24             self.cj.load(cookie_filename)
25         self.cookie_processor = urllib2.HTTPCookieProcessor(self.cj)
26         self.opener = urllib2.build_opener(self.cookie_processor, urllib2.HTTPHandler, self.proxy_handler)
27         urllib2.install_opener(self.opener)
28         #urllib2 set environment(?) 
29         
30         self.username = username #
31         self.pwd = pwd #
32         self.headers = {'User-Agent':'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:37.0) Gecko/20100101 Firefox/37.0',
33                         'Referer':'', 'Content-Type':'application/x-www-form-urlencoded'}
34      
35     def get_rand(self, url):##############get rand, see html page 
36         req = urllib2.Request(url ,urllib.urlencode({}), self.headers)
37         resp = urllib2.urlopen(req, timeout = 10)
38         login_page = resp.read()
39         soup = BeautifulSoup(login_page)  ####need fix?
40         rand = soup.form['action'][6:15]
41         passwd =  soup.find_all('input', attrs = {"type":"password"})[0]['name']
42         vk = soup.find_all('input', attrs = {"name":"vk"})[0]['value']
43         print rand, passwd, vk
44         return rand, passwd, vk
45      
46     def login(self, username=None, pwd=None, cookie_filename=None):
47         if self.username is None or self.pwd is None:
48             self.username = username
49             self.pwd = pwd
50         assert self.username is not None and self.pwd is not None
51         print self.pwd, self.username
52          
53         url = 'http://login.weibo.cn/login/?ns=1&revalid=2&backURL=http%3A%2F%2Fweibo.cn%2F&backTitle=%CE%A2%B2%A9&vt=' #use this url to get rand
54         rand, passwd, vk = self.get_rand(url)  ###sucess
55         data = urllib.urlencode({'mobile':self.username,
56                                   passwd :self.pwd,
57                                  'remember':'on',
58                                  'backURL':'http://weibo.cn/',
59                                  'backTitle':'%E6%89%8B%E6%9C%BA%E6%96%B0%E6%B5%AA%E7%BD%91',
60                                  'tryCount':'',
61                                  'vk':vk,
62                                  'submit':'%E7%99%BB%E5%BD%95'})
63         url = 'http://login.weibo.cn/login/?' + rand + '&backURL=http%3A%2F%2Fweibo.cn%2F&backTitle=%E5%BE%AE%E5%8D%9A&vt=4&revalid=2&ns=1'
64         resp = urllib2.urlopen(req, timeout = 10) 
65 
66         #get gsid from cookie
67         beginPos = str(self.cj).index('gsid_CTandWM')  
68         endPos = str(self.cj).index('for', beginPos) 
69         if beginPos >= endPos:  
70             print "cookie was changed by sina"  
71         else:  
72             self.cookie_value = str(self.cj)[beginPos: endPos] 
73         self.headers2 = {'User-Agent': 'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:37.0) Gecko/20100101 Firefox/37.0',  
74                      'cookie': self.cookie_value}  
75 
76         req = urllib2.Request(url="http://weibo.cn",  
77                               data=urllib.urlencode({}),  
78                               headers=self.headers2)  
79         urllib2.urlopen(req, timeout = 10)
80 
81         #save cookie        
82         if cookie_filename is not None:
83             self.cj.save(filename=cookie_filename)
84         elif self.cj.filename is not None:
85             self.cj.save()
86         print 'login success!'
87          
88     def fetch(self, url):
89         print 'fetch url: ', url 
90         req = urllib2.Request(url, headers=self.headers)  #specify the headers parameter
91         return urllib2.urlopen(req, timeout = 10).read()
92 

 

 

 

============================================================================

須要改的部分基本就完成了。如今測試:

加了兩個print語句,分別打印最終獲得的cookie和gsid值。能看到成功了!訪問weibo.cn,並將網頁內容打印到文件,也是主頁的狀態。

 

 

總結:

一、POST要求的data部分,沒有寫中文(由於是亂碼),而是按照raw格式顯示的內容原樣粘貼上去。

二、最後測試出現問題的都是細節,好比GET要求的語句格式啊,data格式啊,要對本身有信心。。

相關文章
相關標籤/搜索