标签:数据挖掘
#!/usr/bin/python
# -*- coding: utf-8 -*-
'''
Created on 2014-12-31
@author: beyondzhou
@name: json_data_text.py
'''
# Get public timeline of sina weibo and save json response data into text file
def json_data_text():
# import
from login import weibo_login
from data import save_to_text, load_from_text
# Access to sina api
weibo_api = weibo_login()
# Get public timeline
public_timeline = weibo_api.statuses.public_timeline.get(count=200)
# Output the public timeline
# print json.dumps(public_timeline, indent=1)
# Save the json data into text file
save_to_text('publicTimeline', public_timeline)
# Read the json data from text file
results = load_from_text('publicTimeline')
print results
if __name__ == '__main__':
json_data_text()#!/usr/bin/python
# -*- coding: utf-8 -*-
'''
Created on 2014-12-31
@author: beyondzhou
@name: data.py
'''
import io, json
# Save json data into text file
def save_to_text(filename, data):
with io.open(r'e:\automation\{0}.json'.format(filename),'w', encoding='utf-8') as f:
f.write(unicode(json.dumps(data, ensure_ascii=False, indent=1)))
# Load json data from text file
def load_from_text(filename):
with io.open(r'e:\automation\{0}.json'.format(filename), encoding='utf-8') as f:
return f.read()
Results:
"thumbnail_pic": "http://ww2.sinaimg.cn/thumbnail/e64ab084gw1en83gcxf4dj20j20dr76e.jpg"
}
],
"in_reply_to_user_id": "",
"darwin_tags": [],
"favorited": false,
"original_pic": "http://ww4.sinaimg.cn/large/e64ab084gw1en83fpbam0j20ce0ddjsn.jpg",
"idstr": "3793732287449186",
"source_type": 1,
"user": {
"bi_followers_count": 5,
"domain": "",
"avatar_large": "http://tp1.sinaimg.cn/5227912516/180/5701194981/0",
"verified_source": "",
"ptype": 0,
"statuses_count": 2102,
"allow_all_comment": true,
"id": 5227912516,
"verified_reason_url": "",
"city": "1000",
"province": "100",
"credit_score": 80,
"block_app": 0,
"follow_me": false,
"verified_reason": "",
"followers_count": 77,
"location": "其他",
"verified_trade": "",
"mbtype": 0,
"verified_source_url": "",
"profile_url": "u/5227912516",
"block_word": 0,
"avatar_hd": "http://ww2.sinaimg.cn/crop.0.0.200.200.1024/005HNMRCjw1eiogrh9pubj305k05k0sn.jpg",
"star": 0,
"description": "",
"friends_count": 756,
"online_status": 0,
"mbrank": 0,
"idstr": "5227912516",
"profile_image_url": "http://tp1.sinaimg.cn/5227912516/50/5701194981/0",
"allow_all_act_msg": false,
"verified": false,
"geo_enabled": true,
"class": 1,
"screen_name": "心塞的清芬",
"lang": "zh-cn",
"weihao": "",
"remark": "",
"favourites_count": 0,
"name": "心塞的清芬",
"url": "",
"gender": "f",
"created_at": "Wed Jul 23 00:00:03 +0800 2014",
"verified_type": -1,
"following": false,
"pagefriends_count": 0,
"urank": 7
},
"geo": null,
"created_at": "Wed Dec 31 06:48:43 +0800 2014",
"mlevel": 0,
"comments_count": 0
},
{
"reposts_count": 0,
"truncated": false,
"text": "[疑问] 链 接:http://t.cn/Rzsuyk4",
"visible": {
"type": 0,
"list_id": 0
},
"in_reply_to_status_id": "",
"bmiddle_pic": "http://ww3.sinaimg.cn/bmiddle/e64ab084gw1en83w3opzrj20h30gpdi6.jpg",
"id": 3793732287449183,
"thumbnail_pic": "http://ww3.sinaimg.cn/thumbnail/e64ab084gw1en83w3opzrj20h30gpdi6.jpg",
"mid": "3793732287449183",
"source": "<a href=\"http://app.weibo.com/t/feed/63af84\" rel=\"nofollow\">vivo智能手机</a>",
"attitudes_count": 0,
"in_reply_to_screen_name": "",
"pic_urls": [
{
"thumbnail_pic": "http://ww3.sinaimg.cn/thumbnail/e64ab084gw1en83w3opzrj20h30gpdi6.jpg"
},
{
"thumbnail_pic": "http://ww1.sinaimg.cn/thumbnail/e64ab084gw1en83wnbe88j20hf0gp76i.jpg"
},
{
"thumbnail_pic": "http://ww1.sinaimg.cn/thumbnail/e64ab084gw1en83wukxkfj20d10g8whb.jpg"
},
{
"thumbnail_pic": "http://ww2.sinaimg.cn/thumbnail/e64ab084gw1en83wj3kp6j20hj0gngnp.jpg"
},
{
"thumbnail_pic": "http://ww4.sinaimg.cn/thumbnail/e64ab084gw1en83xwi982j20nk0fg41c.jpg"
},
{
"thumbnail_pic": "http://ww2.sinaimg.cn/thumbnail/e64ab084gw1en83x808ioj20f30g4tb7.jpg"
},
{
"thumbnail_pic": "http://ww3.sinaimg.cn/thumbnail/e64ab084gw1en83y36nhyj20q50gqgov.jpg"
},
{
"thumbnail_pic": "http://ww3.sinaimg.cn/thumbnail/e64ab084gw1en83yys1klj20f70g8ad6.jpg"
},
{
"thumbnail_pic": "http://ww2.sinaimg.cn/thumbnail/e64ab084gw1en83y7ezamj20q80ggwhc.jpg"
}
],
"in_reply_to_user_id": "",
"darwin_tags": [],
"favorited": false,
"original_pic": "http://ww3.sinaimg.cn/large/e64ab084gw1en83w3opzrj20h30gpdi6.jpg",
"idstr": "3793732287449183",
"source_type": 1,
"user": {
"bi_followers_count": 4,
"domain": "",
"avatar_large": "http://tp4.sinaimg.cn/5139153839/180/5694951290/0",
"verified_source": "",
"ptype": 0,
"statuses_count": 2260,
"allow_all_comment": true,
"id": 5139153839,
"verified_reason_url": "",
"city": "1000",
"province": "11",
"credit_score": 80,
"block_app": 0,
"follow_me": false,
"verified_reason": "",
"followers_count": 98,
"location": "北京",
"verified_trade": "",
"mbtype": 0,
"verified_source_url": "",
"profile_url": "u/5139153839",
"block_word": 0,
"avatar_hd": "http://ww3.sinaimg.cn/crop.0.0.200.200.1024/005BNmG3jw1egcx4btt6yj305k05k0sn.jpg",
"star": 0,
"description": "",
"friends_count": 404,
"online_status": 0,
"mbrank": 0,
"idstr": "5139153839",
"profile_image_url": "http://tp4.sinaimg.cn/5139153839/50/5694951290/0",
"allow_all_act_msg": false,
"verified": false,
"geo_enabled": true,
"class": 1,
"screen_name": "屋檐下的映秋",
"lang": "zh-cn",
"weihao": "",
"remark": "",
"favourites_count": 0,
"name": "屋檐下的映秋",
"url": "",
"gender": "f",
"created_at": "Sat May 10 17:11:02 +0800 2014",
"verified_type": -1,
"following": false,
"pagefriends_count": 0,
"urank": 7
},
"geo": null,
"created_at": "Wed Dec 31 06:48:43 +0800 2014",
"mlevel": 0,
"comments_count": 0
},
{
"reposts_count": 0,
"truncated": false,
"text": "[xb拇指]BJJ蕾丝控|地址:http://t.cn/R7k8xJ4",
"visible": {
"type": 0,
"list_id": 0
},
"in_reply_to_status_id": "",
"bmiddle_pic": "http://ww2.sinaimg.cn/bmiddle/005yfBQ0tw1elld01wn1sj30ir0j4q62.jpg",
"id": 3793732287449181,
"thumbnail_pic": "http://ww2.sinaimg.cn/thumbnail/005yfBQ0tw1elld01wn1sj30ir0j4q62.jpg",
"mid": "3793732287449181",
"source": "<a href=\"http://app.weibo.com/t/feed/6pwitf\" rel=\"nofollow\">360安全平台</a>",
"attitudes_count": 0,
"in_reply_to_screen_name": "",
"pic_urls": [
{
"thumbnail_pic": "http://ww2.sinaimg.cn/thumbnail/005yfBQ0tw1elld01wn1sj30ir0j4q62.jpg"
},
{
"thumbnail_pic": "http://ww3.sinaimg.cn/thumbnail/005yfBQ0tw1elld02bb3gj30iy0jbwim.jpg"
},
{
"thumbnail_pic": "http://ww2.sinaimg.cn/thumbnail/005yfBQ0tw1elld031ebej30ia0jaaej.jpg"
},
{
"thumbnail_pic": "http://ww4.sinaimg.cn/thumbnail/005yfBQ0tw1elld03d7c3j30gs0gv0uy.jpg"
},
{
"thumbnail_pic": "http://ww2.sinaimg.cn/thumbnail/005yfBQ0tw1elld03pfohj30il0jcjuw.jpg"
},
{
"thumbnail_pic": "http://ww2.sinaimg.cn/thumbnail/005yfBQ0tw1elld047lvnj30ja0j977m.jpg"
},
{
"thumbnail_pic": "http://ww1.sinaimg.cn/thumbnail/005yfBQ0tw1elld04lymcj30k10jpjui.jpg"
},
{
"thumbnail_pic": "http://ww3.sinaimg.cn/thumbnail/005yfBQ0tw1elld04z7dqj30je0jdjug.jpg"
},
{
"thumbnail_pic": "http://ww2.sinaimg.cn/thumbnail/005yfBQ0tw1elld05f1arj30f50ju42o.jpg"
}
],
"in_reply_to_user_id": "",
"darwin_tags": [],
"favorited": false,
"original_pic": "http://ww2.sinaimg.cn/large/005yfBQ0tw1elld01wn1sj30ir0j4q62.jpg",
"idstr": "3793732287449181",
"source_type": 1,
"user": {
"bi_followers_count": 166,
"domain": "",
"avatar_large": "http://tp1.sinaimg.cn/5090794692/180/5691298848/0",
"verified_source": "",
"ptype": 0,
"statuses_count": 4925,
"allow_all_comment": true,
"id": 5090794692,
"verified_reason_url": "",
"city": "10",
"province": "36",
"credit_score": 80,
"block_app": 0,
"follow_me": false,
"verified_reason": "",
"followers_count": 261,
"location": "江西 抚州",
"verified_trade": "",
"mbtype": 0,
"verified_source_url": "",
"profile_url": "u/5090794692",
"block_word": 0,
"avatar_hd": "http://ww3.sinaimg.cn/crop.0.0.200.200.1024/005ywsfOjw1ef01pe98t3j305k05kgm5.jpg",
"star": 0,
"description": "",
"friends_count": 1884,
"online_status": 0,
"mbrank": 0,
"idstr": "5090794692",
"profile_image_url": "http://tp1.sinaimg.cn/5090794692/50/5691298848/0",
"allow_all_act_msg": false,
"verified": false,
"geo_enabled": true,
"class": 1,
"screen_name": "_癲宅師妹_",
"lang": "zh-cn",
"weihao": "",
"remark": "",
"favourites_count": 0,
"name": "_癲宅師妹_",
"url": "",
"gender": "f",
"created_at": "Thu Mar 27 22:36:54 +0800 2014",
"verified_type": -1,
"following": false,
"pagefriends_count": 0,
"urank": 9
},
"geo": null,
"created_at": "Wed Dec 31 06:48:43 +0800 2014",
"mlevel": 0,
"comments_count": 0
},
{
"darwin_tags": [],
"favorited": false,
"source_type": 1,
"mid": "3793732287170614",
"in_reply_to_user_id": "",
"source": "<a href=\"http://app.weibo.com/t/feed/e0WUS\" rel=\"nofollow\">微博桌面</a>",
"text": "当面对两个选择时,抛硬币总能奏效,并不是因为它总能给出对的答案,而是在你把它抛在空中的那一秒里,你突然知道你希望它是什么……",
"created_at": "Wed Dec 31 06:48:44 +0800 2014",
"truncated": false,
"reposts_count": 0,
"idstr": "3793732287170614",
"visible": {
"type": 0,
"list_id": 0
},
"attitudes_count": 0,
"pic_urls": [],
"in_reply_to_screen_name": "",
"user": {
"bi_followers_count": 34,
"domain": "",
"avatar_large": "http://tp4.sinaimg.cn/1780921711/180/40015781273/0",
"verified_source": "",
"ptype": 0,
"statuses_count": 1846,
"allow_all_comment": true,
"id": 1780921711,
"verified_reason_url": "",
"city": "1",
"province": "32",
"credit_score": 80,
"block_app": 0,
"follow_me": false,
"verified_reason": "",
"followers_count": 159,
"location": "江苏 南京",
"verified_trade": "",
"mbtype": 0,
"verified_source_url": "",
"profile_url": "u/1780921711",
"block_word": 0,
"avatar_hd": "http://tp4.sinaimg.cn/1780921711/180/40015781273/0",
"star": 0,
"description": "我是希瑞~瘦瘦的希瑞~~",
"friends_count": 789,
"online_status": 1,
"mbrank": 0,
"idstr": "1780921711",
"profile_image_url": "http://tp4.sinaimg.cn/1780921711/50/40015781273/0",
"allow_all_act_msg": true,
"verified": false,
"geo_enabled": true,
"class": 1,
"screen_name": "frandasusu",
"lang": "zh-cn",
"weihao": "",
"remark": "",
"favourites_count": 0,
"name": "frandasusu",
"url": "",
"gender": "f",
"created_at": "Wed Jul 21 17:18:23 +0800 2010",
"verified_type": -1,
"following": false,
"pagefriends_count": 0,
"urank": 13
},
"in_reply_to_status_id": "",
"comments_count": 0,
"geo": null,
"id": 3793732287170614,
"mlevel": 0
},
{
"reposts_count": 0,
"truncated": false,
"text": "我们有时会错误地以为,得不到的,才是珍贵的,已经拥有的,都是廉价的。得不到的,因为缺少深入的了解,它只是一种美好的假象,展示给我们一个绚丽的外表。如果有那么一天,你距离它近了,知道了它的真相,你才发现,它和我们拥有的,竟是那么的相似。别把眼光停留在想象中,你拥有的都是你的幸福。",
"visible": {
"type": 0,
"list_id": 0
},
"in_reply_to_status_id": "",
"bmiddle_pic": "http://ww3.sinaimg.cn/bmiddle/5de52038tw1drgwukzbi9g.gif",
"id": 3793732287170384,
"thumbnail_pic": "http://ww3.sinaimg.cn/thumbnail/5de52038tw1drgwukzbi9g.gif",
"mid": "3793732287170384",
"source": "<a href=\"http://weibo.com/\" rel=\"nofollow\">微博 weibo.com</a>",
"attitudes_count": 0,
"in_reply_to_screen_name": "",
"pic_urls": [
{
"thumbnail_pic": "http://ww3.sinaimg.cn/thumbnail/5de52038tw1drgwukzbi9g.gif"
}
],
"in_reply_to_user_id": "",
"darwin_tags": [],
"favorited": false,
"original_pic": "http://ww3.sinaimg.cn/large/5de52038tw1drgwukzbi9g.gif",
"idstr": "3793732287170384",
"source_type": 1,
"user": {
"bi_followers_count": 2,
"domain": "",
"avatar_large": "http://tp3.sinaimg.cn/2577836174/180/5714946997/1",
"verified_source": "",
"ptype": 0,
"cover_image_phone": "http://ww3.sinaimg.cn/crop.0.0.640.640.640/a1d3feabjw1eca1ktsx9tj20hs0hsjtk.jpg",
"statuses_count": 27,
"id": 2577836174,
"verified_reason_url": "",
"city": "1",
"verified": false,
"credit_score": 80,
"block_app": 0,
"follow_me": false,
"verified_reason": "",
"followers_count": 25,
"location": "浙江 杭州",
"verified_trade": "",
"mbtype": 0,
"verified_source_url": "",
"profile_url": "u/2577836174",
"block_word": 0,
"avatar_hd": "http://ww1.sinaimg.cn/crop.0.0.200.200.1024/99a6a88ejw1ensh8gv23uj205k05k3yw.jpg",
"star": 0,
"description": "为了追老袁围脖而来",
"friends_count": 1276,
"online_status": 0,
"mbrank": 0,
"idstr": "2577836174",
"profile_image_url": "http://tp3.sinaimg.cn/2577836174/50/5714946997/1",
"allow_all_act_msg": false,
"allow_all_comment": true,
"geo_enabled": true,
"class": 1,
"screen_name": "白米饭的小屋Gary",
"lang": "zh-cn",
"weihao": "",
"remark": "",
"favourites_count": 0,
"name": "白米饭的小屋Gary",
"url": "",
"province": "33",
"created_at": "Thu Dec 01 21:48:05 +0800 2011",
"verified_type": -1,
"gender": "m",
"following": false,
"pagefriends_count": 0,
"urank": 4
},
"geo": null,
"created_at": "Wed Dec 31 06:48:44 +0800 2014",
"mlevel": 0,
"comments_count": 0
},
{
"darwin_tags": [],
"favorited": false,
"source_type": 1,
"mid": "3793732287170326",
"in_reply_to_user_id": "",
"source": "<a href=\"http://weibo.com/\" rel=\"nofollow\">微博 weibo.com</a>",
"text": "【日式照烧鸡排】原料:鸡腿,盐 日式米酒(清酒) 味霖、日式酱油 糖。做法:1、 鸡腿剔去骨头。2、 鸡腿内加入一点点盐抓匀,腌制一会儿。3、锅内加热少许油,放入鸡腿煎至两面金黄。4、调入一勺味霖和一勺米酒。5、调入一勺酱油。6、调入一勺糖,加入适量水焖煮至汤汁浓稠即可。",
"created_at": "Wed Dec 31 06:48:44 +0800 2014",
"truncated": false,
"reposts_count": 0,
"idstr": "3793732287170326",
"visible": {
"type": 0,
"list_id": 0
},
"attitudes_count": 0,
"pic_urls": [],
"in_reply_to_screen_name": "",
"user": {
"bi_followers_count": 2,
"domain": "",
"avatar_large": "http://tp2.sinaimg.cn/2719159921/180/5630592615/1",
"verified_source": "",
"ptype": 0,
"statuses_count": 139,
"allow_all_comment": true,
"id": 2719159921,
"verified_reason_url": "",
"city": "2",
"province": "400",
"credit_score": 80,
"block_app": 0,
"follow_me": false,
"verified_reason": "",
"followers_count": 226,
"location": "海外 英国",
"verified_trade": "",
"mbtype": 0,
"verified_source_url": "",
"profile_url": "u/2719159921",
"block_word": 0,
"avatar_hd": "http://tp2.sinaimg.cn/2719159921/180/5630592615/1",
"star": 0,
"description": "时间是世界上的一切成就的土壤时间给空想者痛苦,给创造者幸福",
"friends_count": 1660,
"online_status": 0,
"mbrank": 0,
"idstr": "2719159921",
"profile_image_url": "http://tp2.sinaimg.cn/2719159921/50/5630592615/1",
"allow_all_act_msg": false,
"verified": false,
"geo_enabled": true,
"class": 1,
"screen_name": "淘气巍巍wan",
"lang": "zh-cn",
"weihao": "",
"remark": "",
"favourites_count": 0,
"name": "淘气巍巍wan",
"url": "",
"gender": "m",
"created_at": "Tue Apr 24 06:09:03 +0800 2012",
"verified_type": -1,
"following": false,
"pagefriends_count": 0,
"urank": 2
},
"in_reply_to_status_id": "",
"comments_count": 0,
"geo": null,
"id": 3793732287170326,
"mlevel": 0
},
{
"reposts_count": 0,
"truncated": false,
"text": "#奔跑吧2015# 看@浙江卫视跨年演唱会 ,送@快的打车 #一亿跨年红包#!要的点这里:http://t.cn/RZyixKw ",
"visible": {
"type": 0,
"list_id": 0
},
"in_reply_to_status_id": "",
"bmiddle_pic": "http://ww3.sinaimg.cn/bmiddle/9e5bfd15jw1ensh8ut1umj20hs08wdiy.jpg",
"id": 3793732283736263,
"thumbnail_pic": "http://ww3.sinaimg.cn/thumbnail/9e5bfd15jw1ensh8ut1umj20hs08wdiy.jpg",
"mid": "3793732283736263",
"source": "<a href=\"http://app.weibo.com/t/feed/161rFY\" rel=\"nofollow\">快的打车</a>",
"attitudes_count": 0,
"in_reply_to_screen_name": "",
"pic_urls": [
{
"thumbnail_pic": "http://ww3.sinaimg.cn/thumbnail/9e5bfd15jw1ensh8ut1umj20hs08wdiy.jpg"
}
],
"in_reply_to_user_id": "",
"darwin_tags": [],
"favorited": false,
"original_pic": "http://ww3.sinaimg.cn/large/9e5bfd15jw1ensh8ut1umj20hs08wdiy.jpg",
"idstr": "3793732283736263",
"source_type": 1,
"user": {
"bi_followers_count": 13,
"domain": "",
"avatar_large": "http://tp2.sinaimg.cn/2656828693/180/5697984980/0",
"verified_source": "",
"ptype": 0,
"cover_image_phone": "http://ww4.sinaimg.cn/crop.0.0.640.640.640/6ce2240djw1e9h12z57plj20hs0hsadi.jpg",
"statuses_count": 362,
"id": 2656828693,
"verified_reason_url": "",
"city": "1000",
"verified": false,
"credit_score": 80,
"block_app": 1,
"follow_me": false,
"verified_reason": "",
"followers_count": 107,
"location": "上海",
"verified_trade": "",
"mbtype": 13,
"verified_source_url": "",
"profile_url": "u/2656828693",
"block_word": 0,
"avatar_hd": "http://ww4.sinaimg.cn/crop.0.0.641.641.1024/9e5bfd15jw8ehhih5joi2j20ht0ht3ze.jpg",
"star": 0,
"description": "",
"friends_count": 722,
"online_status": 1,
"mbrank": 5,
"idstr": "2656828693",
"profile_image_url": "http://tp2.sinaimg.cn/2656828693/50/5697984980/0",
"allow_all_act_msg": false,
"allow_all_comment": true,
"geo_enabled": true,
"class": 1,
"screen_name": "梦歌哥",
"lang": "zh-cn",
"weihao": "",
"remark": "",
"favourites_count": 161,
"name": "梦歌哥",
"url": "",
"province": "31",
"created_at": "Sat Mar 10 20:04:53 +0800 2012",
"verified_type": -1,
"gender": "f",
"following": false,
"pagefriends_count": 1,
"urank": 14
},
"geo": null,
"created_at": "Wed Dec 31 06:48:42 +0800 2014",
"mlevel": 0,
"comments_count": 0
},
{
"darwin_tags": [],
"favorited": false,
"source_type": 1,
"mid": "3793732283735779",
"in_reply_to_user_id": "",
"source": "<a href=\"http://app.weibo.com/t/feed/5TEfjh\" rel=\"nofollow\">秦时明月手游</a>",
"text": "《秦时明月》破秦兵百万,做秦时霸王! http://t.cn/RzOUQMy",
"created_at": "Wed Dec 31 06:48:42 +0800 2014",
"truncated": false,
"reposts_count": 0,
"idstr": "3793732283735779",
"visible": {
"type": 0,
"list_id": 0
},
"attitudes_count": 0,
"pic_urls": [],
"in_reply_to_screen_name": "",
"user": {
"bi_followers_count": 0,
"domain": "",
"avatar_large": "http://tp4.sinaimg.cn/5102077367/180/5691797900/1",
"verified_source": "",
"ptype": 0,
"statuses_count": 820,
"allow_all_comment": true,
"id": 5102077367,
"verified_reason_url": "",
"city": "1000",
"province": "100",
"credit_score": 80,
"block_app": 0,
"follow_me": false,
"verified_reason": "",
"followers_count": 7,
"location": "其他",
"verified_trade": "",
"mbtype": 0,
"verified_source_url": "",
"profile_url": "u/5102077367",
"block_word": 0,
"avatar_hd": "http://ww4.sinaimg.cn/crop.0.0.180.180.1024/005zhNorjw8ef6q3pxc5aj30500503yg.jpg",
"star": 0,
"description": "",
"friends_count": 31,
"online_status": 0,
"mbrank": 0,
"idstr": "5102077367",
"profile_image_url": "http://tp4.sinaimg.cn/5102077367/50/5691797900/1",
"allow_all_act_msg": false,
"verified": false,
"geo_enabled": true,
"class": 1,
"screen_name": "用户6ht6q14gj4",
"lang": "zh-cn",
"weihao": "",
"remark": "",
"favourites_count": 0,
"name": "用户6ht6q14gj4",
"url": "",
"gender": "m",
"created_at": "Mon Apr 07 08:28:24 +0800 2014",
"verified_type": -1,
"following": false,
"pagefriends_count": 0,
"urank": 9
},
"in_reply_to_status_id": "",
"comments_count": 0,
"geo": null,
"id": 3793732283735779,
"mlevel": 0
},
{
"reposts_count": 0,
"truncated": false,
"text": "坚守2014年最后一天岗位,年底了还有心烦事[伤心][伤心][伤心] http://t.cn/Rz2HGiR",
"visible": {
"type": 0,
"list_id": 0
},
"in_reply_to_status_id": "",
"id": 3793732283735778,
"mid": "3793732283735778",
"source": "<a href=\"http://app.weibo.com/t/feed/9ksdit\" rel=\"nofollow\">iPhone客户端</a>",
"attitudes_count": 0,
"in_reply_to_screen_name": "",
"pic_urls": [],
"annotations": [
{
"client_mblogid": "iPhone-7DA247BB-4013-461E-AEBA-154F02BCF141",
"shooting": 1
}
],
"in_reply_to_user_id": "",
"darwin_tags": [],
"favorited": false,
"idstr": "3793732283735778",
"source_type": 1,
"user": {
"bi_followers_count": 59,
"domain": "",
"avatar_large": "http://tp4.sinaimg.cn/2024171507/180/5709781103/1",
"verified_source": "",
"ptype": 0,
"statuses_count": 431,
"allow_all_comment": true,
"id": 2024171507,
"verified_reason_url": "",
"city": "2",
"province": "21",
"credit_score": 80,
"block_app": 0,
"follow_me": false,
"verified_reason": "",
"followers_count": 156,
"location": "辽宁 大连",
"verified_trade": "",
"mbtype": 0,
"verified_source_url": "",
"profile_url": "u/2024171507",
"block_word": 0,
"avatar_hd": "http://ww3.sinaimg.cn/crop.0.1.640.640.1024/78a667f3jw8elvcryq6guj20hs0hu3zc.jpg",
"star": 0,
"description": "顽皮的不得了",
"friends_count": 216,
"online_status": 1,
"mbrank": 0,
"idstr": "2024171507",
"profile_image_url": "http://tp4.sinaimg.cn/2024171507/50/5709781103/1",
"allow_all_act_msg": false,
"verified": false,
"geo_enabled": true,
"class": 1,
"screen_name": "铜锣烧cute",
"lang": "zh-cn",
"weihao": "",
"remark": "",
"favourites_count": 0,
"name": "铜锣烧cute",
"url": "",
"gender": "m",
"created_at": "Mon Mar 14 10:05:13 +0800 2011",
"verified_type": -1,
"following": false,
"pagefriends_count": 0,
"urank": 9
},
"geo": {
"type": "Point",
"coordinates": [
39.200699,
121.703697
]
},
"created_at": "Wed Dec 31 06:48:43 +0800 2014",
"mlevel": 0,
"comments_count": 0
},
{
"darwin_tags": [],
"favorited": false,
"source_type": 1,
"mid": "3793732283559313",
"in_reply_to_user_id": "",
"source": "<a href=\"http://app.weibo.com/t/feed/5TEfjh\" rel=\"nofollow\">秦时明月手游</a>",
"text": "《秦时明月》破秦兵百万,做秦时霸王! http://t.cn/RzOUQMy",
"created_at": "Wed Dec 31 06:48:42 +0800 2014",
"truncated": false,
"reposts_count": 0,
"idstr": "3793732283559313",
"visible": {
"type": 0,
"list_id": 0
},
"attitudes_count": 0,
"pic_urls": [],
"in_reply_to_screen_name": "",
"user": {
"bi_followers_count": 4,
"domain": "",
"avatar_large": "http://tp2.sinaimg.cn/2619339441/180/5624367727/1",
"verified_source": "",
"ptype": 0,
"statuses_count": 905,
"allow_all_comment": true,
"id": 2619339441,
"verified_reason_url": "",
"city": "2",
"province": "35",
"credit_score": 80,
"block_app": 0,
"follow_me": false,
"verified_reason": "",
"followers_count": 60,
"location": "福建 厦门",
"verified_trade": "",
"mbtype": 0,
"verified_source_url": "",
"profile_url": "u/2619339441",
"block_word": 0,
"avatar_hd": "http://tp2.sinaimg.cn/2619339441/180/5624367727/1",
"star": 0,
"description": "只是简简单单的,我爱你。",
"friends_count": 12,
"online_status": 0,
"mbrank": 0,
"idstr": "2619339441",
"profile_image_url": "http://tp2.sinaimg.cn/2619339441/50/5624367727/1",
"allow_all_act_msg": false,
"verified": false,
"geo_enabled": true,
"class": 1,
"screen_name": "将青衫隐去",
"lang": "zh-cn",
"weihao": "",
"remark": "",
"favourites_count": 0,
"name": "将青衫隐去",
"url": "",
"gender": "m",
"created_at": "Thu Feb 16 16:59:04 +0800 2012",
"verified_type": -1,
"following": false,
"pagefriends_count": 0,
"urank": 5
},
"in_reply_to_status_id": "",
"comments_count": 0,
"geo": null,
"id": 3793732283559313,
"mlevel": 0
},
{
"reposts_count": 0,
"truncated": false,
"text": "免费打电话的时代来了!用《呼应》怎么打电话都不花钱,长途、漫游、越洋毫无负担;一卡双号、一机多号,上网租房、交友、再也不怕暴露真实手机号码。注册时记得填写我的",
"visible": {
"type": 0,
"list_id": 0
},
"in_reply_to_status_id": "",
"bmiddle_pic": "http://ww2.sinaimg.cn/bmiddle/005TF4Bljw1ensh8v2056j308g0j6myn.jpg",
"id": 3793732283254744,
"thumbnail_pic": "http://ww2.sinaimg.cn/thumbnail/005TF4Bljw1ensh8v2056j308g0j6myn.jpg",
"mid": "3793732283254744",
"source": "<a href=\"http://app.weibo.com/t/feed/5yp2Iq\" rel=\"nofollow\">呼应免费网络电话</a>",
"attitudes_count": 0,
"in_reply_to_screen_name": "",
"pic_urls": [
{
"thumbnail_pic": "http://ww2.sinaimg.cn/thumbnail/005TF4Bljw1ensh8v2056j308g0j6myn.jpg"
}
],
"in_reply_to_user_id": "",
"darwin_tags": [],
"favorited": false,
"original_pic": "http://ww2.sinaimg.cn/large/005TF4Bljw1ensh8v2056j308g0j6myn.jpg",
"idstr": "3793732283254744",
"source_type": 1,
"user": {
"bi_followers_count": 1,
"domain": "",
"avatar_large": "http://tp4.sinaimg.cn/5403151779/180/0/1",
"verified_source": "",
"ptype": 0,
"statuses_count": 12,
"allow_all_comment": true,
"id": 5403151779,
"verified_reason_url": "",
"city": "14",
"province": "45",
"credit_score": 80,
"block_app": 0,
"follow_me": false,
"verified_reason": "",
"followers_count": 4,
"location": "广西 崇左",
"verified_trade": "",
"mbtype": 0,
"verified_source_url": "",
"profile_url": "u/5403151779",
"block_word": 0,
"avatar_hd": "http://tp4.sinaimg.cn/5403151779/180/0/1",
"star": 0,
"description": "",
"friends_count": 34,
"online_status": 0,
"mbrank": 0,
"idstr": "5403151779",
"profile_image_url": "http://tp4.sinaimg.cn/5403151779/50/0/1",
"allow_all_act_msg": false,
"verified": false,
"geo_enabled": true,
"class": 1,
"screen_name": "用户5403151779",
"lang": "zh-cn",
"weihao": "",
"remark": "",
"favourites_count": 0,
"name": "用户5403151779",
"url": "",
"gender": "m",
"created_at": "Sat Dec 06 19:41:09 +0800 2014",
"verified_type": -1,
"following": false,
"pagefriends_count": 0,
"urank": 4
},
"geo": null,
"created_at": "Wed Dec 31 06:48:43 +0800 2014",
"mlevel": 0,
"comments_count": 0
},
{
"reposts_count": 0,
"truncated": false,
"text": "#俏十岁#俏十岁面膜总部配货,一级批珂蜜丝、海洋之水招实力代理天使之魅系列,蓝莓#黛莱美#海洋水、玻尿酸、全能乳、薰衣草喷雾、玫瑰喷雾、DE洗面奶,,瑞女郎眼霜,金稻蒸脸机,金蹈瘦身仪、九朵云祛斑面霜、支持批发零售威-信;630788413礼品随机送!",
"visible": {
"type": 0,
"list_id": 0
},
"in_reply_to_status_id": "",
"bmiddle_pic": "http://ww2.sinaimg.cn/bmiddle/e70d2ee4gw1emoceixva4j20hs0qo40i.jpg",
"id": 3793732283254740,
"thumbnail_pic": "http://ww2.sinaimg.cn/thumbnail/e70d2ee4gw1emoceixva4j20hs0qo40i.jpg",
"mid": "3793732283254740",
"source": "<a href=\"http://app.weibo.com/t/feed/UDEWx\" rel=\"nofollow\">app梦工厂微博</a>",
"attitudes_count": 0,
"in_reply_to_screen_name": "",
"pic_urls": [
{
"thumbnail_pic": "http://ww2.sinaimg.cn/thumbnail/e70d2ee4gw1emoceixva4j20hs0qo40i.jpg"
},
{
"thumbnail_pic": "http://ww1.sinaimg.cn/thumbnail/e70d2ee4gw1emocejiku2j20jz0zkjsn.jpg"
},
{
"thumbnail_pic": "http://ww1.sinaimg.cn/thumbnail/e70d2ee4gw1emocejjwyfj20zk0qoju1.jpg"
},
{
"thumbnail_pic": "http://ww3.sinaimg.cn/thumbnail/e70d2ee4gw1emocek8gy1j20zk0qo418.jpg"
},
{
"thumbnail_pic": "http://ww2.sinaimg.cn/thumbnail/e70d2ee4gw1emocelqrwtj21kw0wuagv.jpg"
},
{
"thumbnail_pic": "http://ww1.sinaimg.cn/thumbnail/e70d2ee4gw1emocena22vj21kw3jztyf.jpg"
},
{
"thumbnail_pic": "http://ww3.sinaimg.cn/thumbnail/e70d2ee4gw1emocenzaadj20zk0hs0ve.jpg"
},
{
"thumbnail_pic": "http://ww2.sinaimg.cn/thumbnail/e70d2ee4gw1emoceobzhkj20ug0dwjvt.jpg"
},
{
"thumbnail_pic": "http://ww1.sinaimg.cn/thumbnail/e70d2ee4gw1emocep4hlqj218g0o9jyt.jpg"
}
],
"in_reply_to_user_id": "",
"darwin_tags": [],
"favorited": false,
"original_pic": "http://ww2.sinaimg.cn/large/e70d2ee4gw1emoceixva4j20hs0qo40i.jpg",
"idstr": "3793732283254740",
"source_type": 1,
"user": {
"bi_followers_count": 27,
"domain": "",
"avatar_large": "http://tp1.sinaimg.cn/3876400868/180/40037643626/1",
"verified_source": "",
"ptype": 0,
"statuses_count": 12018,
"id": 3876400868,
"verified_reason_url": "",
"city": "6",
"verified": true,
"friends_count": 161,
"verified_reason_modified": "",
"credit_score": 80,
"block_app": 0,
"follow_me": false,
"verified_reason": "湖北盐光能源科技有限公司销售经理",
"followers_count": 1282,
"location": "上海 静安区",
"verified_state": 0,
"verified_trade": "2349",
"mbtype": 0,
"verified_source_url": "",
"profile_url": "u/3876400868",
"block_word": 0,
"avatar_hd": "http://ww2.sinaimg.cn/crop.3.3.176.176.1024/e70d2ee4gw1ea0tw1gaaaj2050050glu.jpg",
"star": 0,
"description": "",
"verified_contact_email": "",
"online_status": 1,
"mbrank": 0,
"verified_level": 3,
"profile_image_url": "http://tp1.sinaimg.cn/3876400868/50/40037643626/1",
"idstr": "3876400868",
"verified_contact_mobile": "",
"allow_all_act_msg": false,
"allow_all_comment": true,
"geo_enabled": true,
"class": 1,
"screen_name": "fjdaslkflas",
"lang": "zh-cn",
"weihao": "",
"remark": "",
"favourites_count": 0,
"name": "fjdaslkflas",
"url": "",
"province": "31",
"created_at": "Mon Oct 28 13:22:58 +0800 2013",
"verified_contact_name": "",
"verified_type": 0,
"gender": "m",
"following": false,
"pagefriends_count": 0,
"urank": 6
},
"geo": null,
"created_at": "Wed Dec 31 06:48:43 +0800 2014",
"mlevel": 0,
"comments_count": 0
},
{
"reposts_count": 0,
"truncated": false,
"text": "我有想哭的感觉了,总觉得自己过得不好就是对不起父母,好想家",
"visible": {
"type": 0,
"list_id": 0
},
"in_reply_to_status_id": "",
"id": 3793732283254690,
"mid": "3793732283254690",
"source": "<a href=\"http://app.weibo.com/t/feed/1J95c3\" rel=\"nofollow\">红米手机</a>",
"attitudes_count": 0,
"in_reply_to_screen_name": "",
"pic_urls": [],
"annotations": [
{
"client_mblogid": "1b3553a6-21de-490c-9b96-ab7df84a8cba",
"shooting": 1
}
],
"in_reply_to_user_id": "",
"darwin_tags": [],
"favorited": false,
"idstr": "3793732283254690",
"source_type": 1,
"user": {
"bi_followers_count": 0,
"domain": "",
"avatar_large": "http://tp4.sinaimg.cn/5117036539/180/5693015251/0",
"verified_source": "",
"ptype": 0,
"statuses_count": 127,
"allow_all_comment": true,
"id": 5117036539,
"verified_reason_url": "",
"city": "1",
"province": "11",
"credit_score": 80,
"block_app": 0,
"follow_me": false,
"verified_reason": "",
"followers_count": 17,
"location": "北京 东城区",
"verified_trade": "",
"mbtype": 0,
"verified_source_url": "",
"profile_url": "u/5117036539",
"block_word": 0,
"avatar_hd": "http://ww3.sinaimg.cn/crop.0.0.720.720.1024/005AiyXpjw8efn0ifdnzhj30k00k0q3r.jpg",
"star": 0,
"description": "忍无可忍,无需再忍",
"friends_count": 0,
"online_status": 1,
"mbrank": 0,
"idstr": "5117036539",
"profile_image_url": "http://tp4.sinaimg.cn/5117036539/50/5693015251/0",
"allow_all_act_msg": false,
"verified": false,
"geo_enabled": true,
"class": 1,
"screen_name": "daydreamdreaming",
"lang": "zh-cn",
"weihao": "",
"remark": "",
"favourites_count": 0,
"name": "daydreamdreaming",
"url": "",
"gender": "f",
"created_at": "Mon Apr 21 10:26:01 +0800 2014",
"verified_type": -1,
"following": false,
"pagefriends_count": 0,
"urank": 8
},
"geo": null,
"created_at": "Wed Dec 31 06:48:43 +0800 2014",
"mlevel": 0,
"comments_count": 0
},
{
"reposts_count": 0,
"truncated": false,
"text": "今冬第一场雪 很想你",
"visible": {
"type": 0,
"list_id": 0
},
"in_reply_to_status_id": "",
"id": 3793732283254637,
"mid": "3793732283254637",
"source": "<a href=\"http://app.weibo.com/t/feed/3G5oUM\" rel=\"nofollow\">iPhone 5s</a>",
"attitudes_count": 0,
"in_reply_to_screen_name": "",
"pic_urls": [],
"annotations": [
{
"client_mblogid": "iPhone-4CD2DAC8-EBDA-4BAC-8CAF-F4C713F2436A",
"shooting": 1
}
],
"in_reply_to_user_id": "",
"darwin_tags": [],
"favorited": false,
"idstr": "3793732283254637",
"source_type": 1,
"user": {
"bi_followers_count": 48,
"domain": "qisebiluo",
"avatar_large": "http://tp2.sinaimg.cn/1874094033/180/5707114004/1",
"verified_source": "",
"ptype": 0,
"statuses_count": 1107,
"allow_all_comment": true,
"id": 1874094033,
"verified_reason_url": "",
"city": "7",
"province": "37",
"credit_score": 80,
"block_app": 0,
"follow_me": false,
"verified_reason": "",
"followers_count": 129,
"location": "山东 潍坊",
"verified_trade": "",
"mbtype": 0,
"verified_source_url": "",
"profile_url": "qisebiluo",
"block_word": 0,
"avatar_hd": "http://ww2.sinaimg.cn/crop.0.0.640.640.1024/6fb467d1jw8ekvo0e8jchj20hs0hsq3d.jpg",
"star": 0,
"description": "倾心相遇 安暖相陪",
"friends_count": 131,
"online_status": 1,
"mbrank": 0,
"idstr": "1874094033",
"profile_image_url": "http://tp2.sinaimg.cn/1874094033/50/5707114004/1",
"allow_all_act_msg": false,
"verified": false,
"geo_enabled": false,
"class": 1,
"screen_name": "七色碧落",
"lang": "zh-cn",
"weihao": "",
"remark": "",
"favourites_count": 96,
"name": "七色碧落",
"url": "",
"gender": "m",
"created_at": "Thu Nov 25 04:18:18 +0800 2010",
"verified_type": 220,
"following": false,
"pagefriends_count": 0,
"urank": 18
},
"geo": null,
"created_at": "Wed Dec 31 06:48:43 +0800 2014",
"mlevel": 0,
"comments_count": 0
},
{
"reposts_count": 0,
"truncated": false,
"text": "#我有话说#【北大教授:中国人仍未摆脱自卑感】 http://t.cn/RZy20mE ",
"visible": {
"type": 0,
"list_id": 0
},
"in_reply_to_status_id": "",
"bmiddle_pic": "http://ww1.sinaimg.cn/bmiddle/be11baa2jw1ensh8uu197j20c8070jrp.jpg",
"id": 3793732283254631,
"thumbnail_pic": "http://ww1.sinaimg.cn/thumbnail/be11baa2jw1ensh8uu197j20c8070jrp.jpg",
"mid": "3793732283254631",
"source": "<a href=\"http://app.weibo.com/t/feed/InlmV\" rel=\"nofollow\">新浪新闻评论</a>",
"attitudes_count": 0,
"in_reply_to_screen_name": "",
"pic_urls": [
{
"thumbnail_pic": "http://ww1.sinaimg.cn/thumbnail/be11baa2jw1ensh8uu197j20c8070jrp.jpg"
}
],
"in_reply_to_user_id": "",
"darwin_tags": [],
"favorited": false,
"original_pic": "http://ww1.sinaimg.cn/large/be11baa2jw1ensh8uu197j20c8070jrp.jpg",
"idstr": "3793732283254631",
"source_type": 1,
"user": {
"bi_followers_count": 962,
"domain": "",
"avatar_large": "http://tp3.sinaimg.cn/3188832930/180/22864838976/0",
"verified_source": "",
"ptype": 0,
"statuses_count": 15458,
"allow_all_comment": false,
"id": 3188832930,
"verified_reason_url": "",
"city": "7",
"province": "21",
"credit_score": 80,
"block_app": 0,
"follow_me": false,
"verified_reason": "",
"followers_count": 1446,
"location": "辽宁 锦州",
"verified_trade": "",
"mbtype": 0,
"verified_source_url": "",
"profile_url": "u/3188832930",
"block_word": 0,
"avatar_hd": "http://ww2.sinaimg.cn/crop.79.0.118.118.1024/be11baa2tw1ecncxvbphfj205k03a74e.jpg",
"star": 0,
"description": "",
"friends_count": 1983,
"online_status": 1,
"mbrank": 0,
"idstr": "3188832930",
"profile_image_url": "http://tp3.sinaimg.cn/3188832930/50/22864838976/0",
"allow_all_act_msg": false,
"verified": false,
"geo_enabled": true,
"class": 1,
"screen_name": "1962好运",
"lang": "zh-cn",
"weihao": "",
"remark": "",
"favourites_count": 38,
"name": "1962好运",
"url": "",
"gender": "f",
"created_at": "Thu Feb 14 08:01:38 +0800 2013",
"verified_type": -1,
"following": false,
"pagefriends_count": 1,
"urank": 17
},
"geo": null,
"created_at": "Wed Dec 31 06:48:43 +0800 2014",
"mlevel": 0,
"comments_count": 0
},
{
"reposts_count": 0,
"truncated": false,
"text": "【吃坚果】每天食用3个巴西坚果,因为它能提供有益于人体健康的硒元素。哈佛大学的研究人员发现,这与晚期前列腺癌的发病率降低48%之间,存在着一定的相关性。",
"visible": {
"type": 0,
"list_id": 0
},
"in_reply_to_status_id": "",
"bmiddle_pic": "http://ww1.sinaimg.cn/bmiddle/005ux1B9gw1ensh8ummcdj30c208z41l.jpg",
"id": 3793732283254546,
"thumbnail_pic": "http://ww1.sinaimg.cn/thumbnail/005ux1B9gw1ensh8ummcdj30c208z41l.jpg",
"mid": "3793732283254546",
"source": "<a href=\"http://weibo.com/\" rel=\"nofollow\">微博 weibo.com</a>",
"attitudes_count": 0,
"in_reply_to_screen_name": "",
"pic_urls": [
{
"thumbnail_pic": "http://ww1.sinaimg.cn/thumbnail/005ux1B9gw1ensh8ummcdj30c208z41l.jpg"
}
],
"in_reply_to_user_id": "",
"darwin_tags": [],
"favorited": false,
"original_pic": "http://ww1.sinaimg.cn/large/005ux1B9gw1ensh8ummcdj30c208z41l.jpg",
"idstr": "3793732283254546",
"source_type": 1,
"user": {
"bi_followers_count": 42,
"domain": "",
"avatar_large": "http://tp4.sinaimg.cn/5031825211/180/5703245412/0",
"verified_source": "",
"ptype": 0,
"statuses_count": 143,
"allow_all_comment": true,
"id": 5031825211,
"verified_reason_url": "",
"city": "1",
"province": "45",
"credit_score": 80,
"block_app": 0,
"follow_me": false,
"verified_reason": "",
"followers_count": 225,
"location": "广西 南宁",
"verified_trade": "",
"mbtype": 0,
"verified_source_url": "",
"profile_url": "234893219",
"block_word": 0,
"avatar_hd": "http://ww1.sinaimg.cn/crop.0.0.440.440.1024/005ux1B9jw1ejfwh2u2xrj30c80c80tq.jpg",
"star": 0,
"description": "任何业绩的质变都来自于量变的积累。",
"friends_count": 307,
"online_status": 1,
"mbrank": 0,
"idstr": "5031825211",
"profile_image_url": "http://tp4.sinaimg.cn/5031825211/50/5703245412/0",
"allow_all_act_msg": false,
"verified": false,
"geo_enabled": true,
"class": 1,
"screen_name": "y小bbb巧",
"lang": "zh-cn",
"weihao": "234893219",
"remark": "",
"favourites_count": 0,
"name": "y小bbb巧",
"url": "",
"gender": "f",
"created_at": "Sun Feb 09 19:38:51 +0800 2014",
"verified_type": -1,
"following": false,
"pagefriends_count": 0,
"urank": 7
},
"geo": null,
"created_at": "Wed Dec 31 06:48:43 +0800 2014",
"mlevel": 0,
"comments_count": 0
},
{
"reposts_count": 0,
"truncated": false,
"text": "[酷]链 接:http://t.cn/RzsmA7Q",
"visible": {
"type": 0,
"list_id": 0
},
"in_reply_to_status_id": "",
"bmiddle_pic": "http://ww2.sinaimg.cn/bmiddle/e64ab084jw1elitanldwpj20j40g1wgm.jpg",
"id": 3793732283254491,
"thumbnail_pic": "http://ww2.sinaimg.cn/thumbnail/e64ab084jw1elitanldwpj20j40g1wgm.jpg",
"mid": "3793732283254491",
"source": "<a href=\"http://app.weibo.com/t/feed/63af84\" rel=\"nofollow\">vivo智能手机</a>",
"attitudes_count": 0,
"in_reply_to_screen_name": "",
"pic_urls": [
{
"thumbnail_pic": "http://ww2.sinaimg.cn/thumbnail/e64ab084jw1elitanldwpj20j40g1wgm.jpg"
},
{
"thumbnail_pic": "http://ww4.sinaimg.cn/thumbnail/e64ab084jw1elitate7jdj20j60g876t.jpg"
},
{
"thumbnail_pic": "http://ww3.sinaimg.cn/thumbnail/e64ab084jw1elitazt5ecj20j50b4ta9.jpg"
},
{
"thumbnail_pic": "http://ww4.sinaimg.cn/thumbnail/e64ab084jw1elitb4q1eyj20jb0amdho.jpg"
},
{
"thumbnail_pic": "http://ww1.sinaimg.cn/thumbnail/e64ab084jw1elitaenvisj20j80gmdis.jpg"
},
{
"thumbnail_pic": "http://ww4.sinaimg.cn/thumbnail/e64ab084jw1elitb9jxmij20jo0cy0ut.jpg"
},
{
"thumbnail_pic": "http://ww3.sinaimg.cn/thumbnail/e64ab084jw1elitbf39o3j20jo0cy0uh.jpg"
},
{
"thumbnail_pic": "http://ww2.sinaimg.cn/thumbnail/e64ab084jw1elitbtehxaj20j20g20um.jpg"
},
{
"thumbnail_pic": "http://ww3.sinaimg.cn/thumbnail/e64ab084jw1elitbka5gxj20er0dnac3.jpg"
}
],
"in_reply_to_user_id": "",
"darwin_tags": [],
"favorited": false,
"original_pic": "http://ww2.sinaimg.cn/large/e64ab084jw1elitanldwpj20j40g1wgm.jpg",
"idstr": "3793732283254491",
"source_type": 1,
"user": {
"bi_followers_count": 4,
"domain": "",
"avatar_large": "http://tp2.sinaimg.cn/5136806301/180/5694951266/0",
"verified_source": "",
"ptype": 0,
"statuses_count": 2294,
"allow_all_comment": true,
"id": 5136806301,
"verified_reason_url": "",
"city": "1000",
"province": "11",
"credit_score": 80,
"block_app": 0,
"follow_me": false,
"verified_reason": "",
"followers_count": 128,
"location": "北京",
"verified_trade": "",
"mbtype": 0,
"verified_source_url": "",
"profile_url": "u/5136806301",
"block_word": 0,
"avatar_hd": "http://ww3.sinaimg.cn/crop.0.0.200.200.1024/005BDvYxjw1egcx3wng44j305k05k748.jpg",
"star": 0,
"description": "",
"friends_count": 385,
"online_status": 0,
"mbrank": 0,
"idstr": "5136806301",
"profile_image_url": "http://tp2.sinaimg.cn/5136806301/50/5694951266/0",
"allow_all_act_msg": false,
"verified": false,
"geo_enabled": true,
"class": 1,
"screen_name": "屋檐下的多思",
"lang": "zh-cn",
"weihao": "",
"remark": "",
"favourites_count": 0,
"name": "屋檐下的多思",
"url": "",
"gender": "f",
"created_at": "Sat May 10 17:10:49 +0800 2014",
"verified_type": -1,
"following": false,
"pagefriends_count": 0,
"urank": 7
},
"geo": null,
"created_at": "Wed Dec 31 06:48:42 +0800 2014",
"mlevel": 0,
"comments_count": 0
},
{
"reposts_count": 0,
"truncated": false,
"text": "[困][困][困死了][困死了]2014最后一天,好困啊,下午考完后来个开开心心的跨年,嘻嘻o(∩_∩)o http://t.cn/z8At3vf",
"visible": {
"type": 0,
"list_id": 0
},
"in_reply_to_status_id": "",
"id": 3793732283254430,
"mid": "3793732283254430",
"source": "<a href=\"http://app.weibo.com/t/feed/2trInO\" rel=\"nofollow\">红米Note 4G</a>",
"attitudes_count": 0,
"in_reply_to_screen_name": "",
"pic_urls": [],
"annotations": [
{
"client_mblogid": "ef82358e-c60b-45cf-b48f-ca913a755b18",
"shooting": 1,
"place": {
"lat": 39.908077,
"lon": 119.518447,
"type": "checkin",
"poiid": "B2094750D565A3FE4198",
"title": "燕山帝国大学里仁皇家学院"
}
}
],
"in_reply_to_user_id": "",
"darwin_tags": [],
"favorited": false,
"idstr": "3793732283254430",
"source_type": 1,
"user": {
"bi_followers_count": 8,
"domain": "",
"avatar_large": "http://tp2.sinaimg.cn/5086661473/180/5690804951/0",
"verified_source": "",
"ptype": 0,
"statuses_count": 145,
"allow_all_comment": true,
"id": 5086661473,
"verified_reason_url": "",
"city": "3",
"province": "13",
"credit_score": 80,
"block_app": 0,
"follow_me": false,
"verified_reason": "",
"followers_count": 29,
"location": "河北 秦皇岛",
"verified_trade": "",
"mbtype": 0,
"verified_source_url": "",
"profile_url": "u/5086661473",
"block_word": 0,
"avatar_hd": "http://ww4.sinaimg.cn/crop.0.0.480.480.1024/005yf70Zjw8eetfsg144wj30dc0dc74t.jpg",
"star": 0,
"description": "O(∩_∩)O~~(∩_∩)",
"friends_count": 36,
"online_status": 1,
"mbrank": 0,
"idstr": "5086661473",
"profile_image_url": "http://tp2.sinaimg.cn/5086661473/50/5690804951/0",
"allow_all_act_msg": false,
"verified": false,
"geo_enabled": true,
"class": 1,
"screen_name": "笨蛋傻瓜猪兔子",
"lang": "zh-cn",
"weihao": "",
"remark": "",
"favourites_count": 25,
"name": "笨蛋傻瓜猪兔子",
"url": "",
"gender": "f",
"created_at": "Wed Mar 26 20:13:32 +0800 2014",
"verified_type": -1,
"following": false,
"pagefriends_count": 1,
"urank": 5
},
"geo": {
"type": "Point",
"coordinates": [
39.908077,
119.518447
]
},
"created_at": "Wed Dec 31 06:48:43 +0800 2014",
"mlevel": 0,
"comments_count": 0
},
{
"darwin_tags": [],
"favorited": false,
"source_type": 1,
"mid": "3793732283254314",
"in_reply_to_user_id": "",
"source": "<a href=\"http://weibo.com/\" rel=\"nofollow\">微博 weibo.com</a>",
"text": "【WORD小窍门】输入三个“=”,回车,得到一条双直线;输入三个“~”,回车,得到一条波浪线;输入三个“”,回车,得到一条虚线;输入三个“-”,回车,得到一条直线;输入三个“#”,回车,得到一条隔行线。",
"created_at": "Wed Dec 31 06:48:43 +0800 2014",
"truncated": false,
"reposts_count": 0,
"idstr": "3793732283254314",
"visible": {
"type": 0,
"list_id": 0
},
"attitudes_count": 1,
"pic_urls": [],
"in_reply_to_screen_name": "",
"user": {
"bi_followers_count": 2,
"domain": "",
"avatar_large": "http://tp4.sinaimg.cn/2830866527/180/5637478129/0",
"verified_source": "",
"ptype": 0,
"statuses_count": 175,
"allow_all_comment": true,
"id": 2830866527,
"verified_reason_url": "",
"city": "8",
"province": "36",
"credit_score": 80,
"block_app": 0,
"follow_me": false,
"verified_reason": "",
"followers_count": 153,
"location": "江西 吉安",
"verified_trade": "",
"mbtype": 0,
"verified_source_url": "",
"profile_url": "u/2830866527",
"block_word": 0,
"avatar_hd": "http://tp4.sinaimg.cn/2830866527/180/5637478129/0",
"star": 0,
"description": "赢得友谊要靠智慧,保持友谊要靠美德,这两者是同等重要的",
"friends_count": 786,
"online_status": 0,
"mbrank": 0,
"idstr": "2830866527",
"profile_image_url": "http://tp4.sinaimg.cn/2830866527/50/5637478129/0",
"allow_all_act_msg": false,
"verified": false,
"geo_enabled": true,
"class": 1,
"screen_name": "克劳德您有喜了",
"lang": "zh-cn",
"weihao": "",
"remark": "",
"favourites_count": 0,
"name": "克劳德您有喜了",
"url": "",
"gender": "f",
"created_at": "Sun Jun 24 23:30:22 +0800 2012",
"verified_type": -1,
"following": false,
"pagefriends_count": 0,
"urank": 3
},
"in_reply_to_status_id": "",
"comments_count": 0,
"geo": null,
"id": 3793732283254314,
"mlevel": 0
},
{
"reposts_count": 0,
"truncated": false,
"text": "[lm暴雨汗] 链 接:http://t.cn/Rzsud5m",
"visible": {
"type": 0,
"list_id": 0
},
"in_reply_to_status_id": "",
"bmiddle_pic": "http://ww4.sinaimg.cn/bmiddle/e64ab084gw1enlak0qmcgj20aq0fwwh9.jpg",
"id": 3793732282975929,
"thumbnail_pic": "http://ww4.sinaimg.cn/thumbnail/e64ab084gw1enlak0qmcgj20aq0fwwh9.jpg",
"mid": "3793732282975929",
"source": "<a href=\"http://app.weibo.com/t/feed/63af84\" rel=\"nofollow\">vivo智能手机</a>",
"attitudes_count": 0,
"in_reply_to_screen_name": "",
"pic_urls": [
{
"thumbnail_pic": "http://ww4.sinaimg.cn/thumbnail/e64ab084gw1enlak0qmcgj20aq0fwwh9.jpg"
}
],
"in_reply_to_user_id": "",
"darwin_tags": [],
"favorited": false,
"original_pic": "http://ww4.sinaimg.cn/large/e64ab084gw1enlak0qmcgj20aq0fwwh9.jpg",
"idstr": "3793732282975929",
"source_type": 1,
"user": {
"bi_followers_count": 4,
"domain": "",
"avatar_large": "http://tp2.sinaimg.cn/5138952301/180/5694951160/0",
"verified_source": "",
"ptype": 0,
"statuses_count": 2298,
"allow_all_comment": true,
"id": 5138952301,
"verified_reason_url": "",
"city": "1000",
"province": "11",
"credit_score": 80,
"block_app": 0,
"follow_me": false,
"verified_reason": "",
"followers_count": 93,
"location": "北京",
"verified_trade": "",
"mbtype": 0,
"verified_source_url": "",
"profile_url": "u/5138952301",
"block_word": 0,
"avatar_hd": "http://ww2.sinaimg.cn/crop.0.0.170.170.1024/005BMwfrjw1egcx22f132j304q04q0sm.jpg",
"star": 0,
"description": "",
"friends_count": 416,
"online_status": 0,
"mbrank": 0,
"idstr": "5138952301",
"profile_image_url": "http://tp2.sinaimg.cn/5138952301/50/5694951160/0",
"allow_all_act_msg": false,
"verified": false,
"geo_enabled": true,
"class": 1,
"screen_name": "屋檐下的子宁",
"lang": "zh-cn",
"weihao": "",
"remark": "",
"favourites_count": 0,
"name": "屋檐下的子宁",
"url": "",
"gender": "f",
"created_at": "Sat May 10 17:04:43 +0800 2014",
"verified_type": -1,
"following": false,
"pagefriends_count": 0,
"urank": 7
},
"geo": null,
"created_at": "Wed Dec 31 06:48:43 +0800 2014",
"mlevel": 0,
"comments_count": 0
},
{
"reposts_count": 0,
"truncated": false,
"text": "[xb奸笑] 地 址:http://t.cn/Rzsn37w",
"visible": {
"type": 0,
"list_id": 0
},
"in_reply_to_status_id": "",
"bmiddle_pic": "http://ww4.sinaimg.cn/bmiddle/e64ab084jw1em0371hcrnj20dv0du0ud.jpg",
"id": 3793732282975810,
"thumbnail_pic": "http://ww4.sinaimg.cn/thumbnail/e64ab084jw1em0371hcrnj20dv0du0ud.jpg",
"mid": "3793732282975810",
"source": "<a href=\"http://app.weibo.com/t/feed/63af84\" rel=\"nofollow\">vivo智能手机</a>",
"attitudes_count": 0,
"in_reply_to_screen_name": "",
"pic_urls": [
{
"thumbnail_pic": "http://ww4.sinaimg.cn/thumbnail/e64ab084jw1em0371hcrnj20dv0du0ud.jpg"
},
{
"thumbnail_pic": "http://ww4.sinaimg.cn/thumbnail/e64ab084jw1em0373psg2j20980dsmyj.jpg"
},
{
"thumbnail_pic": "http://ww1.sinaimg.cn/thumbnail/e64ab084jw1em03790zt1j20km0dr0vs.jpg"
},
{
"thumbnail_pic": "http://ww3.sinaimg.cn/thumbnail/e64ab084jw1em037dpkqaj20kn0dtabx.jpg"
},
{
"thumbnail_pic": "http://ww3.sinaimg.cn/thumbnail/e64ab084jw1em037xiv7fj20980dqab8.jpg"
},
{
"thumbnail_pic": "http://ww4.sinaimg.cn/thumbnail/e64ab084jw1em037hn4euj20kp0ds40h.jpg"
},
{
"thumbnail_pic": "http://ww3.sinaimg.cn/thumbnail/e64ab084jw1em037pjql5j20kn0drjtp.jpg"
},
{
"thumbnail_pic": "http://ww2.sinaimg.cn/thumbnail/e64ab084jw1em0382o4qkj20ku0dl412.jpg"
},
{
"thumbnail_pic": "http://ww3.sinaimg.cn/thumbnail/e64ab084jw1em037v15zrj20km0dtwgc.jpg"
}
],
"in_reply_to_user_id": "",
"darwin_tags": [],
"favorited": false,
"original_pic": "http://ww4.sinaimg.cn/large/e64ab084jw1em0371hcrnj20dv0du0ud.jpg",
"idstr": "3793732282975810",
"source_type": 1,
"user": {
"bi_followers_count": 5,
"domain": "",
"avatar_large": "http://tp3.sinaimg.cn/5230856542/180/5701204919/0",
"verified_source": "",
"ptype": 0,
"statuses_count": 1632,
"allow_all_comment": true,
"id": 5230856542,
"verified_reason_url": "",
"city": "1000",
"province": "100",
"credit_score": 80,
"block_app": 0,
"follow_me": false,
"verified_reason": "",
"followers_count": 47,
"location": "其他",
"verified_trade": "",
"mbtype": 0,
"verified_source_url": "",
"profile_url": "u/5230856542",
"block_word": 0,
"avatar_hd": "http://ww3.sinaimg.cn/crop.0.0.170.170.1024/005I08JUjw1eioljtaoxfj304q04qmx0.jpg",
"star": 0,
"description": "",
"friends_count": 1448,
"online_status": 0,
"mbrank": 0,
"idstr": "5230856542",
"profile_image_url": "http://tp3.sinaimg.cn/5230856542/50/5701204919/0",
"allow_all_act_msg": false,
"verified": false,
"geo_enabled": true,
"class": 1,
"screen_name": "小女人恨竹",
"lang": "zh-cn",
"weihao": "",
"remark": "",
"favourites_count": 0,
"name": "小女人恨竹",
"url": "",
"gender": "f",
"created_at": "Thu Jul 24 20:12:16 +0800 2014",
"verified_type": -1,
"following": false,
"pagefriends_count": 0,
"urank": 7
},
"geo": null,
"created_at": "Wed Dec 31 06:48:43 +0800 2014",
"mlevel": 0,
"comments_count": 0
},
{
"reposts_count": 0,
"truncated": false,
"text": "分享图片",
"visible": {
"type": 0,
"list_id": 0
},
"in_reply_to_status_id": "",
"bmiddle_pic": "http://ww2.sinaimg.cn/bmiddle/005MILQLjw1emqa8wgpljj30ms6wy1g6.jpg",
"id": 3793732279540605,
"thumbnail_pic": "http://ww2.sinaimg.cn/thumbnail/005MILQLjw1emqa8wgpljj30ms6wy1g6.jpg",
"mid": "3793732279540605",
"source": "<a href=\"http://app.weibo.com/t/feed/63af84\" rel=\"nofollow\">vivo智能手机</a>",
"attitudes_count": 0,
"in_reply_to_screen_name": "",
"pic_urls": [
{
"thumbnail_pic": "http://ww2.sinaimg.cn/thumbnail/005MILQLjw1emqa8wgpljj30ms6wy1g6.jpg"
}
],
"in_reply_to_user_id": "",
"darwin_tags": [],
"favorited": false,
"original_pic": "http://ww2.sinaimg.cn/large/005MILQLjw1emqa8wgpljj30ms6wy1g6.jpg",
"idstr": "3793732279540605",
"source_type": 1,
"user": {
"bi_followers_count": 0,
"domain": "",
"avatar_large": "http://tp4.sinaimg.cn/5259234831/180/5711238263/0",
"verified_source": "",
"ptype": 0,
"statuses_count": 26,
"allow_all_comment": true,
"id": 5259234831,
"verified_reason_url": "",
"city": "1000",
"province": "31",
"credit_score": 80,
"block_app": 0,
"follow_me": false,
"verified_reason": "",
"followers_count": 2,
"location": "上海",
"verified_trade": "",
"mbtype": 0,
"verified_source_url": "",
"profile_url": "u/5259234831",
"block_word": 0,
"avatar_hd": "http://ww4.sinaimg.cn/crop.0.0.200.200.1024/005JVdefjw1emeupcssy0j305k05kq32.jpg",
"star": 0,
"description": "",
"friends_count": 14,
"online_status": 0,
"mbrank": 0,
"idstr": "5259234831",
"profile_image_url": "http://tp4.sinaimg.cn/5259234831/50/5711238263/0",
"allow_all_act_msg": false,
"verified": false,
"geo_enabled": true,
"class": 1,
"screen_name": "萌萌哒江美美",
"lang": "zh-cn",
"weihao": "",
"remark": "",
"favourites_count": 0,
"name": "萌萌哒江美美",
"url": "",
"gender": "f",
"created_at": "Wed Oct 29 17:20:59 +0800 2014",
"verified_type": -1,
"following": false,
"pagefriends_count": 0,
"urank": 4
},
"geo": null,
"created_at": "Wed Dec 31 06:48:41 +0800 2014",
"mlevel": 0,
"comments_count": 0
},
{
"reposts_count": 0,
"truncated": false,
"text": "[km幺鸡猫]CXP瞳瞳:http://t.cn/R7k0iqU [萌萌甩帽]KLS丢丢:http://t.cn/R7k0iq2",
"visible": {
"type": 0,
"list_id": 0
},
"in_reply_to_status_id": "",
"bmiddle_pic": "http://ww3.sinaimg.cn/bmiddle/005ygOButw1elkwfly2nbj30890b23z3.jpg",
"id": 3793732279364911,
"thumbnail_pic": "http://ww3.sinaimg.cn/thumbnail/005ygOButw1elkwfly2nbj30890b23z3.jpg",
"mid": "3793732279364911",
"source": "<a href=\"http://app.weibo.com/t/feed/6pwitf\" rel=\"nofollow\">360安全平台</a>",
"attitudes_count": 0,
"in_reply_to_screen_name": "",
"pic_urls": [
{
"thumbnail_pic": "http://ww3.sinaimg.cn/thumbnail/005ygOButw1elkwfly2nbj30890b23z3.jpg"
},
{
"thumbnail_pic": "http://ww2.sinaimg.cn/thumbnail/005ygOButw1elkwfm438yj308a0b3gm8.jpg"
},
{
"thumbnail_pic": "http://ww4.sinaimg.cn/thumbnail/005ygOButw1elkwfma67lj308c0b274r.jpg"
},
{
"thumbnail_pic": "http://ww4.sinaimg.cn/thumbnail/005ygOButw1elkwfmi8ccj30az0b3gmo.jpg"
},
{
"thumbnail_pic": "http://ww1.sinaimg.cn/thumbnail/005ygOButw1elkwfmq41zj30ay0b20tm.jpg"
},
{
"thumbnail_pic": "http://ww3.sinaimg.cn/thumbnail/005ygOButw1elkwfn0dzcj30b20b1q42.jpg"
},
{
"thumbnail_pic": "http://ww4.sinaimg.cn/thumbnail/005ygOButw1elkwfnegxxj30b00aywfd.jpg"
},
{
"thumbnail_pic": "http://ww1.sinaimg.cn/thumbnail/005ygOButw1elkwfnkg5vj308a0b3jrx.jpg"
},
{
"thumbnail_pic": "http://ww4.sinaimg.cn/thumbnail/005ygOButw1elkwfnprs3j308a0b3wf4.jpg"
}
],
"in_reply_to_user_id": "",
"darwin_tags": [],
"favorited": false,
"original_pic": "http://ww3.sinaimg.cn/large/005ygOButw1elkwfly2nbj30890b23z3.jpg",
"idstr": "3793732279364911",
"source_type": 1,
"user": {
"bi_followers_count": 147,
"domain": "",
"avatar_large": "http://tp1.sinaimg.cn/5089335040/180/5691443817/0",
"verified_source": "",
"ptype": 0,
"statuses_count": 4533,
"allow_all_comment": true,
"id": 5089335040,
"verified_reason_url": "",
"city": "2",
"province": "65",
"credit_score": 80,
"block_app": 0,
"follow_me": false,
"verified_reason": "",
"followers_count": 230,
"location": "新疆 克拉玛依",
"verified_trade": "",
"mbtype": 0,
"verified_source_url": "",
"profile_url": "u/5089335040",
"block_word": 0,
"avatar_hd": "http://ww4.sinaimg.cn/crop.0.0.200.200.1024/005yqkx2jw1ef1zjdesuxj305k05kwet.jpg",
"star": 0,
"description": "",
"friends_count": 1704,
"online_status": 0,
"mbrank": 0,
"idstr": "5089335040",
"profile_image_url": "http://tp1.sinaimg.cn/5089335040/50/5691443817/0",
"allow_all_act_msg": false,
"verified": false,
"geo_enabled": true,
"class": 1,
"screen_name": "畅茜强熠昌蓓辉ng6k",
"lang": "zh-cn",
"weihao": "",
"remark": "",
"favourites_count": 0,
"name": "畅茜强熠昌蓓辉ng6k",
"url": "",
"gender": "f",
"created_at": "Mon Mar 31 04:45:43 +0800 2014",
"verified_type": -1,
"following": false,
"pagefriends_count": 0,
"urank": 8
},
"geo": null,
"created_at": "Wed Dec 31 06:48:42 +0800 2014",
"mlevel": 0,
"comments_count": 0
},
{
"reposts_count": 0,
"truncated": false,
"text": "博贺朋友说明天回去给他电话,我已经开始幻想博贺的美食啦[花心]胖子朋友就是赞@陈家老五V http://t.cn/z8AHLm0",
"visible": {
"type": 0,
"list_id": 0
},
"in_reply_to_status_id": "",
"id": 3793732279059909,
"mid": "3793732279059909",
"source": "<a href=\"http://app.weibo.com/t/feed/c66T5g\" rel=\"nofollow\">Android客户端</a>",
"attitudes_count": 1,
"in_reply_to_screen_name": "",
"pic_urls": [],
"annotations": [
{
"client_mblogid": "c9e4ec64-3467-462c-ac37-6bbcd19ec28a",
"shooting": 1,
"place": {
"lat": 21.54285,
"lon": 111.00405,
"type": "checkin",
"poiid": "B2094652D664A0F9499C",
"title": "电白县实验中学"
}
}
],
"in_reply_to_user_id": "",
"darwin_tags": [],
"favorited": false,
"idstr": "3793732279059909",
"source_type": 1,
"user": {
"bi_followers_count": 51,
"domain": "",
"avatar_large": "http://tp2.sinaimg.cn/1814136977/180/5712792826/0",
"verified_source": "",
"ptype": 0,
"cover_image_phone": "http://ww1.sinaimg.cn/crop.0.0.0.640.640/6ce2240djw1e9uwtyezgfj20hs0hstb7.jpg",
"statuses_count": 172,
"id": 1814136977,
"verified_reason_url": "",
"city": "9",
"verified": false,
"credit_score": 80,
"block_app": 0,
"follow_me": false,
"verified_reason": "",
"followers_count": 118,
"location": "广东 茂名",
"verified_trade": "",
"mbtype": 0,
"verified_source_url": "",
"profile_url": "u/1814136977",
"block_word": 0,
"avatar_hd": "http://ww4.sinaimg.cn/crop.0.0.720.720.1024/6c218891jw8emznjuf9e3j20k00k0myb.jpg",
"star": 0,
"description": "我想安安静静的过每一天,我很清楚自己是什么样的人。朋友不多,让我爱上孤独。我是个孤独的妹子",
"friends_count": 136,
"online_status": 1,
"mbrank": 0,
"idstr": "1814136977",
"profile_image_url": "http://tp2.sinaimg.cn/1814136977/50/5712792826/0",
"allow_all_act_msg": false,
"allow_all_comment": true,
"geo_enabled": true,
"class": 1,
"screen_name": "Juan_张国琼",
"lang": "zh-cn",
"weihao": "",
"remark": "",
"favourites_count": 63,
"name": "Juan_张国琼",
"url": "",
"province": "44",
"created_at": "Tue Sep 07 19:10:48 +0800 2010",
"verified_type": -1,
"gender": "f",
"following": false,
"pagefriends_count": 0,
"urank": 9
},
"geo": {
"type": "Point",
"coordinates": [
21.54285,
111.00405
]
},
"created_at": "Wed Dec 31 06:48:42 +0800 2014",
"mlevel": 0,
"comments_count": 0
},
{
"reposts_count": 0,
"truncated": false,
"text": "发表了博文《9种人多喝酸奶好处多》 乳糖不耐受者。牛奶中的乳糖是导致喝牛奶腹泻的“元凶”。在牛奶发酵成为酸奶的过程中,乳糖部分变成乳酸和其他有机酸,因此会减少“乳糖不耐受”的问题。另外,乳酸菌本身也http://t.cn/RZyixXZ",
"visible": {
"type": 0,
"list_id": 0
},
"in_reply_to_status_id": "",
"id": 3793732279059894,
"mid": "3793732279059894",
"source": "<a href=\"http://app.weibo.com/t/feed/2Bvk1e\" rel=\"nofollow\">新浪博客</a>",
"attitudes_count": 0,
"in_reply_to_screen_name": "",
"pic_urls": [],
"annotations": [
{
"app_mid": "4c6abfe20102va9x",
"push_cmt": 2
}
],
"in_reply_to_user_id": "",
"darwin_tags": [],
"favorited": false,
"idstr": "3793732279059894",
"source_type": 1,
"user": {
"bi_followers_count": 0,
"domain": "",
"avatar_large": "http://tp3.sinaimg.cn/1282064354/180/0/1",
"verified_source": "",
"ptype": 0,
"statuses_count": 43,
"allow_all_comment": true,
"id": 1282064354,
"verified_reason_url": "",
"city": "2",
"province": "22",
"credit_score": 80,
"block_app": 0,
"follow_me": false,
"verified_reason": "",
"followers_count": 11,
"location": "吉林 吉林",
"verified_trade": "",
"mbtype": 0,
"verified_source_url": "",
"profile_url": "u/1282064354",
"block_word": 0,
"avatar_hd": "http://tp3.sinaimg.cn/1282064354/180/0/1",
"star": 0,
"description": "",
"friends_count": 17,
"online_status": 0,
"mbrank": 0,
"idstr": "1282064354",
"profile_image_url": "http://tp3.sinaimg.cn/1282064354/50/0/1",
"allow_all_act_msg": false,
"verified": false,
"geo_enabled": true,
"class": 1,
"screen_name": "孙氏乱语",
"lang": "zh-cn",
"weihao": "",
"remark": "",
"favourites_count": 0,
"name": "孙氏乱语",
"url": "",
"gender": "m",
"created_at": "Sat Jul 30 07:09:46 +0800 2011",
"verified_type": -1,
"following": false,
"pagefriends_count": 0,
"urank": 5
},
"geo": null,
"created_at": "Wed Dec 31 06:48:42 +0800 2014",
"mlevel": 0,
"comments_count": 0
},
{
"reposts_count": 0,
"truncated": false,
"text": "[悠嘻猴拍照]链 接:http://t.cn/RZy2v9M",
"visible": {
"type": 0,
"list_id": 0
},
"in_reply_to_status_id": "",
"bmiddle_pic": "http://ww1.sinaimg.cn/bmiddle/e64ab084gw1ens62en8nqj20c808f3zd.jpg",
"id": 3793732279059885,
"thumbnail_pic": "http://ww1.sinaimg.cn/thumbnail/e64ab084gw1ens62en8nqj20c808f3zd.jpg",
"mid": "3793732279059885",
"source": "<a href=\"http://app.weibo.com/t/feed/63af84\" rel=\"nofollow\">vivo智能手机</a>",
"attitudes_count": 0,
"in_reply_to_screen_name": "",
"pic_urls": [
{
"thumbnail_pic": "http://ww1.sinaimg.cn/thumbnail/e64ab084gw1ens62en8nqj20c808f3zd.jpg"
},
{
"thumbnail_pic": "http://ww1.sinaimg.cn/thumbnail/e64ab084gw1ens62h65y1j20c808gt9j.jpg"
},
{
"thumbnail_pic": "http://ww3.sinaimg.cn/thumbnail/e64ab084gw1ens62igpq4j20c80b276c.jpg"
},
{
"thumbnail_pic": "http://ww3.sinaimg.cn/thumbnail/e64ab084gw1ens62kyh3yj20c808s3z9.jpg"
},
{
"thumbnail_pic": "http://ww1.sinaimg.cn/thumbnail/e64ab084gw1ens62t0qubj20c00emgo4.jpg"
},
{
"thumbnail_pic": "http://ww2.sinaimg.cn/thumbnail/e64ab084gw1ens62uhwxyj20c80820tr.jpg"
},
{
"thumbnail_pic": "http://ww1.sinaimg.cn/thumbnail/e64ab084gw1ens62vh87ej20c809tdgr.jpg"
},
{
"thumbnail_pic": "http://ww3.sinaimg.cn/thumbnail/e64ab084gw1ens62y2txlj20c8088q3v.jpg"
},
{
"thumbnail_pic": "http://ww1.sinaimg.cn/thumbnail/e64ab084gw1ens631qiwnj20c8085dh6.jpg"
}
],
"in_reply_to_user_id": "",
"darwin_tags": [],
"favorited": false,
"original_pic": "http://ww1.sinaimg.cn/large/e64ab084gw1ens62en8nqj20c808f3zd.jpg",
"idstr": "3793732279059885",
"source_type": 1,
"user": {
"bi_followers_count": 8,
"domain": "",
"avatar_large": "http://tp4.sinaimg.cn/5139146615/180/5694951098/0",
"verified_source": "",
"ptype": 0,
"statuses_count": 2303,
"allow_all_comment": true,
"id": 5139146615,
"verified_reason_url": "",
"city": "1000",
"province": "11",
"credit_score": 80,
"block_app": 0,
"follow_me": false,
"verified_reason": "",
"followers_count": 98,
"location": "北京",
"verified_trade": "",
"mbtype": 0,
"verified_source_url": "",
"profile_url": "u/5139146615",
"block_word": 0,
"avatar_hd": "http://ww4.sinaimg.cn/crop.0.0.170.170.1024/005BNkNxjw1egcx0zmrsuj304q04q0sl.jpg",
"star": 0,
"description": "",
"friends_count": 473,
"online_status": 0,
"mbrank": 0,
"idstr": "5139146615",
"profile_image_url": "http://tp4.sinaimg.cn/5139146615/50/5694951098/0",
"allow_all_act_msg": false,
"verified": false,
"geo_enabled": true,
"class": 1,
"screen_name": "屋檐下的寒荷",
"lang": "zh-cn",
"weihao": "",
"remark": "",
"favourites_count": 0,
"name": "屋檐下的寒荷",
"url": "",
"gender": "f",
"created_at": "Sat May 10 16:34:24 +0800 2014",
"verified_type": -1,
"following": false,
"pagefriends_count": 0,
"urank": 7
},
"geo": null,
"created_at": "Wed Dec 31 06:48:42 +0800 2014",
"mlevel": 0,
"comments_count": 0
},
{
"reposts_count": 0,
"truncated": false,
"text": "我走咯[泪][泪][泪]@辉辉柴酷炫无敌欧耶 http://t.cn/8kkz78f",
"visible": {
"type": 0,
"list_id": 0
},
"in_reply_to_status_id": "",
"bmiddle_pic": "http://ww1.sinaimg.cn/bmiddle/005ELYXbjw1ensh7mugzmj30dc0hsq5h.jpg",
"id": 3793732052994874,
"thumbnail_pic": "http://ww1.sinaimg.cn/thumbnail/005ELYXbjw1ensh7mugzmj30dc0hsq5h.jpg",
"mid": "3793732052994874",
"source": "<a href=\"http://app.weibo.com/t/feed/3G5oUM\" rel=\"nofollow\">iPhone 5s</a>",
"attitudes_count": 0,
"in_reply_to_screen_name": "",
"pic_urls": [
{
"thumbnail_pic": "http://ww1.sinaimg.cn/thumbnail/005ELYXbjw1ensh7mugzmj30dc0hsq5h.jpg"
}
],
"annotations": [
{
"client_mblogid": "iPhone-8A155205-3811-4E18-9B3E-9939372326E0",
"place": {
"lat": 37.754398,
"lon": 112.633369,
"type": "checkin",
"poiid": "B2094656D665A7FA4592",
"title": "太原武宿国际机场"
}
}
],
"in_reply_to_user_id": "",
"darwin_tags": [],
"favorited": false,
"original_pic": "http://ww1.sinaimg.cn/large/005ELYXbjw1ensh7mugzmj30dc0hsq5h.jpg",
"idstr": "3793732052994874",
"source_type": 1,
"user": {
"bi_followers_count": 9,
"domain": "",
"avatar_large": "http://tp2.sinaimg.cn/5183153325/180/5697932439/0",
"verified_source": "",
"ptype": 0,
"statuses_count": 10,
"allow_all_comment": true,
"id": 5183153325,
"verified_reason_url": "",
"city": "1",
"province": "11",
"credit_score": 80,
"block_app": 0,
"follow_me": false,
"verified_reason": "",
"followers_count": 47,
"location": "北京 东城区",
"verified_trade": "",
"mbtype": 0,
"verified_source_url": "",
"profile_url": "u/5183153325",
"block_word": 0,
"avatar_hd": "http://ww4.sinaimg.cn/crop.0.0.640.640.1024/005ELYXbjw8ehgt5zj1eij30hs0hs0tv.jpg",
"star": 0,
"description": "",
"friends_count": 202,
"online_status": 1,
"mbrank": 0,
"idstr": "5183153325",
"profile_image_url": "http://tp2.sinaimg.cn/5183153325/50/5697932439/0",
"allow_all_act_msg": false,
"verified": false,
"geo_enabled": true,
"class": 1,
"screen_name": "Beautifullifess",
"lang": "zh-cn",
"weihao": "",
"remark": "",
"favourites_count": 0,
"name": "Beautifullifess",
"url": "",
"gender": "f",
"created_at": "Tue Jun 17 08:29:07 +0800 2014",
"verified_type": -1,
"following": false,
"pagefriends_count": 1,
"urank": 5
},
"geo": {
"type": "Point",
"coordinates": [
37.754398,
112.633369
]
},
"created_at": "Wed Dec 31 06:47:48 +0800 2014",
"mlevel": 0,
"comments_count": 0
},
{
"darwin_tags": [],
"favorited": false,
"source_type": 1,
"mid": "3793732052994696",
"in_reply_to_user_id": "",
"source": "<a href=\"http://app.weibo.com/t/feed/476DGD\" rel=\"nofollow\">神女控iOS</a>",
"text": "讨伐了出现的魔女「黄龙」! http://t.cn/zQknFwj #神女控",
"created_at": "Wed Dec 31 06:47:47 +0800 2014",
"truncated": false,
"reposts_count": 0,
"idstr": "3793732052994696",
"visible": {
"type": 0,
"list_id": 0
},
"attitudes_count": 0,
"pic_urls": [],
"in_reply_to_screen_name": "",
"user": {
"bi_followers_count": 0,
"domain": "",
"avatar_large": "http://tp2.sinaimg.cn/3913724585/180/0/1",
"verified_source": "",
"ptype": 0,
"statuses_count": 62,
"allow_all_comment": true,
"id": 3913724585,
"verified_reason_url": "",
"city": "2",
"province": "35",
"credit_score": 80,
"block_app": 0,
"follow_me": false,
"verified_reason": "",
"followers_count": 1,
"location": "福建 厦门",
"verified_trade": "",
"mbtype": 0,
"verified_source_url": "",
"profile_url": "u/3913724585",
"block_word": 0,
"avatar_hd": "http://tp2.sinaimg.cn/3913724585/180/0/1",
"star": 0,
"description": "",
"friends_count": 4,
"online_status": 0,
"mbrank": 0,
"idstr": "3913724585",
"profile_image_url": "http://tp2.sinaimg.cn/3913724585/50/0/1",
"allow_all_act_msg": false,
"verified": false,
"geo_enabled": true,
"class": 1,
"screen_name": "幻影永歌",
"lang": "zh-cn",
"weihao": "",
"remark": "",
"favourites_count": 0,
"name": "幻影永歌",
"url": "",
"gender": "m",
"created_at": "Thu Nov 21 15:19:09 +0800 2013",
"verified_type": -1,
"following": false,
"pagefriends_count": 0,
"urank": 0
},
"in_reply_to_status_id": "",
"comments_count": 0,
"geo": null,
"id": 3793732052994696,
"mlevel": 0
},
{
"reposts_count": 0,
"truncated": false,
"text": "[囧]地址 :http://t.cn/RZ22t83",
"visible": {
"type": 0,
"list_id": 0
},
"in_reply_to_status_id": "",
"bmiddle_pic": "http://ww2.sinaimg.cn/bmiddle/e64ab084gw1enqtoxer3ij20ku0dwn1z.jpg",
"id": 3793732052539917,
"thumbnail_pic": "http://ww2.sinaimg.cn/thumbnail/e64ab084gw1enqtoxer3ij20ku0dwn1z.jpg",
"mid": "3793732052539917",
"source": "<a href=\"http://app.weibo.com/t/feed/3auC5p\" rel=\"nofollow\">皮皮时光机</a>",
"attitudes_count": 0,
"in_reply_to_screen_name": "",
"pic_urls": [
{
"thumbnail_pic": "http://ww2.sinaimg.cn/thumbnail/e64ab084gw1enqtoxer3ij20ku0dwn1z.jpg"
},
{
"thumbnail_pic": "http://ww2.sinaimg.cn/thumbnail/e64ab084gw1enqtq22v5wj20aw0gb77h.jpg"
},
{
"thumbnail_pic": "http://ww2.sinaimg.cn/thumbnail/e64ab084gw1enqtqo8jwqj20as0g9772.jpg"
},
{
"thumbnail_pic": "http://ww1.sinaimg.cn/thumbnail/e64ab084gw1enqtqkjtq3j20au0gatbp.jpg"
},
{
"thumbnail_pic": "http://ww3.sinaimg.cn/thumbnail/e64ab084gw1enqtox0vgyj20kw0dwjvw.jpg"
},
{
"thumbnail_pic": "http://ww3.sinaimg.cn/thumbnail/e64ab084gw1enqtq31muqj20at0gaq59.jpg"
},
{
"thumbnail_pic": "http://ww4.sinaimg.cn/thumbnail/e64ab084gw1enqtqegchqj20as0ga419.jpg"
},
{
"thumbnail_pic": "http://ww4.sinaimg.cn/thumbnail/e64ab084gw1enqtqsd5vij20ku0dvgpf.jpg"
},
{
"thumbnail_pic": "http://ww4.sinaimg.cn/thumbnail/e64ab084gw1enqtpkv4b2j20as0g4n0g.jpg"
}
],
"in_reply_to_user_id": "",
"darwin_tags": [],
"favorited": false,
"original_pic": "http://ww2.sinaimg.cn/large/e64ab084gw1enqtoxer3ij20ku0dwn1z.jpg",
"idstr": "3793732052539917",
"source_type": 1,
"user": {
"bi_followers_count": 1,
"domain": "",
"avatar_large": "http://tp2.sinaimg.cn/5244019897/180/5702545960/0",
"verified_source": "",
"ptype": 0,
"statuses_count": 1355,
"allow_all_comment": true,
"id": 5244019897,
"verified_reason_url": "",
"city": "1000",
"province": "100",
"credit_score": 80,
"block_app": 0,
"follow_me": false,
"verified_reason": "",
"followers_count": 45,
"location": "其他",
"verified_trade": "",
"mbtype": 0,
"verified_source_url": "",
"profile_url": "u/5244019897",
"block_word": 0,
"avatar_hd": "http://ww2.sinaimg.cn/crop.0.0.170.170.1024/005ITn85jw1ej6jjigmepj304q04qq2w.jpg",
"star": 0,
"description": "",
"friends_count": 331,
"online_status": 0,
"mbrank": 0,
"idstr": "5244019897",
"profile_image_url": "http://tp2.sinaimg.cn/5244019897/50/5702545960/0",
"allow_all_act_msg": false,
"verified": false,
"geo_enabled": true,
"class": 1,
"screen_name": "碎碎念的雅容",
"lang": "zh-cn",
"weihao": "",
"remark": "",
"favourites_count": 0,
"name": "碎碎念的雅容",
"url": "",
"gender": "f",
"created_at": "Thu Aug 07 22:40:46 +0800 2014",
"verified_type": -1,
"following": false,
"pagefriends_count": 0,
"urank": 7
},
"geo": null,
"created_at": "Wed Dec 31 06:47:47 +0800 2014",
"mlevel": 0,
"comments_count": 0
},
{
"reposts_count": 0,
"truncated": false,
"text": "[xkl期待]链 接 :http://t.cn/RzsmAEi",
"visible": {
"type": 0,
"list_id": 0
},
"in_reply_to_status_id": "",
"bmiddle_pic": "http://ww4.sinaimg.cn/bmiddle/e64ab084jw1elit4ptdh3j20c809p0tq.jpg",
"id": 3793732052539912,
"thumbnail_pic": "http://ww4.sinaimg.cn/thumbnail/e64ab084jw1elit4ptdh3j20c809p0tq.jpg",
"mid": "3793732052539912",
"source": "<a href=\"http://app.weibo.com/t/feed/3auC5p\" rel=\"nofollow\">皮皮时光机</a>",
"attitudes_count": 0,
"in_reply_to_screen_name": "",
"pic_urls": [
{
"thumbnail_pic": "http://ww4.sinaimg.cn/thumbnail/e64ab084jw1elit4ptdh3j20c809p0tq.jpg"
},
{
"thumbnail_pic": "http://ww4.sinaimg.cn/thumbnail/e64ab084jw1elit4ra44dj20c809p3zc.jpg"
},
{
"thumbnail_pic": "http://ww1.sinaimg.cn/thumbnail/e64ab084jw1elit4t19psj20c80720ta.jpg"
},
{
"thumbnail_pic": "http://ww2.sinaimg.cn/thumbnail/e64ab084jw1elit4v7gmlj20c806r3z0.jpg"
},
{
"thumbnail_pic": "http://ww3.sinaimg.cn/thumbnail/e64ab084jw1elit4wsfxbj20c809et9t.jpg"
},
{
"thumbnail_pic": "http://ww4.sinaimg.cn/thumbnail/e64ab084jw1elit4yniwvj20c80a4dh0.jpg"
},
{
"thumbnail_pic": "http://ww3.sinaimg.cn/thumbnail/e64ab084jw1elit50nc3qj20c808cq3x.jpg"
},
{
"thumbnail_pic": "http://ww1.sinaimg.cn/thumbnail/e64ab084jw1elit52yqwtj20c80a5wfm.jpg"
},
{
"thumbnail_pic": "http://ww4.sinaimg.cn/thumbnail/e64ab084jw1elit54sinrj20c806rjrv.jpg"
}
],
"in_reply_to_user_id": "",
"darwin_tags": [],
"favorited": false,
"original_pic": "http://ww4.sinaimg.cn/large/e64ab084jw1elit4ptdh3j20c809p0tq.jpg",
"idstr": "3793732052539912",
"source_type": 1,
"user": {
"bi_followers_count": 1,
"domain": "",
"avatar_large": "http://tp1.sinaimg.cn/5229224940/180/5701167834/0",
"verified_source": "",
"ptype": 0,
"statuses_count": 2094,
"allow_all_comment": true,
"id": 5229224940,
"verified_reason_url": "",
"city": "1000",
"province": "100",
"credit_score": 80,
"block_app": 0,
"follow_me": false,
"verified_reason": "",
"followers_count": 77,
"location": "其他",
"verified_trade": "",
"mbtype": 0,
"verified_source_url": "",
"profile_url": "u/5229224940",
"block_word": 0,
"avatar_hd": "http://ww4.sinaimg.cn/crop.0.0.170.170.1024/005HTihKjw1eio3opjxm8j304q04qjr9.jpg",
"star": 0,
"description": "",
"friends_count": 677,
"online_status": 0,
"mbrank": 0,
"idstr": "5229224940",
"profile_image_url": "http://tp1.sinaimg.cn/5229224940/50/5701167834/0",
"allow_all_act_msg": false,
"verified": false,
"geo_enabled": true,
"class": 1,
"screen_name": "肉肉的傲霜",
"lang": "zh-cn",
"weihao": "",
"remark": "",
"favourites_count": 0,
"name": "肉肉的傲霜",
"url": "",
"gender": "f",
"created_at": "Wed Jul 23 10:06:49 +0800 2014",
"verified_type": -1,
"following": false,
"pagefriends_count": 0,
"urank": 7
},
"geo": null,
"created_at": "Wed Dec 31 06:47:47 +0800 2014",
"mlevel": 0,
"comments_count": 0
},
{
"darwin_tags": [],
"favorited": false,
"source_type": 1,
"mid": "3793732052262354",
"in_reply_to_user_id": "",
"source": "<a href=\"http://app.weibo.com/t/feed/6G7MnG\" rel=\"nofollow\">三星GALAXY S4</a>",
"text": "反正生活不爱我我也不爱我的生活倒不如一个人活得洒洒脱脱",
"created_at": "Wed Dec 31 06:47:47 +0800 2014",
"truncated": false,
"reposts_count": 0,
"idstr": "3793732052262354",
"visible": {
"type": 0,
"list_id": 0
},
"attitudes_count": 0,
"pic_urls": [],
"in_reply_to_screen_name": "",
"user": {
"bi_followers_count": 9,
"domain": "",
"avatar_large": "http://tp4.sinaimg.cn/3287345811/180/40073930575/0",
"verified_source": "",
"ptype": 0,
"statuses_count": 18,
"allow_all_comment": true,
"id": 3287345811,
"verified_reason_url": "",
"city": "90",
"province": "46",
"credit_score": 80,
"block_app": 0,
"follow_me": false,
"verified_reason": "",
"followers_count": 10,
"location": "海南 其他",
"verified_trade": "",
"mbtype": 0,
"verified_source_url": "",
"profile_url": "u/3287345811",
"block_word": 0,
"avatar_hd": "http://ww4.sinaimg.cn/crop.0.0.199.199.1024/c3f0ea93gw1enidn9a49pj205k05k0sy.jpg",
"star": 0,
"description": "我是一个连自己都走不进自己心的怪人。",
"friends_count": 191,
"online_status": 0,
"mbrank": 0,
"idstr": "3287345811",
"profile_image_url": "http://tp4.sinaimg.cn/3287345811/50/40073930575/0",
"allow_all_act_msg": false,
"verified": false,
"geo_enabled": true,
"class": 1,
"screen_name": "陪你上演天長地灬郑玉函",
"lang": "zh-cn",
"weihao": "",
"remark": "",
"favourites_count": 0,
"name": "陪你上演天長地灬郑玉函",
"url": "",
"gender": "f",
"created_at": "Tue Apr 02 15:05:15 +0800 2013",
"verified_type": -1,
"following": false,
"pagefriends_count": 0,
"urank": 3
},
"in_reply_to_status_id": "",
"comments_count": 0,
"geo": null,
"id": 3793732052262354,
"mlevel": 0
},
{
"reposts_count": 0,
"truncated": false,
"text": "[圣诞树]链 接 :http://t.cn/Rzsnld5",
"visible": {
"type": 0,
"list_id": 0
},
"in_reply_to_status_id": "",
"bmiddle_pic": "http://ww1.sinaimg.cn/bmiddle/e64ab084gw1eme3ct1rj7j20bp0gdwgc.jpg",
"id": 3793732052262295,
"thumbnail_pic": "http://ww1.sinaimg.cn/thumbnail/e64ab084gw1eme3ct1rj7j20bp0gdwgc.jpg",
"mid": "3793732052262295",
"source": "<a href=\"http://app.weibo.com/t/feed/63af84\" rel=\"nofollow\">vivo智能手机</a>",
"attitudes_count": 0,
"in_reply_to_screen_name": "",
"pic_urls": [
{
"thumbnail_pic": "http://ww1.sinaimg.cn/thumbnail/e64ab084gw1eme3ct1rj7j20bp0gdwgc.jpg"
},
{
"thumbnail_pic": "http://ww1.sinaimg.cn/thumbnail/e64ab084gw1eme3dhj5sij20b10gjaca.jpg"
},
{
"thumbnail_pic": "http://ww1.sinaimg.cn/thumbnail/e64ab084gw1eme3d36zlfj20km0dsjtc.jpg"
},
{
"thumbnail_pic": "http://ww4.sinaimg.cn/thumbnail/e64ab084gw1eme3dlqtoaj20b50gmmz4.jpg"
},
{
"thumbnail_pic": "http://ww3.sinaimg.cn/thumbnail/e64ab084gw1eme3clysq5j20bm0gh405.jpg"
},
{
"thumbnail_pic": "http://ww1.sinaimg.cn/thumbnail/e64ab084gw1eme3dtxjyfj20k00dbtaw.jpg"
},
{
"thumbnail_pic": "http://ww3.sinaimg.cn/thumbnail/e64ab084gw1eme3db5i91j20a10f5q42.jpg"
},
{
"thumbnail_pic": "http://ww4.sinaimg.cn/thumbnail/e64ab084gw1eme3dq3rt8j20jz0dd0uw.jpg"
},
{
"thumbnail_pic": "http://ww4.sinaimg.cn/thumbnail/e64ab084gw1eme3cxjnkcj20ku0dw419.jpg"
}
],
"in_reply_to_user_id": "",
"darwin_tags": [],
"favorited": false,
"original_pic": "http://ww1.sinaimg.cn/large/e64ab084gw1eme3ct1rj7j20bp0gdwgc.jpg",
"idstr": "3793732052262295",
"source_type": 1,
"user": {
"bi_followers_count": 2,
"domain": "",
"avatar_large": "http://tp3.sinaimg.cn/5137137786/180/5694934140/0",
"verified_source": "",
"ptype": 0,
"statuses_count": 2303,
"allow_all_comment": true,
"id": 5137137786,
"verified_reason_url": "",
"city": "1000",
"province": "11",
"credit_score": 80,
"block_app": 0,
"follow_me": false,
"verified_reason": "",
"followers_count": 100,
"location": "北京",
"verified_trade": "",
"mbtype": 0,
"verified_source_url": "",
"profile_url": "u/5137137786",
"block_word": 0,
"avatar_hd": "http://ww1.sinaimg.cn/crop.0.0.170.170.1024/005BEUd4jw1egcouwop2zj304q04qmx2.jpg",
"star": 0,
"description": "",
"friends_count": 414,
"online_status": 0,
"mbrank": 0,
"idstr": "5137137786",
"profile_image_url": "http://tp3.sinaimg.cn/5137137786/50/5694934140/0",
"allow_all_act_msg": false,
"verified": false,
"geo_enabled": true,
"class": 1,
"screen_name": "学院派楚云",
"lang": "zh-cn",
"weihao": "",
"remark": "",
"favourites_count": 0,
"name": "学院派楚云",
"url": "",
"gender": "f",
"created_at": "Mon May 12 00:18:22 +0800 2014",
"verified_type": -1,
"following": false,
"pagefriends_count": 0,
"urank": 7
},
"geo": null,
"created_at": "Wed Dec 31 06:47:47 +0800 2014",
"mlevel": 0,
"comments_count": 0
},
{
"reposts_count": 0,
"truncated": false,
"text": "2014的最后一天[笑哈哈]开开心心哒",
"visible": {
"type": 0,
"list_id": 0
},
"in_reply_to_status_id": "",
"id": 3793732048799968,
"mid": "3793732048799968",
"source": "<a href=\"http://weibo.com/\" rel=\"nofollow\">三星I939I(大理石白)</a>",
"attitudes_count": 1,
"in_reply_to_screen_name": "",
"pic_urls": [],
"annotations": [
{
"client_mblogid": "046b11ec-f18a-4b0a-a4a5-66d5aa863027",
"shooting": 1
}
],
"in_reply_to_user_id": "",
"darwin_tags": [],
"favorited": false,
"idstr": "3793732048799968",
"source_type": 2,
"user": {
"bi_followers_count": 101,
"domain": "",
"avatar_large": "http://tp3.sinaimg.cn/3187193714/180/5714639308/0",
"verified_source": "",
"ptype": 0,
"cover_image_phone": "http://ww3.sinaimg.cn/crop.0.0.0.0/bdf8b772jw1emwdwrjclij20k00k0whe.jpg",
"statuses_count": 343,
"id": 3187193714,
"verified_reason_url": "",
"city": "5",
"verified": false,
"credit_score": 80,
"block_app": 1,
"follow_me": false,
"verified_reason": "",
"followers_count": 315,
"location": "四川 泸州",
"verified_trade": "",
"mbtype": 13,
"verified_source_url": "",
"profile_url": "u/3187193714",
"block_word": 0,
"avatar_hd": "http://ww4.sinaimg.cn/crop.0.0.720.720.1024/bdf8b772jw8enod0o8i9yj20k00k00ub.jpg",
"star": 0,
"description": "Candy&Kandy 〖张子凡 铃屋什造〗 @茱丽勋",
"friends_count": 198,
"online_status": 1,
"mbrank": 2,
"idstr": "3187193714",
"profile_image_url": "http://tp3.sinaimg.cn/3187193714/50/5714639308/0",
"allow_all_act_msg": false,
"allow_all_comment": true,
"geo_enabled": true,
"class": 1,
"screen_name": "橘子与黄阿软",
"lang": "zh-cn",
"weihao": "",
"remark": "",
"favourites_count": 2,
"name": "橘子与黄阿软",
"url": "",
"province": "51",
"created_at": "Tue Feb 12 15:20:54 +0800 2013",
"verified_type": 220,
"gender": "f",
"following": false,
"pagefriends_count": 12,
"urank": 10
},
"geo": null,
"created_at": "Wed Dec 31 06:47:47 +0800 2014",
"mlevel": 0,
"comments_count": 0
},
{
"reposts_count": 0,
"truncated": false,
"text": "???? 黑白灰:http://t.cn/R7gS3au 好多包:http://t.cn/RP8cc31",
"visible": {
"type": 0,
"list_id": 0
},
"in_reply_to_status_id": "",
"bmiddle_pic": "http://ww3.sinaimg.cn/bmiddle/9b472f36jw1elikh1g8h6j20b40b4jsm.jpg",
"id": 3793732048799920,
"thumbnail_pic": "http://ww3.sinaimg.cn/thumbnail/9b472f36jw1elikh1g8h6j20b40b4jsm.jpg",
"mid": "3793732048799920",
"source": "<a href=\"http://app.weibo.com/t/feed/63af84\" rel=\"nofollow\">vivo智能手机</a>",
"attitudes_count": 0,
"in_reply_to_screen_name": "",
"pic_urls": [
{
"thumbnail_pic": "http://ww3.sinaimg.cn/thumbnail/9b472f36jw1elikh1g8h6j20b40b4jsm.jpg"
},
{
"thumbnail_pic": "http://ww1.sinaimg.cn/thumbnail/9b472f36jw1elikh1ilmzj20b40b475q.jpg"
},
{
"thumbnail_pic": "http://ww1.sinaimg.cn/thumbnail/9b472f36jw1elikh1mi1aj20b40b4gmk.jpg"
},
{
"thumbnail_pic": "http://ww2.sinaimg.cn/thumbnail/9b472f36jw1elikh1plfqj20b40b475q.jpg"
},
{
"thumbnail_pic": "http://ww4.sinaimg.cn/thumbnail/9b472f36jw1elikh1rq3bj20b40b4t9t.jpg"
},
{
"thumbnail_pic": "http://ww4.sinaimg.cn/thumbnail/9b472f36jw1elikh207w4j20b40b4ac0.jpg"
},
{
"thumbnail_pic": "http://ww4.sinaimg.cn/thumbnail/9b472f36jw1elikh220awj20b40b43zp.jpg"
},
{
"thumbnail_pic": "http://ww3.sinaimg.cn/thumbnail/9b472f36jw1elikh2513fj20b40b4t9n.jpg"
},
{
"thumbnail_pic": "http://ww2.sinaimg.cn/thumbnail/9b472f36jw1elikh27pmgj20b40b4dhm.jpg"
}
],
"in_reply_to_user_id": "",
"darwin_tags": [],
"favorited": false,
"original_pic": "http://ww3.sinaimg.cn/large/9b472f36jw1elikh1g8h6j20b40b4jsm.jpg",
"idstr": "3793732048799920",
"source_type": 1,
"user": {
"bi_followers_count": 41,
"domain": "",
"avatar_large": "http://tp4.sinaimg.cn/3816777059/180/5692792825/0",
"verified_source": "",
"ptype": 0,
"statuses_count": 17342,
"allow_all_comment": true,
"id": 3816777059,
"verified_reason_url": "",
"city": "21",
"province": "400",
"credit_score": 80,
"block_app": 0,
"follow_me": false,
"verified_reason": "",
"followers_count": 309,
"location": "海外 爱尔兰",
"verified_trade": "",
"mbtype": 0,
"verified_source_url": "",
"profile_url": "u/3816777059",
"block_word": 0,
"avatar_hd": "http://ww4.sinaimg.cn/crop.0.0.180.180.1024/e37f6563jw1efk1d8jcwrj2050050aab.jpg",
"star": 0,
"description": "",
"friends_count": 852,
"online_status": 0,
"mbrank": 0,
"idstr": "3816777059",
"profile_image_url": "http://tp4.sinaimg.cn/3816777059/50/5692792825/0",
"allow_all_act_msg": false,
"verified": false,
"geo_enabled": true,
"class": 1,
"screen_name": "穿搭流行配搭",
"lang": "zh-cn",
"weihao": "",
"remark": "",
"favourites_count": 0,
"name": "穿搭流行配搭",
"url": "",
"gender": "f",
"created_at": "Tue Sep 24 15:39:10 +0800 2013",
"verified_type": -1,
"following": false,
"pagefriends_count": 0,
"urank": 10
},
"geo": null,
"created_at": "Wed Dec 31 06:47:47 +0800 2014",
"mlevel": 0,
"comments_count": 0
},
{
"reposts_count": 0,
"truncated": false,
"text": "???? >>>1:http://t.cn/RzTGAxK 2:http://t.cn/R7gIKz5",
"visible": {
"type": 0,
"list_id": 0
},
"in_reply_to_status_id": "",
"bmiddle_pic": "http://ww1.sinaimg.cn/bmiddle/d59832a7gw1endy8nc7glj20b10b4t9m.jpg",
"id": 3793732048799760,
"thumbnail_pic": "http://ww1.sinaimg.cn/thumbnail/d59832a7gw1endy8nc7glj20b10b4t9m.jpg",
"mid": "3793732048799760",
"source": "<a href=\"http://app.weibo.com/t/feed/63af84\" rel=\"nofollow\">vivo智能手机</a>",
"attitudes_count": 0,
"in_reply_to_screen_name": "",
"pic_urls": [
{
"thumbnail_pic": "http://ww1.sinaimg.cn/thumbnail/d59832a7gw1endy8nc7glj20b10b4t9m.jpg"
},
{
"thumbnail_pic": "http://ww1.sinaimg.cn/thumbnail/d59832a7gw1endy8nmzsmj20b80b50tl.jpg"
},
{
"thumbnail_pic": "http://ww3.sinaimg.cn/thumbnail/d59832a7gw1endy8nmrv6j20b20b6mxt.jpg"
},
{
"thumbnail_pic": "http://ww2.sinaimg.cn/thumbnail/d59832a7gw1endy8nyqx2j20b30b4gmg.jpg"
},
{
"thumbnail_pic": "http://ww1.sinaimg.cn/thumbnail/d59832a7gw1endy8nz5cxj20bo0bpgmk.jpg"
},
{
"thumbnail_pic": "http://ww3.sinaimg.cn/thumbnail/d59832a7gw1endy8oh33cj20b60b4wfm.jpg"
},
{
"thumbnail_pic": "http://ww3.sinaimg.cn/thumbnail/d59832a7gw1endy8ogtoej20b00aawf6.jpg"
},
{
"thumbnail_pic": "http://ww3.sinaimg.cn/thumbnail/d59832a7gw1endy8omembj20b80av0tz.jpg"
},
{
"thumbnail_pic": "http://ww3.sinaimg.cn/thumbnail/d59832a7gw1endy8vcbqoj20b10b60tx.jpg"
}
],
"in_reply_to_user_id": "",
"darwin_tags": [],
"favorited": false,
"original_pic": "http://ww1.sinaimg.cn/large/d59832a7gw1endy8nc7glj20b10b4t9m.jpg",
"idstr": "3793732048799760",
"source_type": 1,
"user": {
"bi_followers_count": 25,
"domain": "",
"avatar_large": "http://tp4.sinaimg.cn/3759699031/180/5692935716/0",
"verified_source": "",
"ptype": 0,
"statuses_count": 17331,
"allow_all_comment": true,
"id": 3759699031,
"verified_reason_url": "",
"city": "26",
"province": "400",
"credit_score": 80,
"block_app": 0,
"follow_me": false,
"verified_reason": "",
"followers_count": 277,
"location": "海外 芬兰",
"verified_trade": "",
"mbtype": 0,
"verified_source_url": "",
"profile_url": "u/3759699031",
"block_word": 0,
"avatar_hd": "http://ww1.sinaimg.cn/crop.0.0.200.200.1024/e0187457jw1efly76rojjj205k05kdfz.jpg",
"star": 0,
"description": "",
"friends_count": 787,
"online_status": 0,
"mbrank": 0,
"idstr": "3759699031",
"profile_image_url": "http://tp4.sinaimg.cn/3759699031/50/5692935716/0",
"allow_all_act_msg": false,
"verified": false,
"geo_enabled": true,
"class": 1,
"screen_name": "穿戴女性微刊",
"lang": "zh-cn",
"weihao": "",
"remark": "",
"favourites_count": 0,
"name": "穿戴女性微刊",
"url": "",
"gender": "f",
"created_at": "Sat Aug 31 00:48:12 +0800 2013",
"verified_type": -1,
"following": false,
"pagefriends_count": 0,
"urank": 10
},
"geo": null,
"created_at": "Wed Dec 31 06:47:47 +0800 2014",
"mlevel": 0,
"comments_count": 0
}
]
}
新浪微博数据挖掘食谱之四: 保存篇 (json text格式)
标签:数据挖掘
原文地址:http://blog.csdn.net/guaguastd/article/details/42289965