├── .gitignore
├── LICENSE
├── README.md
├── apple.png
├── apple_wc.png
├── edge.png
├── edge_wc.png
├── google.jpg
├── google_wc.png
├── result_iPhone.json
├── result_微软.json
├── result_谷歌.json
├── sample.json
├── weibo_cloud.py
└── weibo_search.py
/.gitignore:
--------------------------------------------------------------------------------
1 | .idea
2 | __pycache__
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | MIT License
2 |
3 | Copyright (c) 2017 dzkang
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
22 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # 微博爬虫与词云展示
2 |
3 | ### 环境
4 |
5 | - Python 3
6 | - requests
7 | - jieba
8 | - matplotlib
9 | - wordcloud
10 | - scipy
11 |
12 | ### 爬虫
13 |
14 | 由于移动端网页版并未对爬虫做太大的限制,因此可以直接爬取微博搜索部分数据。搜索 API 如下:
15 |
16 | ```
17 | https://m.weibo.cn/api/container/getIndex?type=wb&queryVal={}&containerid=100103type=2%26q%3D{}&page={}
18 | ```
19 |
20 | 基于这个 API 可以获取到一定量的 JSON 数据 (原始数据见 sample.json),经过处理后,格式如下:
21 |
22 | ```json
23 | {
24 | "mid": "4199434918992223",
25 | "text": "【深度学习的终极形态】近期,院友袁进辉博士回到微软亚洲研究院做了题为《打造最强深度学习引擎》的报告,分享了深度学习框架方面的技术进展。他在报告中启发大家思考如何才能“鱼和熊掌兼得”,让软件发挥灵活性,硬件发挥高效率。我们整理了本次报告的重点,希望能对大家有所帮助! ...全文",
26 | "userid": "1286528122",
27 | "username": "微软亚洲研究院",
28 | "reposts_count": 21,
29 | "comments_count": 1,
30 | "attitudes_count": 9
31 | }
32 | ```
33 |
34 | 详细的爬虫见 weibo_search.py。
35 |
36 | ### 词云
37 |
38 | 词云的实现可以使用 wordcloud,基本的步骤是:
39 |
40 | 1. 分词与关键词提取:中文的文本需要分词和去除大量的停用词,例如(你,我,他,这是),
41 | 才能使得生成的词云图更加具有意义。这一步,使用 jieba 分词器的 TF-IDF 关键词提取,就可以直接完成。
42 |
43 | 2. 传入 wordcloud 的是一个字符串以及一幅底层图像,将第一步得到的关键词用空格串联起来,
44 | 对于底层图像的选取,尽量选择白底无背景图像,这样生成的图像就会更加接近原图。
45 |
46 | 代码详见 weibo_cloud.py。
47 |
48 |
49 |
50 | ### 样例
51 |
52 | 关键词:iPhone
53 |
54 | 
55 |
56 |
57 | 关键词:微软
58 |
59 | 
60 |
61 | 关键词:谷歌
62 |
63 | 
64 |
--------------------------------------------------------------------------------
/apple.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gaussic/weibo_wordcloud/1e182709cab1dbf632eaf6746d3d4859f13bd7ba/apple.png
--------------------------------------------------------------------------------
/apple_wc.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gaussic/weibo_wordcloud/1e182709cab1dbf632eaf6746d3d4859f13bd7ba/apple_wc.png
--------------------------------------------------------------------------------
/edge.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gaussic/weibo_wordcloud/1e182709cab1dbf632eaf6746d3d4859f13bd7ba/edge.png
--------------------------------------------------------------------------------
/edge_wc.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gaussic/weibo_wordcloud/1e182709cab1dbf632eaf6746d3d4859f13bd7ba/edge_wc.png
--------------------------------------------------------------------------------
/google.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gaussic/weibo_wordcloud/1e182709cab1dbf632eaf6746d3d4859f13bd7ba/google.jpg
--------------------------------------------------------------------------------
/google_wc.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gaussic/weibo_wordcloud/1e182709cab1dbf632eaf6746d3d4859f13bd7ba/google_wc.png
--------------------------------------------------------------------------------
/sample.json:
--------------------------------------------------------------------------------
1 | {
2 | "ok": 1,
3 | "data": {
4 | "cardlistInfo": {
5 | "v_p": "42",
6 | "containerid": "100103type=2&q=iPhone",
7 | "title_top": "iPhone",
8 | "total": 1000,
9 | "show_style": 1,
10 | "starttime": 1516705171,
11 | "can_shared": 0,
12 | "cardlist_menus": [],
13 | "cardlist_head_cards": [],
14 | "toolbar_menus": [],
15 | "show_read_progress": null,
16 | "show_read_progress_stop": null,
17 | "page_size": 20,
18 | "page": 11
19 | },
20 | "cards": [
21 | {
22 | "card_type": 11,
23 | "show_type": 1,
24 | "card_group": [
25 | {
26 | "card_type": 9,
27 | "card_type_name": "微博",
28 | "itemid": "seqid:586777392|type:2|t:|pos:10-0-0|q:iPhone|ext:&mid=4199408960166799&",
29 | "actionlog": {
30 | "act_code": 554,
31 | "ext": "seqid:586777392|type:2|t:|pos:10-0-0|q:iPhone|ext:&mid=4199408960166799&",
32 | "luicode": "",
33 | "uicode": "",
34 | "fid": "100103type=2&q=iPhone"
35 | },
36 | "display_arrow": 0,
37 | "show_type": 1,
38 | "mblog": {
39 | "created_at": "1小时前",
40 | "id": "4199408960166799",
41 | "mid": "4199408960166799",
42 | "idstr": "4199408960166799",
43 | "can_edit": false,
44 | "text": "亲爱的罐妈,
《最爱偶像》投票现在告急![\"[拳头]\"](\"//h5.sinaimg.cn/m/emoticon/icon/others/h_quantou-ba097f8ec2.png\")
![\"[拳头]\"](\"//h5.sinaimg.cn/m/emoticon/icon/others/h_quantou-ba097f8ec2.png\")
这是很重要的奖,三大赏之一,碗只有今年有机会拿,我们只拿一次。
现在@BYB联合打榜组 准备明天集资。希望大家能积极响应。![\"[微风]\"](\"//h5.sinaimg.cn/m/emoticon/icon/others/w_weifeng-7dc062ea5b.png\")
我们很缺人!!!ipad和iPhone很简单,不用vpn就可以投。真的很简单
可以投成员,也 ...全文",
45 | "textLength": 652,
46 | "source": "前置双摄vivo X9",
47 | "favorited": false,
48 | "thumbnail_pic": "http://wx4.sinaimg.cn/thumbnail/e06a02a8gy1fnqok05snbj20u01hc4b8.jpg",
49 | "bmiddle_pic": "http://wx4.sinaimg.cn/bmiddle/e06a02a8gy1fnqok05snbj20u01hc4b8.jpg",
50 | "original_pic": "http://wx4.sinaimg.cn/large/e06a02a8gy1fnqok05snbj20u01hc4b8.jpg",
51 | "is_paid": false,
52 | "mblog_vip_type": 0,
53 | "user": {
54 | "id": 3765043880,
55 | "screen_name": "LHHH_WNW",
56 | "profile_image_url": "https://tvax3.sinaimg.cn/crop.0.0.996.996.180/e06a02a8ly8fim00sr04mj20ro0ro423.jpg",
57 | "profile_url": "https://m.weibo.cn/u/3765043880?uid=3765043880&luicode=10000011&lfid=100103type%3D2%26q%3DiPhone",
58 | "statuses_count": 3933,
59 | "verified": false,
60 | "verified_type": -1,
61 | "close_blue_v": false,
62 | "description": "忘拿碗温拿团饭,嗑cp,碗兄弟情铺。不撕逼,101男孩粉。pg1,薛zq,sj粉勿来。忌各家黑粉酸粉毒唯。xlh",
63 | "gender": "f",
64 | "mbtype": 11,
65 | "urank": 33,
66 | "mbrank": 2,
67 | "follow_me": false,
68 | "following": false,
69 | "followers_count": 280,
70 | "follow_count": 514,
71 | "cover_image_phone": "https://wx2.sinaimg.cn/crop.0.0.640.640.640/e06a02a8gy1fmvc9l55l1j20u00u0tmy.jpg",
72 | "avatar_hd": "https://wx3.sinaimg.cn/orj480/e06a02a8ly8fim00sr04mj20ro0ro423.jpg",
73 | "like": false,
74 | "like_me": false,
75 | "badge": {
76 | "unread_pool": 1,
77 | "unread_pool_ext": 1,
78 | "dzwbqlx_2016": 1,
79 | "suishoupai_2017": 1
80 | }
81 | },
82 | "picStatus": "0:1,1:1,2:1,3:1,4:1,5:1,6:1,7:1,8:1",
83 | "reposts_count": 3,
84 | "comments_count": 3,
85 | "attitudes_count": 18,
86 | "pending_approval_count": 0,
87 | "isLongText": true,
88 | "longText": {
89 | "longTextContent": "亲爱的罐妈,\n 《最爱偶像》投票现在告急[拳头][拳头][拳头]这是很重要的奖,三大赏之一,碗只有今年有机会拿,我们只拿一次。\n 现在@BYB联合打榜组 准备明天集资。希望大家能积极响应。[微风]\n[围观]我们很缺人!!!ipad和iPhone很简单,不用vpn就可以投。真的很简单[可怜]可以投成员,也可以投团,成员分数算入团分数(也就是罐妈可以投给00让00的分数高一点),最后是团体一起拿奖。碗只有一次机会可以拿!多个人我们就可以少投入一点资金。\n [鲜花][鲜花][鲜花]一直到2月11号,我们每晚都要得第一名才能拿奖,而得第一名需要上亿的心,6块钱可以买1500颗,18可以买5000颗,68可以买20000颗。\n [心]你的每一份支持就是碗2月14得奖的一步阶梯。我们只有这一次机会,很缺人!",
90 | "url_objects": [
91 | {
92 | "url_ori": "#赖冠霖#",
93 | "object_id": "1022:100808a5b132c71a86078e2d219bd9e98ab597",
94 | "object": {
95 | "object_id": "1022:100808a5b132c71a86078e2d219bd9e98ab597",
96 | "containerid": "100808a5b132c71a86078e2d219bd9e98ab597",
97 | "object_domain_id": "1022",
98 | "object_type": "topic",
99 | "safe_status": 1,
100 | "show_status": "10",
101 | "act_status": "00",
102 | "last_modified": "Mon Jan 22 14:35:23 CST 2018",
103 | "timestamp": 1516602923984,
104 | "uuid": 4083502617256423,
105 | "activate_status": "0",
106 | "object": {
107 | "summary": "来自中国台湾,现在是韩国限定组合WannaOne成员,队内担当rapper,忙内。",
108 | "image": {
109 | "url": "http://wx3.sinaimg.cn/thumbnail/006AtFZ4gy1fl1gk7tz46j31251kwtts.jpg"
110 | },
111 | "presenter_status": "1",
112 | "object_type": "topic",
113 | "page_type": "6",
114 | "target_url": "http://huati.weibo.com/k/赖冠霖",
115 | "mobile": {
116 | "page_id": "100808a5b132c71a86078e2d219bd9e98ab597",
117 | "url": {
118 | "scheme": "sinaweibo://pageinfo?pageid=100808a5b132c71a86078e2d219bd9e98ab597&extparam=赖冠霖",
119 | "name": "赖冠霖",
120 | "status": "1"
121 | }
122 | },
123 | "display_name": "赖冠霖",
124 | "url": "http://huati.weibo.com/4656055",
125 | "tid": "4656055",
126 | "short_url": "http://t.cn/R6KVXTM",
127 | "super": {
128 | "super_time": "1490772415"
129 | },
130 | "biz": {
131 | "biz_id": "100808",
132 | "containerid": "100808a5b132c71a86078e2d219bd9e98ab597"
133 | },
134 | "search": [],
135 | "action": [
136 | "topic_follow"
137 | ],
138 | "location": "400-18",
139 | "attribute": "1",
140 | "id": "1022:100808a5b132c71a86078e2d219bd9e98ab597",
141 | "create_at": "1490772417",
142 | "category": "明星|2"
143 | },
144 | "actions": [
145 | {
146 | "name": "关注",
147 | "pic": "https://n.sinaimg.cn/photo/ab36dac5/20170616/follow_hollow.png",
148 | "type": "follow",
149 | "params": {
150 | "uid": "1022:100808a5b132c71a86078e2d219bd9e98ab597",
151 | "scheme": "${scheme}",
152 | "type": "page"
153 | }
154 | }
155 | ]
156 | },
157 | "like_count": 81948,
158 | "isActionType": true,
159 | "follower_count": 66920,
160 | "asso_like_count": 0,
161 | "card_info_un_integrity": false,
162 | "super_topic_status_count": 123541,
163 | "super_topic_photo_count": 103134,
164 | "is_follow_object": false
165 | }
166 | ]
167 | },
168 | "visible": {
169 | "type": 0,
170 | "list_id": 0
171 | },
172 | "topic_id": "1022:100808a5b132c71a86078e2d219bd9e98ab597",
173 | "sync_mblog": true,
174 | "is_imported_topic": false,
175 | "rid": "0_0_0_618401511749607748",
176 | "more_info_type": 0,
177 | "cardid": "star_498",
178 | "content_auth": 0,
179 | "status": 0,
180 | "itemid": "seqid:586777392|type:2|t:|pos:10-0-0|q:iPhone|ext:&mid=4199408960166799&",
181 | "page_info": {
182 | "page_pic": {
183 | "url": "https://wx3.sinaimg.cn/thumbnail/006AtFZ4gy1fl1gk7tz46j31251kwtts.jpg"
184 | },
185 | "page_url": "https://m.weibo.cn/p/index?containerid=100808a5b132c71a86078e2d219bd9e98ab597&extparam=%E8%B5%96%E5%86%A0%E9%9C%96&luicode=10000011&lfid=100103type%3D2%26q%3DiPhone",
186 | "page_title": "#赖冠霖#超级话题",
187 | "content1": "来自中国台湾,现在是韩国限定组合WannaOne成员,队内担当rapper,忙内。",
188 | "content2": "66920人关注",
189 | "type": "topic"
190 | },
191 | "bid": "FFI520Hoj",
192 | "pics": [
193 | {
194 | "pid": "e06a02a8gy1fnqok05snbj20u01hc4b8",
195 | "url": "https://wx4.sinaimg.cn/orj360/e06a02a8gy1fnqok05snbj20u01hc4b8.jpg",
196 | "size": "orj360",
197 | "geo": {
198 | "width": 360,
199 | "height": 640,
200 | "croped": false
201 | },
202 | "large": {
203 | "size": "large",
204 | "url": "https://wx4.sinaimg.cn/large/e06a02a8gy1fnqok05snbj20u01hc4b8.jpg",
205 | "geo": {
206 | "width": "1080",
207 | "height": "1920",
208 | "croped": false
209 | }
210 | }
211 | },
212 | {
213 | "pid": "e06a02a8gy1fnqok0vv4hj20u01hc146",
214 | "url": "https://wx3.sinaimg.cn/orj360/e06a02a8gy1fnqok0vv4hj20u01hc146.jpg",
215 | "size": "orj360",
216 | "geo": {
217 | "width": 360,
218 | "height": 640,
219 | "croped": false
220 | },
221 | "large": {
222 | "size": "large",
223 | "url": "https://wx3.sinaimg.cn/large/e06a02a8gy1fnqok0vv4hj20u01hc146.jpg",
224 | "geo": {
225 | "width": "1080",
226 | "height": "1920",
227 | "croped": false
228 | }
229 | }
230 | },
231 | {
232 | "pid": "e06a02a8gy1fnqok1ra7hj20u01hcdsj",
233 | "url": "https://wx1.sinaimg.cn/orj360/e06a02a8gy1fnqok1ra7hj20u01hcdsj.jpg",
234 | "size": "orj360",
235 | "geo": {
236 | "width": 360,
237 | "height": 640,
238 | "croped": false
239 | },
240 | "large": {
241 | "size": "large",
242 | "url": "https://wx1.sinaimg.cn/large/e06a02a8gy1fnqok1ra7hj20u01hcdsj.jpg",
243 | "geo": {
244 | "width": "1080",
245 | "height": "1920",
246 | "croped": false
247 | }
248 | }
249 | },
250 | {
251 | "pid": "e06a02a8gy1fnqok57silg20i20f8hdv",
252 | "url": "https://wx3.sinaimg.cn/orj360/e06a02a8gy1fnqok57silg20i20f8hdv.gif",
253 | "size": "orj360",
254 | "geo": {
255 | "width": 320,
256 | "height": 270,
257 | "croped": false
258 | },
259 | "large": {
260 | "size": "large",
261 | "url": "https://wx3.sinaimg.cn/large/e06a02a8gy1fnqok57silg20i20f8hdv.gif",
262 | "geo": {
263 | "width": "650",
264 | "height": "548",
265 | "croped": false
266 | }
267 | }
268 | },
269 | {
270 | "pid": "e06a02a8gy1fnqok8yxwgg20dh0cke88",
271 | "url": "https://wx3.sinaimg.cn/orj360/e06a02a8gy1fnqok8yxwgg20dh0cke88.gif",
272 | "size": "orj360",
273 | "geo": {
274 | "width": 289,
275 | "height": 270,
276 | "croped": false
277 | },
278 | "large": {
279 | "size": "large",
280 | "url": "https://wx3.sinaimg.cn/large/e06a02a8gy1fnqok8yxwgg20dh0cke88.gif",
281 | "geo": {
282 | "width": "485",
283 | "height": "452",
284 | "croped": false
285 | }
286 | }
287 | },
288 | {
289 | "pid": "e06a02a8gy1fnqokay0qog20h80c8hdw",
290 | "url": "https://wx3.sinaimg.cn/orj360/e06a02a8gy1fnqokay0qog20h80c8hdw.gif",
291 | "size": "orj360",
292 | "geo": {
293 | "width": 380,
294 | "height": 270,
295 | "croped": false
296 | },
297 | "large": {
298 | "size": "large",
299 | "url": "https://wx3.sinaimg.cn/large/e06a02a8gy1fnqokay0qog20h80c8hdw.gif",
300 | "geo": {
301 | "width": "620",
302 | "height": "440",
303 | "croped": false
304 | }
305 | }
306 | },
307 | {
308 | "pid": "e06a02a8gy1fnqokcpo3pg20in0eye83",
309 | "url": "https://wx2.sinaimg.cn/orj360/e06a02a8gy1fnqokcpo3pg20in0eye83.gif",
310 | "size": "orj360",
311 | "geo": {
312 | "width": 336,
313 | "height": 270,
314 | "croped": false
315 | },
316 | "large": {
317 | "size": "large",
318 | "url": "https://wx2.sinaimg.cn/large/e06a02a8gy1fnqokcpo3pg20in0eye83.gif",
319 | "geo": {
320 | "width": "671",
321 | "height": "538",
322 | "croped": false
323 | }
324 | }
325 | },
326 | {
327 | "pid": "e06a02a8gy1fnqokeo7geg20rs0iihdw",
328 | "url": "https://wx1.sinaimg.cn/orj360/e06a02a8gy1fnqokeo7geg20rs0iihdw.gif",
329 | "size": "orj360",
330 | "geo": {
331 | "width": 405,
332 | "height": 270,
333 | "croped": false
334 | },
335 | "large": {
336 | "size": "large",
337 | "url": "https://wx1.sinaimg.cn/large/e06a02a8gy1fnqokeo7geg20rs0iihdw.gif",
338 | "geo": {
339 | "width": "1000",
340 | "height": "666",
341 | "croped": false
342 | }
343 | }
344 | },
345 | {
346 | "pid": "e06a02a8gy1fnqokf4ocoj20qo0qodi0",
347 | "url": "https://wx2.sinaimg.cn/orj360/e06a02a8gy1fnqokf4ocoj20qo0qodi0.jpg",
348 | "size": "orj360",
349 | "geo": {
350 | "width": 360,
351 | "height": 360,
352 | "croped": false
353 | },
354 | "large": {
355 | "size": "large",
356 | "url": "https://wx2.sinaimg.cn/large/e06a02a8gy1fnqokf4ocoj20qo0qodi0.jpg",
357 | "geo": {
358 | "width": "960",
359 | "height": "960",
360 | "croped": false
361 | }
362 | }
363 | }
364 | ]
365 | },
366 | "scheme": "https://m.weibo.cn/status/FFI520Hoj?mblogid=FFI520Hoj&luicode=10000011&lfid=100103type%3D2%26q%3DiPhone"
367 | },
368 | {
369 | "card_type": 9,
370 | "card_type_name": "微博",
371 | "itemid": "seqid:586777392|type:2|t:|pos:10-0-1|q:iPhone|ext:&mid=4199408176055727&",
372 | "actionlog": {
373 | "act_code": 554,
374 | "ext": "seqid:586777392|type:2|t:|pos:10-0-1|q:iPhone|ext:&mid=4199408176055727&",
375 | "luicode": "",
376 | "uicode": "",
377 | "fid": "100103type=2&q=iPhone"
378 | },
379 | "display_arrow": 0,
380 | "show_type": 1,
381 | "mblog": {
382 | "created_at": "1小时前",
383 | "id": "4199408176055727",
384 | "mid": "4199408176055727",
385 | "idstr": "4199408176055727",
386 | "can_edit": false,
387 | "text": "我們海哥更新了IG,最不上線滴iPhone 8 plus 很迅速地更新了,然而..........把我(敷衍的)誇讚還來!!!![\"[笑cry]\"](\"//h5.sinaimg.cn/m/emoticon/icon/default/d_xiaoku-7430606cb7.png\")
![\"[笑cry]\"](\"//h5.sinaimg.cn/m/emoticon/icon/default/d_xiaoku-7430606cb7.png\")
",
388 | "textLength": 121,
389 | "source": ".☾⋆。˚iPhone 8 Plus",
390 | "favorited": false,
391 | "thumbnail_pic": "http://wx4.sinaimg.cn/thumbnail/bef13172gy1fnqog705wjj20qo1bfn2y.jpg",
392 | "bmiddle_pic": "http://wx4.sinaimg.cn/bmiddle/bef13172gy1fnqog705wjj20qo1bfn2y.jpg",
393 | "original_pic": "http://wx4.sinaimg.cn/large/bef13172gy1fnqog705wjj20qo1bfn2y.jpg",
394 | "is_paid": false,
395 | "mblog_vip_type": 0,
396 | "user": {
397 | "id": 3203477874,
398 | "screen_name": "TinyLight1015",
399 | "profile_image_url": "https://tvax1.sinaimg.cn/crop.0.0.1242.1242.180/bef13172ly8fip3wcd0lzj20yi0yiq4e.jpg",
400 | "profile_url": "https://m.weibo.cn/u/3203477874?uid=3203477874&luicode=10000011&lfid=100103type%3D2%26q%3DiPhone",
401 | "statuses_count": 6671,
402 | "verified": false,
403 | "verified_type": -1,
404 | "close_blue_v": false,
405 | "description": "www.tinylight1015.com 李东海个人站 140425开站 持续招新 谢谢支持٩(●˙▿˙●)۶…⋆ฺ",
406 | "gender": "m",
407 | "mbtype": 12,
408 | "urank": 45,
409 | "mbrank": 6,
410 | "follow_me": false,
411 | "following": false,
412 | "followers_count": 30552,
413 | "follow_count": 43,
414 | "cover_image_phone": "https://tva3.sinaimg.cn/crop.0.0.640.640.640/bef13172jw1f2i4zrrqvqj20yi0ygmxq.jpg",
415 | "avatar_hd": "https://wx1.sinaimg.cn/orj480/bef13172ly8fip3wcd0lzj20yi0yiq4e.jpg",
416 | "like": false,
417 | "like_me": false,
418 | "badge": {
419 | "bind_taobao": 1,
420 | "follow_whitelist_video": 1
421 | }
422 | },
423 | "reposts_count": 4,
424 | "comments_count": 0,
425 | "attitudes_count": 10,
426 | "pending_approval_count": 0,
427 | "isLongText": false,
428 | "visible": {
429 | "type": 0,
430 | "list_id": 0
431 | },
432 | "rid": "1_0_0_618401511749607748",
433 | "more_info_type": 0,
434 | "cardid": "vip_009",
435 | "content_auth": 0,
436 | "status": 0,
437 | "itemid": "seqid:586777392|type:2|t:|pos:10-0-1|q:iPhone|ext:&mid=4199408176055727&",
438 | "bid": "FFI3Lppn1",
439 | "pics": [
440 | {
441 | "pid": "bef13172gy1fnqog705wjj20qo1bfn2y",
442 | "url": "https://wx4.sinaimg.cn/orj360/bef13172gy1fnqog705wjj20qo1bfn2y.jpg",
443 | "size": "orj360",
444 | "geo": {
445 | "width": 360,
446 | "height": 640,
447 | "croped": false
448 | },
449 | "large": {
450 | "size": "large",
451 | "url": "https://wx4.sinaimg.cn/large/bef13172gy1fnqog705wjj20qo1bfn2y.jpg",
452 | "geo": {
453 | "width": "960",
454 | "height": "1707",
455 | "croped": false
456 | }
457 | }
458 | },
459 | {
460 | "pid": "bef13172gy1fnqog7naxhj20qo1a2gpz",
461 | "url": "https://wx4.sinaimg.cn/orj360/bef13172gy1fnqog7naxhj20qo1a2gpz.jpg",
462 | "size": "orj360",
463 | "geo": {
464 | "width": 360,
465 | "height": 621,
466 | "croped": false
467 | },
468 | "large": {
469 | "size": "large",
470 | "url": "https://wx4.sinaimg.cn/large/bef13172gy1fnqog7naxhj20qo1a2gpz.jpg",
471 | "geo": {
472 | "width": "960",
473 | "height": "1658",
474 | "croped": false
475 | }
476 | }
477 | },
478 | {
479 | "pid": "bef13172gy1fnqog8alc6j20qo1a1ae3",
480 | "url": "https://wx1.sinaimg.cn/orj360/bef13172gy1fnqog8alc6j20qo1a1ae3.jpg",
481 | "size": "orj360",
482 | "geo": {
483 | "width": 360,
484 | "height": 621,
485 | "croped": false
486 | },
487 | "large": {
488 | "size": "large",
489 | "url": "https://wx1.sinaimg.cn/large/bef13172gy1fnqog8alc6j20qo1a1ae3.jpg",
490 | "geo": {
491 | "width": "960",
492 | "height": "1657",
493 | "croped": false
494 | }
495 | }
496 | },
497 | {
498 | "pid": "bef13172gy1fnqog6eidpj20qo19tgqk",
499 | "url": "https://wx2.sinaimg.cn/orj360/bef13172gy1fnqog6eidpj20qo19tgqk.jpg",
500 | "size": "orj360",
501 | "geo": {
502 | "width": 360,
503 | "height": 618,
504 | "croped": false
505 | },
506 | "large": {
507 | "size": "large",
508 | "url": "https://wx2.sinaimg.cn/large/bef13172gy1fnqog6eidpj20qo19tgqk.jpg",
509 | "geo": {
510 | "width": "960",
511 | "height": "1649",
512 | "croped": false
513 | }
514 | }
515 | }
516 | ]
517 | },
518 | "scheme": "https://m.weibo.cn/status/FFI3Lppn1?mblogid=FFI3Lppn1&luicode=10000011&lfid=100103type%3D2%26q%3DiPhone"
519 | },
520 | {
521 | "card_type": 9,
522 | "card_type_name": "微博",
523 | "itemid": "seqid:586777392|type:2|t:|pos:10-0-2|q:iPhone|ext:&mid=4199408142456558&",
524 | "actionlog": {
525 | "act_code": 554,
526 | "ext": "seqid:586777392|type:2|t:|pos:10-0-2|q:iPhone|ext:&mid=4199408142456558&",
527 | "luicode": "",
528 | "uicode": "",
529 | "fid": "100103type=2&q=iPhone"
530 | },
531 | "display_arrow": 0,
532 | "show_type": 1,
533 | "mblog": {
534 | "created_at": "1小时前",
535 | "id": "4199408142456558",
536 | "mid": "4199408142456558",
537 | "idstr": "4199408142456558",
538 | "can_edit": false,
539 | "text": "亲爱的🐺妈,
《最爱偶像》投票现在告急![\"[拳头]\"](\"//h5.sinaimg.cn/m/emoticon/icon/others/h_quantou-ba097f8ec2.png\")
![\"[拳头]\"](\"//h5.sinaimg.cn/m/emoticon/icon/others/h_quantou-ba097f8ec2.png\")
这是很重要的奖,三大赏之一,碗只有今年有机会拿,我们只拿一次。
现在@BYB联合打榜组 联合打榜组准备明天集资。希望大家能积极响应。![\"[微风]\"](\"//h5.sinaimg.cn/m/emoticon/icon/others/w_weifeng-7dc062ea5b.png\")
我们很缺人!!!ipad和iPhone很简单,不用vpn就可以投。真的很简单
可 ...全文",
540 | "textLength": 666,
541 | "source": "前置双摄vivo X9",
542 | "favorited": false,
543 | "thumbnail_pic": "http://wx2.sinaimg.cn/thumbnail/e06a02a8gy1fnqogl7vifj20u01hc4b8.jpg",
544 | "bmiddle_pic": "http://wx2.sinaimg.cn/bmiddle/e06a02a8gy1fnqogl7vifj20u01hc4b8.jpg",
545 | "original_pic": "http://wx2.sinaimg.cn/large/e06a02a8gy1fnqogl7vifj20u01hc4b8.jpg",
546 | "is_paid": false,
547 | "mblog_vip_type": 0,
548 | "user": {
549 | "id": 3765043880,
550 | "screen_name": "LHHH_WNW",
551 | "profile_image_url": "https://tvax3.sinaimg.cn/crop.0.0.996.996.180/e06a02a8ly8fim00sr04mj20ro0ro423.jpg",
552 | "profile_url": "https://m.weibo.cn/u/3765043880?uid=3765043880&luicode=10000011&lfid=100103type%3D2%26q%3DiPhone",
553 | "statuses_count": 3933,
554 | "verified": false,
555 | "verified_type": -1,
556 | "close_blue_v": false,
557 | "description": "忘拿碗温拿团饭,嗑cp,碗兄弟情铺。不撕逼,101男孩粉。pg1,薛zq,sj粉勿来。忌各家黑粉酸粉毒唯。xlh",
558 | "gender": "f",
559 | "mbtype": 11,
560 | "urank": 33,
561 | "mbrank": 2,
562 | "follow_me": false,
563 | "following": false,
564 | "followers_count": 280,
565 | "follow_count": 514,
566 | "cover_image_phone": "https://wx2.sinaimg.cn/crop.0.0.640.640.640/e06a02a8gy1fmvc9l55l1j20u00u0tmy.jpg",
567 | "avatar_hd": "https://wx3.sinaimg.cn/orj480/e06a02a8ly8fim00sr04mj20ro0ro423.jpg",
568 | "like": false,
569 | "like_me": false,
570 | "badge": {
571 | "unread_pool": 1,
572 | "unread_pool_ext": 1,
573 | "dzwbqlx_2016": 1,
574 | "suishoupai_2017": 1
575 | }
576 | },
577 | "picStatus": "0:1,1:1,2:1,3:1,4:1,5:1,6:1,7:1,8:1",
578 | "reposts_count": 1,
579 | "comments_count": 1,
580 | "attitudes_count": 3,
581 | "pending_approval_count": 0,
582 | "isLongText": true,
583 | "longText": {
584 | "longTextContent": "亲爱的🐺妈,\n 《最爱偶像》投票现在告急[拳头][拳头][拳头]这是很重要的奖,三大赏之一,碗只有今年有机会拿,我们只拿一次。\n 现在@BYB联合打榜组 联合打榜组准备明天集资。希望大家能积极响应。[微风]\n[围观]我们很缺人!!!ipad和iPhone很简单,不用vpn就可以投。真的很简单[可怜]可以投成员,也可以投团,成员分数算入团分数(也就是狼妈可以投给小狼让小狼分数高一点),最后是团体一起拿奖。碗只有一次机会可以拿!多个人我们就可以少投入一点资金。\n [鲜花][鲜花][鲜花]一直到2月11号,我们每晚都要得第一名才能拿奖,而得第一名需要上亿的心,6块钱可以买1500颗,18可以买5000颗,68可以买20000颗。\n [心]你的每一份支持就是碗2月14得奖的一步阶梯。我们只有这一次机会,很缺人!",
585 | "url_objects": [
586 | {
587 | "url_ori": "#裴珍映#",
588 | "object_id": "1022:1008084670e3e6765a0a1bb30e48f0fc993814",
589 | "object": {
590 | "object_id": "1022:1008084670e3e6765a0a1bb30e48f0fc993814",
591 | "containerid": "1008084670e3e6765a0a1bb30e48f0fc993814",
592 | "object_domain_id": "1022",
593 | "object_type": "topic",
594 | "safe_status": 1,
595 | "show_status": "10",
596 | "act_status": "00",
597 | "last_modified": "Mon Jan 22 14:32:59 CST 2018",
598 | "timestamp": 1516602779950,
599 | "uuid": 4100799369059498,
600 | "activate_status": "0",
601 | "object": {
602 | "summary": "裴珍映(배진영),2000年5月10日生于韩国,B型,金牛座。2017年4月以C9独苗练习生身份参加综艺节目produce101。在节目以名品小脸和清秀的长相被同期生选为颜值担当第二位,由于长相酷似百变小樱男主角人送外号“小狼”。“小狼”用独特的少年感,得到了韩国和中国众多粉丝喜爱。2017年6月16日总决赛排名第十成功出道!韩国男团WANNA·ONE成员。",
603 | "image": {
604 | "url": "http://wx3.sinaimg.cn/thumbnail/006DdL9kly1flqq3u2xukj30dc0dcac2.jpg"
605 | },
606 | "presenter_status": "1",
607 | "object_type": "topic",
608 | "page_type": "6",
609 | "target_url": "http://huati.weibo.com/k/裴珍映",
610 | "mobile": {
611 | "page_id": "1008084670e3e6765a0a1bb30e48f0fc993814",
612 | "card": {
613 | "status": "0"
614 | },
615 | "url": {
616 | "scheme": "sinaweibo://pageinfo?pageid=1008084670e3e6765a0a1bb30e48f0fc993814&extparam=裴珍映",
617 | "name": "裴珍映",
618 | "status": "1"
619 | }
620 | },
621 | "display_name": "裴珍映",
622 | "url": "http://huati.weibo.com/4970066",
623 | "tid": "4970066",
624 | "short_url": "http://t.cn/RSPgd0g",
625 | "super": {
626 | "super_time": "1495708884"
627 | },
628 | "biz": {
629 | "biz_id": "100808",
630 | "containerid": "1008084670e3e6765a0a1bb30e48f0fc993814"
631 | },
632 | "search": [],
633 | "action": [
634 | "topic_follow"
635 | ],
636 | "location": "0-0",
637 | "attribute": "1",
638 | "id": "1022:1008084670e3e6765a0a1bb30e48f0fc993814",
639 | "create_at": "1495708909",
640 | "category": "明星|2"
641 | },
642 | "actions": [
643 | {
644 | "name": "关注",
645 | "pic": "https://n.sinaimg.cn/photo/ab36dac5/20170616/follow_hollow.png",
646 | "type": "follow",
647 | "params": {
648 | "uid": "1022:1008084670e3e6765a0a1bb30e48f0fc993814",
649 | "scheme": "${scheme}",
650 | "type": "page"
651 | }
652 | }
653 | ]
654 | },
655 | "like_count": 35828,
656 | "isActionType": true,
657 | "follower_count": 27270,
658 | "asso_like_count": 0,
659 | "card_info_un_integrity": false,
660 | "super_topic_status_count": 68179,
661 | "super_topic_photo_count": 61350,
662 | "is_follow_object": false
663 | }
664 | ]
665 | },
666 | "visible": {
667 | "type": 0,
668 | "list_id": 0
669 | },
670 | "topic_id": "1022:1008084670e3e6765a0a1bb30e48f0fc993814",
671 | "sync_mblog": true,
672 | "is_imported_topic": false,
673 | "rid": "2_0_0_618401511749607748",
674 | "more_info_type": 0,
675 | "cardid": "star_498",
676 | "content_auth": 0,
677 | "status": 0,
678 | "itemid": "seqid:586777392|type:2|t:|pos:10-0-2|q:iPhone|ext:&mid=4199408142456558&",
679 | "page_info": {
680 | "page_pic": {
681 | "url": "https://wx3.sinaimg.cn/thumbnail/006DdL9kly1flqq3u2xukj30dc0dcac2.jpg"
682 | },
683 | "page_url": "https://m.weibo.cn/p/index?containerid=1008084670e3e6765a0a1bb30e48f0fc993814&extparam=%E8%A3%B4%E7%8F%8D%E6%98%A0&luicode=10000011&lfid=100103type%3D2%26q%3DiPhone",
684 | "page_title": "#裴珍映#超级话题",
685 | "content1": "裴珍映(배진영),2000年5月10日生于韩国,B型,金牛座。2017年4月以C9独苗练习生身份参加综艺节目produce101。在节目以名品小脸和清秀的长相被同期生选为颜值担当第二位,由于长相酷似百变小樱男主角人送外号“小狼”。“小狼”用独特的少年感,得到了韩国和中国众多粉丝喜爱。2017年6月16日总决赛排名第十成功出道!韩国男团WANNA·ONE成员。",
686 | "content2": "27270人关注",
687 | "type": "topic"
688 | },
689 | "bid": "FFI3Iaj3U",
690 | "pics": [
691 | {
692 | "pid": "e06a02a8gy1fnqogl7vifj20u01hc4b8",
693 | "url": "https://wx2.sinaimg.cn/orj360/e06a02a8gy1fnqogl7vifj20u01hc4b8.jpg",
694 | "size": "orj360",
695 | "geo": {
696 | "width": 360,
697 | "height": 640,
698 | "croped": false
699 | },
700 | "large": {
701 | "size": "large",
702 | "url": "https://wx2.sinaimg.cn/large/e06a02a8gy1fnqogl7vifj20u01hc4b8.jpg",
703 | "geo": {
704 | "width": "1080",
705 | "height": "1920",
706 | "croped": false
707 | }
708 | }
709 | },
710 | {
711 | "pid": "e06a02a8gy1fnqogmbq6pj20u01hc146",
712 | "url": "https://wx4.sinaimg.cn/orj360/e06a02a8gy1fnqogmbq6pj20u01hc146.jpg",
713 | "size": "orj360",
714 | "geo": {
715 | "width": 360,
716 | "height": 640,
717 | "croped": false
718 | },
719 | "large": {
720 | "size": "large",
721 | "url": "https://wx4.sinaimg.cn/large/e06a02a8gy1fnqogmbq6pj20u01hc146.jpg",
722 | "geo": {
723 | "width": "1080",
724 | "height": "1920",
725 | "croped": false
726 | }
727 | }
728 | },
729 | {
730 | "pid": "e06a02a8gy1fnqogn3wbxj20u01hcdsj",
731 | "url": "https://wx3.sinaimg.cn/orj360/e06a02a8gy1fnqogn3wbxj20u01hcdsj.jpg",
732 | "size": "orj360",
733 | "geo": {
734 | "width": 360,
735 | "height": 640,
736 | "croped": false
737 | },
738 | "large": {
739 | "size": "large",
740 | "url": "https://wx3.sinaimg.cn/large/e06a02a8gy1fnqogn3wbxj20u01hcdsj.jpg",
741 | "geo": {
742 | "width": "1080",
743 | "height": "1920",
744 | "croped": false
745 | }
746 | }
747 | },
748 | {
749 | "pid": "e06a02a8gy1fnqogpvp7sg20go0gob25",
750 | "url": "https://wx2.sinaimg.cn/orj360/e06a02a8gy1fnqogpvp7sg20go0gob25.gif",
751 | "size": "orj360",
752 | "geo": {
753 | "width": 360,
754 | "height": 360,
755 | "croped": false
756 | },
757 | "large": {
758 | "size": "large",
759 | "url": "https://wx2.sinaimg.cn/large/e06a02a8gy1fnqogpvp7sg20go0gob25.gif",
760 | "geo": {
761 | "width": "600",
762 | "height": "600",
763 | "croped": false
764 | }
765 | }
766 | },
767 | {
768 | "pid": "e06a02a8gy1fnqogs4e3rg20k00heu10",
769 | "url": "https://wx3.sinaimg.cn/orj360/e06a02a8gy1fnqogs4e3rg20k00heu10.gif",
770 | "size": "orj360",
771 | "geo": {
772 | "width": 310,
773 | "height": 270,
774 | "croped": false
775 | },
776 | "large": {
777 | "size": "large",
778 | "url": "https://wx3.sinaimg.cn/large/e06a02a8gy1fnqogs4e3rg20k00heu10.gif",
779 | "geo": {
780 | "width": "720",
781 | "height": "626",
782 | "croped": false
783 | }
784 | }
785 | },
786 | {
787 | "pid": "e06a02a8gy1fnqogvjgczg20i50cdu10",
788 | "url": "https://wx4.sinaimg.cn/orj360/e06a02a8gy1fnqogvjgczg20i50cdu10.gif",
789 | "size": "orj360",
790 | "geo": {
791 | "width": 396,
792 | "height": 270,
793 | "croped": false
794 | },
795 | "large": {
796 | "size": "large",
797 | "url": "https://wx4.sinaimg.cn/large/e06a02a8gy1fnqogvjgczg20i50cdu10.gif",
798 | "geo": {
799 | "width": "653",
800 | "height": "445",
801 | "croped": false
802 | }
803 | }
804 | },
805 | {
806 | "pid": "e06a02a8gy1fnqogyr2dwg20u80ng1l4",
807 | "url": "https://wx1.sinaimg.cn/orj360/e06a02a8gy1fnqogyr2dwg20u80ng1l4.gif",
808 | "size": "orj360",
809 | "geo": {
810 | "width": 348,
811 | "height": 270,
812 | "croped": false
813 | },
814 | "large": {
815 | "size": "large",
816 | "url": "https://wx1.sinaimg.cn/large/e06a02a8gy1fnqogyr2dwg20u80ng1l4.gif",
817 | "geo": {
818 | "width": "1088",
819 | "height": "844",
820 | "croped": false
821 | }
822 | }
823 | },
824 | {
825 | "pid": "e06a02a8gy1fnqoh0rv8fg20dw0aab2c",
826 | "url": "https://wx3.sinaimg.cn/orj360/e06a02a8gy1fnqoh0rv8fg20dw0aab2c.gif",
827 | "size": "orj360",
828 | "geo": {
829 | "width": 364,
830 | "height": 270,
831 | "croped": false
832 | },
833 | "large": {
834 | "size": "large",
835 | "url": "https://wx3.sinaimg.cn/large/e06a02a8gy1fnqoh0rv8fg20dw0aab2c.gif",
836 | "geo": {
837 | "width": "500",
838 | "height": "370",
839 | "croped": false
840 | }
841 | }
842 | },
843 | {
844 | "pid": "e06a02a8gy1fnqoh1r6cqj21gc1gc18z",
845 | "url": "https://wx1.sinaimg.cn/orj360/e06a02a8gy1fnqoh1r6cqj21gc1gc18z.jpg",
846 | "size": "orj360",
847 | "geo": {
848 | "width": 360,
849 | "height": 360,
850 | "croped": false
851 | },
852 | "large": {
853 | "size": "large",
854 | "url": "https://wx1.sinaimg.cn/large/e06a02a8gy1fnqoh1r6cqj21gc1gc18z.jpg",
855 | "geo": {
856 | "width": "1884",
857 | "height": "1884",
858 | "croped": false
859 | }
860 | }
861 | }
862 | ]
863 | },
864 | "scheme": "https://m.weibo.cn/status/FFI3Iaj3U?mblogid=FFI3Iaj3U&luicode=10000011&lfid=100103type%3D2%26q%3DiPhone"
865 | },
866 | {
867 | "card_type": 9,
868 | "card_type_name": "微博",
869 | "itemid": "seqid:586777392|type:2|t:|pos:10-0-3|q:iPhone|ext:&mid=4199408138743593&",
870 | "actionlog": {
871 | "act_code": 554,
872 | "ext": "seqid:586777392|type:2|t:|pos:10-0-3|q:iPhone|ext:&mid=4199408138743593&",
873 | "luicode": "",
874 | "uicode": "",
875 | "fid": "100103type=2&q=iPhone"
876 | },
877 | "display_arrow": 0,
878 | "show_type": 1,
879 | "mblog": {
880 | "created_at": "1小时前",
881 | "id": "4199408138743593",
882 | "mid": "4199408138743593",
883 | "idstr": "4199408138743593",
884 | "can_edit": false,
885 | "text": "据苹果公司介绍,目前有65%的iPhone和iPad正在使用iOS 11,而28%仍然使用iOS 10。只有7%的设备仍在使用早期版本的iOS。这些数字是在1月18日由App Store测量的,所以信息是最新的。相比之下,苹果在一年前就宣布,76%的iPhone和iPad正在运行当时最新版本的iOS 10。看来安卓在系统生态碎片化处理上还 ...全文",
886 | "textLength": 289,
887 | "source": "微博 weibo.com",
888 | "favorited": false,
889 | "thumbnail_pic": "http://wx3.sinaimg.cn/thumbnail/006EGvhVgy1fnqoh1ts0qj30iw0axjro.jpg",
890 | "bmiddle_pic": "http://wx3.sinaimg.cn/bmiddle/006EGvhVgy1fnqoh1ts0qj30iw0axjro.jpg",
891 | "original_pic": "http://wx3.sinaimg.cn/large/006EGvhVgy1fnqoh1ts0qj30iw0axjro.jpg",
892 | "is_paid": false,
893 | "mblog_vip_type": 0,
894 | "user": {
895 | "id": 6097980483,
896 | "screen_name": "森大娘T只想要你",
897 | "profile_image_url": "https://tva1.sinaimg.cn/crop.0.0.200.200.180/006EGvhVjw1fba1fa7dx2j305k05kglr.jpg",
898 | "profile_url": "https://m.weibo.cn/u/6097980483?uid=6097980483&luicode=10000011&lfid=100103type%3D2%26q%3DiPhone",
899 | "statuses_count": 73,
900 | "verified": false,
901 | "verified_type": -1,
902 | "close_blue_v": false,
903 | "description": "说不出的话叫心事 留不住的人叫故事",
904 | "gender": "f",
905 | "mbtype": 0,
906 | "urank": 8,
907 | "mbrank": 0,
908 | "follow_me": false,
909 | "following": false,
910 | "followers_count": 162,
911 | "follow_count": 1082,
912 | "cover_image_phone": "https://tva1.sinaimg.cn/crop.0.0.640.640.640/549d0121tw1egm1kjly3jj20hs0hsq4f.jpg",
913 | "avatar_hd": "https://ww1.sinaimg.cn/orj480/006EGvhVjw1fba1fa7dx2j305k05kglr.jpg",
914 | "like": false,
915 | "like_me": false
916 | },
917 | "reposts_count": 0,
918 | "comments_count": 0,
919 | "attitudes_count": 0,
920 | "pending_approval_count": 0,
921 | "isLongText": true,
922 | "longText": {
923 | "longTextContent": "据苹果公司介绍,目前有65%的iPhone和iPad正在使用iOS 11,而28%仍然使用iOS 10。只有7%的设备仍在使用早期版本的iOS。这些数字是在1月18日由App Store测量的,所以信息是最新的。相比之下,苹果在一年前就宣布,76%的iPhone和iPad正在运行当时最新版本的iOS 10。看来安卓在系统生态碎片化处理上还 ",
924 | "url_objects": []
925 | },
926 | "visible": {
927 | "type": 0,
928 | "list_id": 0
929 | },
930 | "rid": "3_0_0_618401511749607748",
931 | "more_info_type": 0,
932 | "content_auth": 0,
933 | "status": 0,
934 | "itemid": "seqid:586777392|type:2|t:|pos:10-0-3|q:iPhone|ext:&mid=4199408138743593&",
935 | "bid": "FFI3HAGBH",
936 | "pics": [
937 | {
938 | "pid": "006EGvhVgy1fnqoh1ts0qj30iw0axjro",
939 | "url": "https://wx3.sinaimg.cn/orj360/006EGvhVgy1fnqoh1ts0qj30iw0axjro.jpg",
940 | "size": "orj360",
941 | "geo": {
942 | "width": 467,
943 | "height": 270,
944 | "croped": false
945 | },
946 | "large": {
947 | "size": "large",
948 | "url": "https://wx3.sinaimg.cn/large/006EGvhVgy1fnqoh1ts0qj30iw0axjro.jpg",
949 | "geo": {
950 | "width": "680",
951 | "height": "393",
952 | "croped": false
953 | }
954 | }
955 | },
956 | {
957 | "pid": "006EGvhVgy1fnqoh226vuj30a008bq2v",
958 | "url": "https://wx2.sinaimg.cn/orj360/006EGvhVgy1fnqoh226vuj30a008bq2v.jpg",
959 | "size": "orj360",
960 | "geo": {
961 | "width": 325,
962 | "height": 270,
963 | "croped": false
964 | },
965 | "large": {
966 | "size": "large",
967 | "url": "https://wx2.sinaimg.cn/large/006EGvhVgy1fnqoh226vuj30a008bq2v.jpg",
968 | "geo": {
969 | "width": "360",
970 | "height": "299",
971 | "croped": false
972 | }
973 | }
974 | },
975 | {
976 | "pid": "006EGvhVgy1fnqoh2jjcdj30j609u74q",
977 | "url": "https://wx4.sinaimg.cn/orj360/006EGvhVgy1fnqoh2jjcdj30j609u74q.jpg",
978 | "size": "orj360",
979 | "geo": {
980 | "width": 526,
981 | "height": 270,
982 | "croped": false
983 | },
984 | "large": {
985 | "size": "large",
986 | "url": "https://wx4.sinaimg.cn/large/006EGvhVgy1fnqoh2jjcdj30j609u74q.jpg",
987 | "geo": {
988 | "width": "690",
989 | "height": "354",
990 | "croped": false
991 | }
992 | }
993 | }
994 | ]
995 | },
996 | "scheme": "https://m.weibo.cn/status/FFI3HAGBH?mblogid=FFI3HAGBH&luicode=10000011&lfid=100103type%3D2%26q%3DiPhone"
997 | },
998 | {
999 | "card_type": 9,
1000 | "card_type_name": "微博",
1001 | "itemid": "seqid:586777392|type:2|t:|pos:10-0-4|q:iPhone|ext:&mid=4199407937220046&",
1002 | "actionlog": {
1003 | "act_code": 554,
1004 | "ext": "seqid:586777392|type:2|t:|pos:10-0-4|q:iPhone|ext:&mid=4199407937220046&",
1005 | "luicode": "",
1006 | "uicode": "",
1007 | "fid": "100103type=2&q=iPhone"
1008 | },
1009 | "display_arrow": 0,
1010 | "show_type": 1,
1011 | "mblog": {
1012 | "created_at": "1小时前",
1013 | "id": "4199407937220046",
1014 | "mid": "4199407937220046",
1015 | "idstr": "4199407937220046",
1016 | "can_edit": false,
1017 | "text": "iphone se 2018
LANGER探科技的秒拍视频 ",
1018 | "textLength": 34,
1019 | "source": "秒拍网页版",
1020 | "favorited": false,
1021 | "is_paid": false,
1022 | "mblog_vip_type": 0,
1023 | "user": {
1024 | "id": 5844048792,
1025 | "screen_name": "LANGER探科技",
1026 | "profile_image_url": "https://tvax3.sinaimg.cn/crop.0.0.639.639.180/006nv23uly8fmk5alau2fj30hs0hr74x.jpg",
1027 | "profile_url": "https://m.weibo.cn/u/5844048792?uid=5844048792&luicode=10000011&lfid=100103type%3D2%26q%3DiPhone",
1028 | "statuses_count": 78,
1029 | "verified": false,
1030 | "verified_type": -1,
1031 | "close_blue_v": false,
1032 | "description": "爱上科技 发现科技 以科技眼光聊科技",
1033 | "gender": "m",
1034 | "mbtype": 0,
1035 | "urank": 9,
1036 | "mbrank": 0,
1037 | "follow_me": false,
1038 | "following": false,
1039 | "followers_count": 63,
1040 | "follow_count": 224,
1041 | "cover_image_phone": "https://tva2.sinaimg.cn/crop.0.0.640.640.640/a1d3feabjw1ecatccqmkbj20hs0hsmzb.jpg",
1042 | "avatar_hd": "https://wx3.sinaimg.cn/orj480/006nv23uly8fmk5alau2fj30hs0hr74x.jpg",
1043 | "like": false,
1044 | "like_me": false
1045 | },
1046 | "reposts_count": 0,
1047 | "comments_count": 0,
1048 | "attitudes_count": 0,
1049 | "pending_approval_count": 0,
1050 | "isLongText": false,
1051 | "visible": {
1052 | "type": 0,
1053 | "list_id": 0
1054 | },
1055 | "rid": "4_0_0_618401511749607748",
1056 | "more_info_type": 0,
1057 | "content_auth": 0,
1058 | "status": 0,
1059 | "itemid": "seqid:586777392|type:2|t:|pos:10-0-4|q:iPhone|ext:&mid=4199407937220046&",
1060 | "obj_ext": "25次观看",
1061 | "page_info": {
1062 | "page_pic": {
1063 | "url": "https://wx3.sinaimg.cn/large/006nv23uly1fnqofwup2wj30ru0fojs0.jpg"
1064 | },
1065 | "page_url": "https://m.weibo.cn/p/index?containerid=230444ad4e54b5333cc5075629365df46ea086&url_type=39&object_type=video&pos=2&luicode=10000011&lfid=100103type%3D2%26q%3DiPhone",
1066 | "page_title": "LANGER探科技的秒拍视频",
1067 | "content1": "LANGER探科技的秒拍视频",
1068 | "content2": "iphone se 2018",
1069 | "type": "video",
1070 | "media_info": {
1071 | "stream_url": "https://f.us.sinaimg.cn/003QJx6hlx07hBs92K88010402001xZn0k01.mp4?label=mp4_ld&template=28&Expires=1516708772&ssig=OH800mYvxM&KID=unistore,video"
1072 | }
1073 | },
1074 | "bid": "FFI3nuigm"
1075 | },
1076 | "scheme": "https://m.weibo.cn/status/FFI3nuigm?mblogid=FFI3nuigm&luicode=10000011&lfid=100103type%3D2%26q%3DiPhone"
1077 | },
1078 | {
1079 | "card_type": 9,
1080 | "card_type_name": "微博",
1081 | "itemid": "seqid:586777392|type:2|t:|pos:10-0-5|q:iPhone|ext:&mid=4199407694111580&",
1082 | "actionlog": {
1083 | "act_code": 554,
1084 | "ext": "seqid:586777392|type:2|t:|pos:10-0-5|q:iPhone|ext:&mid=4199407694111580&",
1085 | "luicode": "",
1086 | "uicode": "",
1087 | "fid": "100103type=2&q=iPhone"
1088 | },
1089 | "display_arrow": 0,
1090 | "show_type": 1,
1091 | "mblog": {
1092 | "created_at": "1小时前",
1093 | "id": "4199407694111580",
1094 | "mid": "4199407694111580",
1095 | "idstr": "4199407694111580",
1096 | "can_edit": false,
1097 | "text": "澳大利亚🇦🇺公路上!两只考拉🐨打架、相扑、摔跤🤼♀️德赫勒@爱吃千层面的考拉君 @魔法专精金乘龙_少年無端iphone6 @心洋H
epee-A的秒拍视频 ",
1098 | "textLength": 146,
1099 | "source": "iPhone客户端",
1100 | "favorited": false,
1101 | "is_paid": false,
1102 | "mblog_vip_type": 0,
1103 | "user": {
1104 | "id": 3213815490,
1105 | "screen_name": "epee-A",
1106 | "profile_image_url": "https://tvax3.sinaimg.cn/crop.0.0.642.642.180/bf8eeec2ly8fdy1e4n93xj20hu0hugmd.jpg",
1107 | "profile_url": "https://m.weibo.cn/u/3213815490?uid=3213815490&luicode=10000011&lfid=100103type%3D2%26q%3DiPhone",
1108 | "statuses_count": 2778,
1109 | "verified": false,
1110 | "verified_type": -1,
1111 | "close_blue_v": false,
1112 | "description": "Who dares wins!超级军警部队发烧友、军警部队历史发烧友!épée 是法语-利剑的意思!不奢求fans!不要随意关注!fans要经我审核。只交往真诚军迷!",
1113 | "gender": "m",
1114 | "mbtype": 0,
1115 | "urank": 9,
1116 | "mbrank": 0,
1117 | "follow_me": false,
1118 | "following": false,
1119 | "followers_count": 234,
1120 | "follow_count": 113,
1121 | "cover_image_phone": "https://tva1.sinaimg.cn/crop.0.0.640.640.640/549d0121tw1egm1kjly3jj20hs0hsq4f.jpg",
1122 | "avatar_hd": "https://wx3.sinaimg.cn/orj480/bf8eeec2ly8fdy1e4n93xj20hu0hugmd.jpg",
1123 | "like": false,
1124 | "like_me": false,
1125 | "badge": {
1126 | "unread_pool": 1,
1127 | "unread_pool_ext": 1,
1128 | "dzwbqlx_2016": 1,
1129 | "suishoupai_2017": 1
1130 | }
1131 | },
1132 | "reposts_count": 0,
1133 | "comments_count": 1,
1134 | "attitudes_count": 1,
1135 | "pending_approval_count": 0,
1136 | "isLongText": false,
1137 | "visible": {
1138 | "type": 0,
1139 | "list_id": 0
1140 | },
1141 | "rid": "5_0_0_618401511749607748",
1142 | "more_info_type": 0,
1143 | "content_auth": 0,
1144 | "status": 0,
1145 | "itemid": "seqid:586777392|type:2|t:|pos:10-0-5|q:iPhone|ext:&mid=4199407694111580&",
1146 | "obj_ext": "33次观看",
1147 | "page_info": {
1148 | "page_pic": {
1149 | "url": "https://wx3.sinaimg.cn/orj480/bf8eeec2ly1fnqof7z5t0j20nq0dcq3n.jpg"
1150 | },
1151 | "page_url": "https://m.weibo.cn/p/index?containerid=2304449f6eae333113fbfa5b044ab70f0d18b4&url_type=39&object_type=video&pos=2&luicode=10000011&lfid=100103type%3D2%26q%3DiPhone",
1152 | "page_title": "epee-A的秒拍视频",
1153 | "content1": "epee-A的秒拍视频",
1154 | "content2": "澳大利亚🇦🇺公路上!两只考拉🐨打架、相扑、摔跤🤼♀️德赫勒@爱吃千层面的考拉君 @魔法专精金乘龙_少年無端iphone6 @心洋H",
1155 | "type": "video",
1156 | "media_info": {
1157 | "stream_url": "https://f.us.sinaimg.cn/001mBPnJlx07hBs5BAOY010402004tlL0k01.mp4?label=mp4_ld&template=28&Expires=1516708772&ssig=KkCeglRj54&KID=unistore,video"
1158 | }
1159 | },
1160 | "bid": "FFI2ZhfBO"
1161 | },
1162 | "scheme": "https://m.weibo.cn/status/FFI2ZhfBO?mblogid=FFI2ZhfBO&luicode=10000011&lfid=100103type%3D2%26q%3DiPhone"
1163 | },
1164 | {
1165 | "card_type": 9,
1166 | "card_type_name": "微博",
1167 | "itemid": "seqid:586777392|type:2|t:|pos:10-0-6|q:iPhone|ext:&mid=4199407433459175&",
1168 | "actionlog": {
1169 | "act_code": 554,
1170 | "ext": "seqid:586777392|type:2|t:|pos:10-0-6|q:iPhone|ext:&mid=4199407433459175&",
1171 | "luicode": "",
1172 | "uicode": "",
1173 | "fid": "100103type=2&q=iPhone"
1174 | },
1175 | "display_arrow": 0,
1176 | "show_type": 1,
1177 | "mblog": {
1178 | "created_at": "1小时前",
1179 | "id": "4199407433459175",
1180 | "mid": "4199407433459175",
1181 | "idstr": "4199407433459175",
1182 | "can_edit": false,
1183 | "text": "张近东,99元人民币换iPhone电池,赚不了几个钱,换iPhone电池的人一定会挤爆门店,谁出的馊主意? ",
1184 | "textLength": 92,
1185 | "source": "柔光自拍vivo X7",
1186 | "favorited": false,
1187 | "thumbnail_pic": "http://wx2.sinaimg.cn/thumbnail/006f0TFdgy1fnqoaeelirj30qo1bedqh.jpg",
1188 | "bmiddle_pic": "http://wx2.sinaimg.cn/bmiddle/006f0TFdgy1fnqoaeelirj30qo1bedqh.jpg",
1189 | "original_pic": "http://wx2.sinaimg.cn/large/006f0TFdgy1fnqoaeelirj30qo1bedqh.jpg",
1190 | "is_paid": false,
1191 | "mblog_vip_type": 0,
1192 | "user": {
1193 | "id": 5718656007,
1194 | "screen_name": "在浅川香樟树下的胜哥哥",
1195 | "profile_image_url": "https://tvax1.sinaimg.cn/crop.0.0.996.996.180/006f0TFdly8fmr62fzrppj30ro0rotbd.jpg",
1196 | "profile_url": "https://m.weibo.cn/u/5718656007?uid=5718656007&luicode=10000011&lfid=100103type%3D2%26q%3DiPhone",
1197 | "statuses_count": 19202,
1198 | "verified": false,
1199 | "verified_type": -1,
1200 | "close_blue_v": false,
1201 | "description": "联系微信:Wenaosheng135",
1202 | "gender": "m",
1203 | "mbtype": 0,
1204 | "urank": 9,
1205 | "mbrank": 0,
1206 | "follow_me": false,
1207 | "following": false,
1208 | "followers_count": 597,
1209 | "follow_count": 342,
1210 | "cover_image_phone": "https://tva1.sinaimg.cn/crop.0.0.640.640.640/9d44112bjw1f1xl1c10tuj20hs0hs0tw.jpg",
1211 | "avatar_hd": "https://wx1.sinaimg.cn/orj480/006f0TFdly8fmr62fzrppj30ro0rotbd.jpg",
1212 | "like": false,
1213 | "like_me": false,
1214 | "badge": {
1215 | "bind_taobao": 1,
1216 | "unread_pool": 1,
1217 | "vip_activity2": 1,
1218 | "unread_pool_ext": 1,
1219 | "dzwbqlx_2016": 1
1220 | }
1221 | },
1222 | "reposts_count": 1,
1223 | "comments_count": 0,
1224 | "attitudes_count": 0,
1225 | "pending_approval_count": 0,
1226 | "isLongText": false,
1227 | "visible": {
1228 | "type": 0,
1229 | "list_id": 0
1230 | },
1231 | "rid": "6_0_0_618401511749607748",
1232 | "more_info_type": 0,
1233 | "content_auth": 0,
1234 | "status": 0,
1235 | "itemid": "seqid:586777392|type:2|t:|pos:10-0-6|q:iPhone|ext:&mid=4199407433459175&",
1236 | "bid": "FFI2zevT9",
1237 | "pics": [
1238 | {
1239 | "pid": "006f0TFdgy1fnqoaeelirj30qo1bedqh",
1240 | "url": "https://wx2.sinaimg.cn/orj360/006f0TFdgy1fnqoaeelirj30qo1bedqh.jpg",
1241 | "size": "orj360",
1242 | "geo": {
1243 | "width": 360,
1244 | "height": 639,
1245 | "croped": false
1246 | },
1247 | "large": {
1248 | "size": "large",
1249 | "url": "https://wx2.sinaimg.cn/large/006f0TFdgy1fnqoaeelirj30qo1bedqh.jpg",
1250 | "geo": {
1251 | "width": "960",
1252 | "height": "1706",
1253 | "croped": false
1254 | }
1255 | }
1256 | }
1257 | ]
1258 | },
1259 | "scheme": "https://m.weibo.cn/status/FFI2zevT9?mblogid=FFI2zevT9&luicode=10000011&lfid=100103type%3D2%26q%3DiPhone"
1260 | },
1261 | {
1262 | "card_type": 9,
1263 | "card_type_name": "微博",
1264 | "itemid": "seqid:586777392|type:2|t:|pos:10-0-7|q:iPhone|ext:&mid=4199406821891178&",
1265 | "actionlog": {
1266 | "act_code": 554,
1267 | "ext": "seqid:586777392|type:2|t:|pos:10-0-7|q:iPhone|ext:&mid=4199406821891178&",
1268 | "luicode": "",
1269 | "uicode": "",
1270 | "fid": "100103type=2&q=iPhone"
1271 | },
1272 | "display_arrow": 0,
1273 | "show_type": 1,
1274 | "mblog": {
1275 | "created_at": "1小时前",
1276 | "id": "4199406821891178",
1277 | "mid": "4199406821891178",
1278 | "idstr": "4199406821891178",
1279 | "can_edit": false,
1280 | "text": "女孩生日那天,男孩蒙住她的眼睛说:“宝贝跟我来。”辗转半小时后,男孩说:“睁开眼吧。”女孩看着周围,满怀期待地问:“然后呢?”男孩没有回答,拿出一部iphone 6递给女孩。女孩激动地说:“爱死你了,这个礼物好棒耶! ”“给你的父母打个电话”,男孩冷冷地说:“就说你在我手上。” ",
1281 | "textLength": 269,
1282 | "source": "微博 weibo.com",
1283 | "favorited": false,
1284 | "thumbnail_pic": "http://wx3.sinaimg.cn/thumbnail/006UXqeHgy1fnqobmr3ogj305s05nt9l.jpg",
1285 | "bmiddle_pic": "http://wx3.sinaimg.cn/bmiddle/006UXqeHgy1fnqobmr3ogj305s05nt9l.jpg",
1286 | "original_pic": "http://wx3.sinaimg.cn/large/006UXqeHgy1fnqobmr3ogj305s05nt9l.jpg",
1287 | "is_paid": false,
1288 | "mblog_vip_type": 0,
1289 | "user": {
1290 | "id": 6338434015,
1291 | "screen_name": "啪拉Antonia",
1292 | "profile_image_url": "https://tvax1.sinaimg.cn/crop.0.0.200.200.180/006UXqeHly8fifwofj8s8j305k05kjrb.jpg",
1293 | "profile_url": "https://m.weibo.cn/u/6338434015?uid=6338434015&luicode=10000011&lfid=100103type%3D2%26q%3DiPhone",
1294 | "statuses_count": 372,
1295 | "verified": false,
1296 | "verified_type": -1,
1297 | "close_blue_v": false,
1298 | "description": "",
1299 | "gender": "m",
1300 | "mbtype": 0,
1301 | "urank": 12,
1302 | "mbrank": 0,
1303 | "follow_me": false,
1304 | "following": false,
1305 | "followers_count": 370,
1306 | "follow_count": 472,
1307 | "cover_image_phone": "https://tva1.sinaimg.cn/crop.0.0.640.640.640/549d0121tw1egm1kjly3jj20hs0hsq4f.jpg",
1308 | "avatar_hd": "https://wx1.sinaimg.cn/orj480/006UXqeHly8fifwofj8s8j305k05kjrb.jpg",
1309 | "like": false,
1310 | "like_me": false
1311 | },
1312 | "reposts_count": 0,
1313 | "comments_count": 0,
1314 | "attitudes_count": 0,
1315 | "pending_approval_count": 0,
1316 | "isLongText": false,
1317 | "visible": {
1318 | "type": 0,
1319 | "list_id": 0
1320 | },
1321 | "rid": "7_0_0_618401511749607748",
1322 | "more_info_type": 0,
1323 | "content_auth": 0,
1324 | "status": 0,
1325 | "itemid": "seqid:586777392|type:2|t:|pos:10-0-7|q:iPhone|ext:&mid=4199406821891178&",
1326 | "bid": "FFI1A7VYS",
1327 | "pics": [
1328 | {
1329 | "pid": "006UXqeHgy1fnqobmr3ogj305s05nt9l",
1330 | "url": "https://wx3.sinaimg.cn/orj360/006UXqeHgy1fnqobmr3ogj305s05nt9l.jpg",
1331 | "size": "orj360",
1332 | "geo": {
1333 | "width": "208",
1334 | "height": "203",
1335 | "croped": false
1336 | },
1337 | "large": {
1338 | "size": "large",
1339 | "url": "https://wx3.sinaimg.cn/large/006UXqeHgy1fnqobmr3ogj305s05nt9l.jpg",
1340 | "geo": {
1341 | "width": "208",
1342 | "height": "203",
1343 | "croped": false
1344 | }
1345 | }
1346 | }
1347 | ]
1348 | },
1349 | "scheme": "https://m.weibo.cn/status/FFI1A7VYS?mblogid=FFI1A7VYS&luicode=10000011&lfid=100103type%3D2%26q%3DiPhone"
1350 | },
1351 | {
1352 | "card_type": 9,
1353 | "card_type_name": "微博",
1354 | "itemid": "seqid:586777392|type:2|t:|pos:10-0-8|q:iPhone|ext:&mid=4199406427298228&",
1355 | "actionlog": {
1356 | "act_code": 554,
1357 | "ext": "seqid:586777392|type:2|t:|pos:10-0-8|q:iPhone|ext:&mid=4199406427298228&",
1358 | "luicode": "",
1359 | "uicode": "",
1360 | "fid": "100103type=2&q=iPhone"
1361 | },
1362 | "display_arrow": 0,
1363 | "show_type": 1,
1364 | "mblog": {
1365 | "created_at": "1小时前",
1366 | "id": "4199406427298228",
1367 | "mid": "4199406427298228",
1368 | "idstr": "4199406427298228",
1369 | "can_edit": false,
1370 | "text": "谁有好有的VPN推荐
iPhone可以用
厦门·新圩镇 ",
1371 | "textLength": 55,
1372 | "source": "iPhone客户端",
1373 | "favorited": false,
1374 | "is_paid": false,
1375 | "mblog_vip_type": 0,
1376 | "user": {
1377 | "id": 5516871655,
1378 | "screen_name": "佳敏a-",
1379 | "profile_image_url": "https://tvax1.sinaimg.cn/crop.0.0.996.996.180/0061mekTly8flg4ztrfywj30ro0rowfu.jpg",
1380 | "profile_url": "https://m.weibo.cn/u/5516871655?uid=5516871655&luicode=10000011&lfid=100103type%3D2%26q%3DiPhone",
1381 | "statuses_count": 225,
1382 | "verified": false,
1383 | "verified_type": -1,
1384 | "close_blue_v": false,
1385 | "description": "vx:qinhuida1998x",
1386 | "gender": "f",
1387 | "mbtype": 2,
1388 | "urank": 9,
1389 | "mbrank": 1,
1390 | "follow_me": false,
1391 | "following": false,
1392 | "followers_count": 173,
1393 | "follow_count": 344,
1394 | "cover_image_phone": "https://tva1.sinaimg.cn/crop.0.0.640.640.640/549d0121tw1egm1kjly3jj20hs0hsq4f.jpg",
1395 | "avatar_hd": "https://wx1.sinaimg.cn/orj480/0061mekTly8flg4ztrfywj30ro0rowfu.jpg",
1396 | "like": false,
1397 | "like_me": false,
1398 | "badge": {
1399 | "bind_taobao": 1,
1400 | "unread_pool": 1,
1401 | "vip_activity2": 1,
1402 | "unread_pool_ext": 1,
1403 | "super_star_2017": 1,
1404 | "wbzy_2017": 1
1405 | }
1406 | },
1407 | "reposts_count": 0,
1408 | "comments_count": 15,
1409 | "attitudes_count": 0,
1410 | "pending_approval_count": 0,
1411 | "isLongText": false,
1412 | "visible": {
1413 | "type": 0,
1414 | "list_id": 0
1415 | },
1416 | "rid": "8_0_0_618401511749607748",
1417 | "more_info_type": 0,
1418 | "content_auth": 0,
1419 | "status": 0,
1420 | "itemid": "seqid:586777392|type:2|t:|pos:10-0-8|q:iPhone|ext:&mid=4199406427298228&",
1421 | "page_info": {
1422 | "page_pic": {
1423 | "url": "https://wx4.sinaimg.cn/thumb180/aaf2273agy1fjkflmf4a3j20qo0zk7ah.jpg"
1424 | },
1425 | "page_url": "https://m.weibo.cn/p/index?containerid=1001018008635021305000000&title=%2525E5%252595%252586%2525E5%25259C%252588&luicode=10000011&lfid=100103type%3D2%26q%3DiPhone",
1426 | "page_title": "厦门·新圩镇",
1427 | "content1": "",
1428 | "content2": "",
1429 | "type": "webpage"
1430 | },
1431 | "bid": "FFI0WuCBm"
1432 | },
1433 | "scheme": "https://m.weibo.cn/status/FFI0WuCBm?mblogid=FFI0WuCBm&luicode=10000011&lfid=100103type%3D2%26q%3DiPhone"
1434 | },
1435 | {
1436 | "card_type": 9,
1437 | "card_type_name": "微博",
1438 | "itemid": "seqid:586777392|type:2|t:|pos:10-0-9|q:iPhone|ext:&mid=4199406368313332&",
1439 | "actionlog": {
1440 | "act_code": 554,
1441 | "ext": "seqid:586777392|type:2|t:|pos:10-0-9|q:iPhone|ext:&mid=4199406368313332&",
1442 | "luicode": "",
1443 | "uicode": "",
1444 | "fid": "100103type=2&q=iPhone"
1445 | },
1446 | "display_arrow": 0,
1447 | "show_type": 1,
1448 | "mblog": {
1449 | "created_at": "1小时前",
1450 | "id": "4199406368313332",
1451 | "mid": "4199406368313332",
1452 | "idstr": "4199406368313332",
1453 | "can_edit": false,
1454 | "text": "【墙内花开墙外香 输入法小巨人触宝的“全球化路径”】触宝的诞生与iPhone几乎同步,彼时iPhone去掉手机实体键盘改用触摸屏,让英语输入法和按键纠错功能出现巨大需求,触宝敏锐地发现了这一机会。现在触宝输入法已经成为海外用户量最大的第三方输入法,在欧美地区的用户已经超过了50%。触宝是首家获得 ...全文",
1455 | "textLength": 332,
1456 | "source": "专业版微博",
1457 | "favorited": false,
1458 | "thumbnail_pic": "http://wx2.sinaimg.cn/thumbnail/006yYeT0gy1fnqo9r95mtj30go0b3jsx.jpg",
1459 | "bmiddle_pic": "http://wx2.sinaimg.cn/bmiddle/006yYeT0gy1fnqo9r95mtj30go0b3jsx.jpg",
1460 | "original_pic": "http://wx2.sinaimg.cn/large/006yYeT0gy1fnqo9r95mtj30go0b3jsx.jpg",
1461 | "is_paid": false,
1462 | "mblog_vip_type": 0,
1463 | "user": {
1464 | "id": 6013549322,
1465 | "screen_name": "福布斯中国",
1466 | "profile_image_url": "https://tva4.sinaimg.cn/crop.0.0.2048.2048.180/006yYeT0jw8f9rm0t8c5gj31kw1kwdks.jpg",
1467 | "profile_url": "https://m.weibo.cn/u/6013549322?uid=6013549322&luicode=10000011&lfid=100103type%3D2%26q%3DiPhone",
1468 | "statuses_count": 639,
1469 | "verified": true,
1470 | "verified_type": 2,
1471 | "verified_type_ext": 0,
1472 | "verified_reason": "福布斯中国官方微博",
1473 | "close_blue_v": false,
1474 | "description": "福布斯于 1917 年在纽约创立,以“创业精神,创富工具”为口号,以其企业家和创新意识成行行业翘楚。福布斯斯制作的榜单被称为“经济的晴雨表”和“财富风向标”。 自 2003 年起,福布斯来到中国,秉承为企业决策精英倡导创业精神的理念,制作了包含“福布斯中国富豪榜”在内一系列榜单、调研、活动及其他平台。福布斯中国致力于为高端客户打造具有进取心的互动社区,提供前瞻、共享的环境,构建创业、创新信息生态链。",
1475 | "gender": "m",
1476 | "mbtype": 0,
1477 | "urank": 9,
1478 | "mbrank": 0,
1479 | "follow_me": false,
1480 | "following": false,
1481 | "followers_count": 843,
1482 | "follow_count": 132,
1483 | "cover_image_phone": "https://tva1.sinaimg.cn/crop.0.0.640.640.640/549d0121tw1egm1kjly3jj20hs0hsq4f.jpg",
1484 | "avatar_hd": "https://ww4.sinaimg.cn/orj480/006yYeT0jw8f9rm0t8c5gj31kw1kwdks.jpg",
1485 | "like": false,
1486 | "like_me": false,
1487 | "badge": {
1488 | "unread_pool": 1,
1489 | "unread_pool_ext": 1
1490 | }
1491 | },
1492 | "reposts_count": 0,
1493 | "comments_count": 0,
1494 | "attitudes_count": 0,
1495 | "pending_approval_count": 0,
1496 | "isLongText": true,
1497 | "longText": {
1498 | "longTextContent": "【墙内花开墙外香 输入法小巨人触宝的“全球化路径”】触宝的诞生与iPhone几乎同步,彼时iPhone去掉手机实体键盘改用触摸屏,让英语输入法和按键纠错功能出现巨大需求,触宝敏锐地发现了这一机会。现在触宝输入法已经成为海外用户量最大的第三方输入法,在欧美地区的用户已经超过了50%。触宝是首家获得GSMA全球移动创新大奖的中国公司。\nhttp://t.cn/RQHRIgy",
1499 | "url_objects": [
1500 | {
1501 | "url_ori": "http://t.cn/RQHRIgy",
1502 | "object_id": "1022:2309614199006996665775",
1503 | "info": {
1504 | "url_short": "http://t.cn/RQHRIgy",
1505 | "url_long": "http://www.forbeschina.com/review/201801//0066212.shtml",
1506 | "type": 39,
1507 | "result": true,
1508 | "title": "",
1509 | "description": "",
1510 | "last_modified": 1516604745,
1511 | "transcode": 0
1512 | },
1513 | "object": {
1514 | "object_id": "1022:2309614199006996665775",
1515 | "containerid": "2309614199006996665775",
1516 | "object_domain_id": "1022",
1517 | "object_type": "article",
1518 | "safe_status": 1,
1519 | "show_status": "10",
1520 | "act_status": "00",
1521 | "last_modified": "Mon Jan 22 15:05:46 CST 2018",
1522 | "timestamp": 1516604746361,
1523 | "uuid": 4199006996545629,
1524 | "activate_status": "0",
1525 | "object": {
1526 | "id": "1022:2309614199006996665775",
1527 | "target_url": "https://media.weibo.cn/article?id=2309614199006996665775",
1528 | "object_type": "article",
1529 | "article_type": "top_article",
1530 | "sub_article_type": "",
1531 | "display_name": "墙内花开墙外香 输入法新贵触宝的“全球化路径”",
1532 | "url": "http://weibo.com/ttarticle/p/show?id=2309614199006996665775",
1533 | "create_at": "2018-01-22 14:43:41",
1534 | "summary": "",
1535 | "target_oid": "",
1536 | "image": {
1537 | "url": "http://wx3.sinaimg.cn/nmw690/005M94J9ly4fnpcguicjej30go0b3gmu.jpg",
1538 | "height": 450,
1539 | "width": 800
1540 | },
1541 | "ispay": 0,
1542 | "is_vclub": 0,
1543 | "oid": "6124095542",
1544 | "author": {
1545 | "id": "6124095542",
1546 | "object_type": "person",
1547 | "display_name": "曼凝友蕊",
1548 | "avatar_large": "http://tvax1.sinaimg.cn/crop.0.0.300.300.180/006Gs50yly8fdjz5kkbtej308c08cjrr.jpg"
1549 | },
1550 | "full_image": {
1551 | "height": 562,
1552 | "width": 1000,
1553 | "url": "http://wx3.sinaimg.cn/nmw690/005M94J9ly4fnpcguicjej30go0b3gmu.jpg"
1554 | },
1555 | "ourl": "http://www.forbeschina.com/review/201801//0066212.shtml",
1556 | "biz": {
1557 | "biz_id": "230961",
1558 | "containerid": "2309614199006996665775"
1559 | },
1560 | "mid": "4199007004027164"
1561 | }
1562 | },
1563 | "like_count": 0,
1564 | "isActionType": true,
1565 | "follower_count": 0,
1566 | "asso_like_count": 0,
1567 | "card_info_un_integrity": false,
1568 | "super_topic_status_count": 0,
1569 | "super_topic_photo_count": 0
1570 | }
1571 | ]
1572 | },
1573 | "visible": {
1574 | "type": 0,
1575 | "list_id": 0
1576 | },
1577 | "rid": "9_0_0_618401511749607748",
1578 | "more_info_type": 0,
1579 | "content_auth": 0,
1580 | "status": 0,
1581 | "itemid": "seqid:586777392|type:2|t:|pos:10-0-9|q:iPhone|ext:&mid=4199406368313332&",
1582 | "page_info": {
1583 | "page_pic": {
1584 | "url": "https://wx3.sinaimg.cn/nmw690/005M94J9ly4fnpcguicjej30go0b3gmu.jpg"
1585 | },
1586 | "page_url": "http://media.weibo.cn/article?object_id=1022%3A2309614199006996665775&url_type=39&object_type=article&pos=2&luicode=10000011&lfid=100103type%3D2%26q%3DiPhone&id=2309614199006996665775",
1587 | "page_title": "",
1588 | "content1": "墙内花开墙外香 输入法新贵触宝的“全球化路径”",
1589 | "content2": "",
1590 | "icon": "https://h5.sinaimg.cn/upload/2016/12/28/14/feed_headlines_icon_flash20161228_2.png",
1591 | "type": "article"
1592 | },
1593 | "bid": "FFI0QySG0",
1594 | "pics": [
1595 | {
1596 | "pid": "006yYeT0gy1fnqo9r95mtj30go0b3jsx",
1597 | "url": "https://wx2.sinaimg.cn/orj360/006yYeT0gy1fnqo9r95mtj30go0b3jsx.jpg",
1598 | "size": "orj360",
1599 | "geo": {
1600 | "width": 406,
1601 | "height": 270,
1602 | "croped": false
1603 | },
1604 | "large": {
1605 | "size": "large",
1606 | "url": "https://wx2.sinaimg.cn/large/006yYeT0gy1fnqo9r95mtj30go0b3jsx.jpg",
1607 | "geo": {
1608 | "width": "600",
1609 | "height": "399",
1610 | "croped": false
1611 | }
1612 | }
1613 | }
1614 | ]
1615 | },
1616 | "scheme": "https://m.weibo.cn/status/FFI0QySG0?mblogid=FFI0QySG0&luicode=10000011&lfid=100103type%3D2%26q%3DiPhone"
1617 | }
1618 | ]
1619 | }
1620 | ],
1621 | "showAppTips": 0,
1622 | "scheme": "sinaweibo://cardlist?containerid=100103type=2&q=iPhone&extparam=&luicode=10000011&lfid=&featurecode="
1623 | }
1624 | }
--------------------------------------------------------------------------------
/weibo_cloud.py:
--------------------------------------------------------------------------------
1 | # coding: utf-8
2 |
3 | import json
4 |
5 | import jieba.analyse
6 | import matplotlib as mpl
7 | from scipy.misc import imread
8 | from wordcloud import WordCloud
9 |
10 | # mpl.use('TkAgg')
11 | import matplotlib.pyplot as plt
12 |
13 |
14 | def keywords(mblogs):
15 | text = []
16 | for blog in mblogs:
17 | keyword = jieba.analyse.extract_tags(blog['text'])
18 | text.extend(keyword)
19 | return text
20 |
21 |
22 | def gen_img(texts, img_file):
23 | data = ' '.join(text for text in texts)
24 | image_coloring = imread(img_file)
25 | wc = WordCloud(
26 | background_color='white',
27 | mask=image_coloring,
28 | font_path='/Library/Fonts/STHeiti Light.ttc'
29 | )
30 | wc.generate(data)
31 |
32 | # plt.figure()
33 | # plt.imshow(wc, interpolation="bilinear")
34 | # plt.axis("off")
35 | # plt.show()
36 |
37 | wc.to_file(img_file.split('.')[0] + '_wc.png')
38 |
39 |
40 | if __name__ == '__main__':
41 | keyword = '微软'
42 | mblogs = json.loads(open('result_{}.json'.format(keyword), 'r', encoding='utf-8').read())
43 | print('微博总数:', len(mblogs))
44 |
45 | words = []
46 | for blog in mblogs:
47 | words.extend(jieba.analyse.extract_tags(blog['text']))
48 |
49 | print("总词数:", len(words))
50 |
51 | gen_img(words, 'edge.png')
52 |
--------------------------------------------------------------------------------
/weibo_search.py:
--------------------------------------------------------------------------------
1 | # coding: utf-8
2 |
3 | import re
4 | import json
5 | import requests
6 |
7 | # 基于 m.weibo.cn 抓取少量数据,无需登陆验证
8 | url_template = "https://m.weibo.cn/api/container/getIndex?type=wb&queryVal={}&containerid=100103type=2%26q%3D{}&page={}"
9 |
10 |
11 | def clean_text(text):
12 | """清除文本中的标签等信息"""
13 | dr = re.compile(r'(<)[^>]+>', re.S)
14 | dd = dr.sub('', text)
15 | dr = re.compile(r'#[^#]+#', re.S)
16 | dd = dr.sub('', dd)
17 | dr = re.compile(r'@[^ ]+ ', re.S)
18 | dd = dr.sub('', dd)
19 | return dd.strip()
20 |
21 |
22 | def fetch_data(query_val, page_id):
23 | """抓取关键词某一页的数据"""
24 | resp = requests.get(url_template.format(query_val, query_val, page_id))
25 | card_group = json.loads(resp.text)['data']['cards'][0]['card_group']
26 | print('url:', resp.url, ' --- 条数:', len(card_group))
27 |
28 | mblogs = [] # 保存处理过的微博
29 | for card in card_group:
30 | mblog = card['mblog']
31 | blog = {'mid': mblog['id'], # 微博id
32 | 'text': clean_text(mblog['text']), # 文本
33 | 'userid': str(mblog['user']['id']), # 用户id
34 | 'username': mblog['user']['screen_name'], # 用户名
35 | 'reposts_count': mblog['reposts_count'], # 转发
36 | 'comments_count': mblog['comments_count'], # 评论
37 | 'attitudes_count': mblog['attitudes_count'] # 点赞
38 | }
39 | mblogs.append(blog)
40 | return mblogs
41 |
42 |
43 | def remove_duplication(mblogs):
44 | """根据微博的id对微博进行去重"""
45 | mid_set = {mblogs[0]['mid']}
46 | new_blogs = []
47 | for blog in mblogs[1:]:
48 | if blog['mid'] not in mid_set:
49 | new_blogs.append(blog)
50 | mid_set.add(blog['mid'])
51 | return new_blogs
52 |
53 |
54 | def fetch_pages(query_val, page_num):
55 | """抓取关键词多页的数据"""
56 | mblogs = []
57 | for page_id in range(1 + page_num + 1):
58 | try:
59 | mblogs.extend(fetch_data(query_val, page_id))
60 | except Exception as e:
61 | print(e)
62 |
63 | print("去重前:", len(mblogs))
64 | mblogs = remove_duplication(mblogs)
65 | print("去重后:", len(mblogs))
66 |
67 | # 保存到 result.json 文件中
68 | fp = open('result_{}.json'.format(query_val), 'w', encoding='utf-8')
69 | json.dump(mblogs, fp, ensure_ascii=False, indent=4)
70 | print("已保存至 result_{}.json".format(query_val))
71 |
72 |
73 | if __name__ == '__main__':
74 | fetch_pages('谷歌', 50)
75 |
--------------------------------------------------------------------------------