Gather ye rosebuds while ye may

Python 刷微博


上一篇里面说过了,要改冲神的jincin.py
改成功了,能够刷微博,但是好像并不完美。。。

代码

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#coding=utf-8
import urllib
import urllib2
for i in range(1,11):
url = "http://m.weibo.cn/mblogDeal/addAMblog"

data = "content=发十次之"+str(i)+"&st=ceb309"

headers = {'Host': 'm.weibo.cn',
'Accept': 'application/json, text/javascript, */*; q=0.01',
'X-Requested-With': 'XMLHttpRequest',
'Accept-Encoding': 'gzip, deflate',
'Accept-Language': 'zh-cn',
'Content-Type': 'application/x-www-form-urlencoded; charset=UTF-8',
'Origin': 'http://m.weibo.cn',
'Content-Length': '26',
'Connection': 'keep-alive',
'User-Agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56',
'Referer': 'http://m.weibo.cn/mblog',
'Cookie': '不准看'}

req = urllib2.Request(url, data, headers)


try:
response = urllib2.urlopen(req)
print(i)
except:
print('error!')
exit()

print(response.read())

效果

可惜不会吧所有的都发出来
但是已经晓得通过m.weibo.com可以通过发送post包的方式发微博
理论上现在只用改数据就可以做到发一百次一千次
不知道微博有没有限制,我还没有尝试
有的话就用 delay 吧,也是两三行的操作
希望新浪不要把这个给封了


以上