python 爬取博客数据
1.抓取资料
随便打开一个微博 如:https://www.weibo.com/u/1905320715
查看元素可以看到资料的接口是 https://www.weibo.com/ajax/profile/info?uid=1905320715
所以可以这样写
header = { "user-agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.106 Safari/537.36", "cookie": "xxxxxxxx" } user_info = requests.get(url='https://www.weibo.com/ajax/profile/info?uid=1905320715',headers=header) print(user_info.json())
一定要带上cookie不然会获取不到信息
cookie怎么获取?Network找出来 复制就行

获取到的字段如下
{
"ok": 1,
"data": {
"user": {
"id": 1905320715,
"idstr": "1905320715",
"class": 1,
"screen_name": "浅裤兜-",
"name": "浅裤兜-",
"province": "44",
"city": "1",
"location": "广东 广州",
"description": "半黄梅子,向晚一帘疏雨。断魂分付与,春将去。",
"url": "",
"profile_image_url": "https://tvax3.sinaimg.cn/crop.0.0.512.512.50/7190e30bly8fft6l6lu3qj20e80e8q36.jpg?KID=imgbed,tva&Expires=1623913383&ssig=Q0p4dWLS6K",
"cover_image_phone": "http://ww1.sinaimg.cn/crop.0.0.640.640.640/549d0121tw1egm1kjly3jj20hs0hsq4f.jpg",
"profile_url": "u/1905320715",
"domain": "",
"weihao": "",
"gender": "m",
"followers_count": 184,
"friends_count": 120,
"pagefriends_count": 21,
"statuses_count": 65,
"video_status_count": 0,
"video_play_count": 0,
"favourites_count": 8,
"created_at": "Tue Dec 28 21:47:31 +0800 2010",
"following": false,
"allow_all_act_msg": false,
"geo_enabled": true,
"verified": false,
"verified_type": -1,
"remark": "",
"insecurity": {
"sexual_content": false
},
"status": {
"visible": {
"type": 0,
"list_id": 0
},
"created_at": "Thu Jun 03 02:47:25 +0800 2021",
"id": 4643833490703089,
"idstr": "4643833490703089",
"mid": "4643833490703089",
"can_edit": false,
"show_additional_indication": 0,
"text": "D",
"textLength": 1,
"source_allowclick": 1,
"source_type": 2,
"source": "<a href=\"http://weibo.com/\" rel=\"nofollow\">HarmonyOS设备</a>",
"appid": 2731262,
"favorited": false,
"truncated": false,
"in_reply_to_status_id": "",
"in_reply_to_user_id": "",
"in_reply_to_screen_name": "",
"pic_ids": [],
"pic_types": "",
"geo": null,
"is_paid": false,
"mblog_vip_type": 0,
"annotations": [
{
"shooting": 1,
"client_mblogid": "a41bb3e1-aca4-4610-a1ff-01b9c6f885bf"
},
{
"mapi_request": true
}
],
"reposts_count": 0,
"comments_count": 0,
"attitudes_count": 0,
"pending_approval_count": 0,
"isLongText": false,
"reward_exhibition_type": 0,
"hide_flag": 0,
"mlevel": 0,
"biz_feature": 0,
"hasActionTypeCard": 0,
"darwin_tags": [],
"hot_weibo_tags": [],
"text_tag_tips": [],
"mblogtype": 0,
"rid": "0",
"userType": 0,
"more_info_type": 0,
"positive_recom_flag": 0,
"content_auth": 0,
"gif_ids": "",
"is_show_bulletin": 2,
"comment_manage_info": {
"comment_permission_type": -1,
"approval_comment_type": 0
},
"pic_num": 0
},
"ptype": 0,
"allow_all_comment": true,
"avatar_large": "https://tvax3.sinaimg.cn/crop.0.0.512.512.180/7190e30bly8fft6l6lu3qj20e80e8q36.jpg?KID=imgbed,tva&Expires=1623913383&ssig=hfXBJFZIBj",
"avatar_hd": "https://tvax3.sinaimg.cn/crop.0.0.512.512.1024/7190e30bly8fft6l6lu3qj20e80e8q36.jpg?KID=imgbed,tva&Expires=1623913383&ssig=ApPVvjOM26",
"verified_reason": "",
"verified_trade": "",
"verified_reason_url": "",
"verified_source": "",
"verified_source_url": "",
"follow_me": false,
"like": false,
"like_me": false,
"online_status": 0,
"bi_followers_count": 8,
"lang": "zh-tw",
"star": 0,
"mbtype": 2,
"mbrank": 1,
"svip": 0,
"block_word": 0,
"block_app": 0,
"credit_score": 80,
"user_ability": 35914752,
"urank": 28,
"story_read_state": -1,
"vclub_member": 0,
"is_teenager": 0,
"is_guardian": 0,
"is_teenager_list": 0,
"pc_new": 7,
"special_follow": false,
"planet_video": 1,
"video_mark": 2,
"live_status": 0,
"user_ability_extend": 0,
"brand_account": 0,
"user_type": 2,
"is_star": "0",
"wenda": "0"
},
"tabList": [
{
"name": "home",
"tabName": "精选"
},
{
"name": "feed",
"tabName": "微博"
},
{
"name": "miniVideo",
"tabName": "小视频"
},
{
"name": "album",
"tabName": "相册"
}
]
}
}
至于各个字段什么意思?看下面文档
https://open.weibo.com/wiki/2/users/show
提取自己需要的字段就行 顺便保村一下 比如我这样
fields = { "id":"微博UID", "screen_name":"用户昵称", "province":"省份ID", "city":"城市ID", "location":"所在地", "description":"个人描述", "url":"博客地址", "profile_url":"微博地址", "domain":"个性域名", "gender":"性别", # m:男、f:女、n:未知 "followers_count":"粉丝数", "friends_count":"关注数", "statuses_count":"微博数量", "avatar_hd":"头像", "created_at":"注册时间" } time_format = '%a %b %d %H:%M:%S +0800 %Y' user_info_str = '' for k in fields: if k == 'created_at': user_info_json['data']['user'][k] = datetime.strptime(user_info_json['data']['user'][k],time_format) user_info_str += "%s:%s \n"%(fields[k],user_info_json['data']['user'][k]) user_info_str += "数据抓取时间:%s"%(time.strftime("%Y-%m-%d %H:%M:%S", time.localtime())) #创建目录 savePath = os.path.join(os.path.abspath('./weibo'), str(user_info_json['data']['user']['id']) + user_info_json['data']['user']['screen_name']) if not os.path.exists(savePath): print('创建目录%s'%(savePath)) os.makedirs(savePath) #写入资料 with open(file=os.path.join(savePath, '资料.txt'),mode='w',encoding='utf-8') as f: print("写入资料") f.write(user_info_str)
2.抓取微博
依然是查看network 可以看到微博列表的接口是 https://www.weibo.com/ajax/statuses/mymblog?uid=1973051631&page=1&feature=0
红色部分是UID 和 页码
获取到的字段如下
{
"data": {
"list": [
{
"visible": {
"type": 0,
"list_id": 0
},
"created_at": "Thu Jun 03 02:47:25 +0800 2021",
"id": 4643833490703089,
"idstr": "4643833490703089",
"mid": "4643833490703089",
"mblogid": "Kiojb2WU9",
"user": {
"id": 1905320715,
"idstr": "1905320715",
"pc_new": 7,
"screen_name": "浅裤兜-",
"profile_image_url": "https://tvax3.sinaimg.cn/crop.0.0.512.512.50/7190e30bly8fft6l6lu3qj20e80e8q36.jpg?KID=imgbed,tva&Expires=1623920535&ssig=CVNyAmuOEK",
"profile_url": "/u/1905320715",
"verified": false,
"verified_type": -1,
"domain": "",
"weihao": "",
"avatar_large": "https://tvax3.sinaimg.cn/crop.0.0.512.512.180/7190e30bly8fft6l6lu3qj20e80e8q36.jpg?KID=imgbed,tva&Expires=1623920535&ssig=aFKFtG8Rpi",
"avatar_hd": "https://tvax3.sinaimg.cn/crop.0.0.512.512.1024/7190e30bly8fft6l6lu3qj20e80e8q36.jpg?KID=imgbed,tva&Expires=1623920535&ssig=%2FSNzk84PUr",
"follow_me": false,
"following": false,
"mbrank": 1,
"mbtype": 2,
"planet_video": true
},
"can_edit": false,
"text_raw": "D ",
"text": "D ",
"textLength": 1,
"source": "HarmonyOS设备",
"favorited": false,
"rid": "0_0_50_6558455571135251740_0_0_0",
"reads_count": 102,
"pic_ids": [],
"geo": "",
"pic_num": 0,
"is_paid": false,
"mblog_vip_type": 0,
"number_display_strategy": {
"apply_scenario_flag": 3,
"display_text_min_number": 1000000,
"display_text": "100万+"
},
"reposts_count": 0,
"comments_count": 0,
"attitudes_count": 1,
"attitudes_status": 0,
"isLongText": false,
"mlevel": 0,
"content_auth": 0,
"is_show_bulletin": 2,
"comment_manage_info": {
"comment_manage_button": 1,
"comment_permission_type": 0,
"approval_comment_type": 0
},
"share_repost_type": 0,
"title": {
"text": "公开",
"base_color": 1,
"icon_url": "http://h5.sinaimg.cn/upload/2015/07/14/34/timeline_title_public.png"
},
"mblogtype": 0,
"showFeedRepost": false,
"showFeedComment": false,
"rcList": []
},
{
"visible": {
"type": 0,
"list_id": 0
},
"created_at": "Thu Dec 31 14:30:53 +0800 2020",
"id": 4588202797043359,
"idstr": "4588202797043359",
"mid": "4588202797043359",
"mblogid": "JB0yztyiz",
"user": {
"id": 1905320715,
"idstr": "1905320715",
"pc_new": 7,
"screen_name": "浅裤兜-",
"profile_image_url": "https://tvax3.sinaimg.cn/crop.0.0.512.512.50/7190e30bly8fft6l6lu3qj20e80e8q36.jpg?KID=imgbed,tva&Expires=1623920535&ssig=CVNyAmuOEK",
"profile_url": "/u/1905320715",
"verified": false,
"verified_type": -1,
"domain": "",
"weihao": "",
"avatar_large": "https://tvax3.sinaimg.cn/crop.0.0.512.512.180/7190e30bly8fft6l6lu3qj20e80e8q36.jpg?KID=imgbed,tva&Expires=1623920535&ssig=aFKFtG8Rpi",
"avatar_hd": "https://tvax3.sinaimg.cn/crop.0.0.512.512.1024/7190e30bly8fft6l6lu3qj20e80e8q36.jpg?KID=imgbed,tva&Expires=1623920535&ssig=%2FSNzk84PUr",
"follow_me": false,
"following": false,
"mbrank": 1,
"mbtype": 2,
"planet_video": true
},
"can_edit": false,
"text_raw": "#一张照片告别2020# 打卡2020,一起拥抱更好的2021。 ",
"text": "<a href=\"/search/weibo?q=%23%E4%B8%80%E5%BC%A0%E7%85%A7%E7%89%87%E5%91%8A%E5%88%AB2020%23\">#一张照片告别2020#</a> 打卡2020,一起拥抱更好的2021。 ",
"textLength": 70,
"source": "HUAWEI Mate30 Pro 5G",
"favorited": false,
"rid": "1_0_50_6558455571135251740_0_0_0",
"reads_count": 1007,
"pic_ids": [
"7190e30bgy1gm70x9y0srj218g0u0aou"
],
"geo": {
"type": "Point",
"coordinates": [
23.11943,
113.32122
]
},
"pic_num": 1,
"pic_infos": {
"7190e30bgy1gm70x9y0srj218g0u0aou": {
"thumbnail": {
"url": "https://wx1.sinaimg.cn/wap180/7190e30bgy1gm70x9y0srj218g0u0aou.jpg",
"width": 180,
"height": 121,
"cut_type": 1,
"type": ""
},
"bmiddle": {
"url": "https://wx1.sinaimg.cn/wap360/7190e30bgy1gm70x9y0srj218g0u0aou.jpg",
"width": 360,
"height": 242,
"cut_type": 1,
"type": ""
},
"large": {
"url": "https://wx1.sinaimg.cn/orj960/7190e30bgy1gm70x9y0srj218g0u0aou.jpg",
"width": 1422,
"height": 960,
"cut_type": 1,
"type": ""
},
"original": {
"url": "https://wx1.sinaimg.cn/orj1080/7190e30bgy1gm70x9y0srj218g0u0aou.jpg",
"width": "1600",
"height": "1080",
"cut_type": 1,
"type": ""
},
"largest": {
"url": "https://wx1.sinaimg.cn/large/7190e30bgy1gm70x9y0srj218g0u0aou.jpg",
"width": "1600",
"height": "1080",
"cut_type": 1,
"type": ""
},
"mw2000": {
"url": "https://wx1.sinaimg.cn/mw2000/7190e30bgy1gm70x9y0srj218g0u0aou.jpg",
"width": "1600",
"height": "1080",
"cut_type": 1,
"type": ""
},
"object_id": "1042018:0cde89d9e68aac4fc14935fb26fc85eb",
"pic_id": "7190e30bgy1gm70x9y0srj218g0u0aou",
"photo_tag": 0,
"type": "pic",
"pic_status": 0
}
},
"is_paid": false,
"mblog_vip_type": 0,
"number_display_strategy": {
"apply_scenario_flag": 3,
"display_text_min_number": 1000000,
"display_text": "100万+"
},
"reposts_count": 0,
"comments_count": 0,
"attitudes_count": 0,
"attitudes_status": 0,
"isLongText": false,
"mlevel": 0,
"content_auth": 0,
"is_show_bulletin": 2,
"comment_manage_info": {
"comment_manage_button": 1,
"comment_permission_type": 0,
"approval_comment_type": 0
},
"share_repost_type": 0,
"topic_struct": [
{
"title": "",
"topic_url": "sinaweibo://searchall?containerid=231522&q=%23%E4%B8%80%E5%BC%A0%E7%85%A7%E7%89%87%E5%91%8A%E5%88%AB2020%23&extparam=%23%E4%B8%80%E5%BC%A0%E7%85%A7%E7%89%87%E5%91%8A%E5%88%AB2020%23",
"topic_title": "一张照片告别2020",
"is_invalid": 0
}
],
"tag_struct": [
{
"tag_name": "珠江新城",
"tag_scheme": "sinaweibo://cardlist?containerid=2306570042B2094751D365A3FA499B",
"tag_type": 1,
"tag_hidden": 2,
"url_type_pic": "https://h5.sinaimg.cn/upload/2015/07/17/34/timeline_icon_locate.png",
"actionlog": {
"act_code": 2413,
"oid": "1022:100101B2094751D365A3FA499B",
"uicode": "",
"luicode": "",
"fid": "2304131905320715_-_WEIBO_SECOND_PROFILE_WEIBO",
"ext": "orifid:"
},
"oid": "1022:100101B2094751D365A3FA499B",
"otype": "place",
"desc": "广州"
}
],
"title": {
"text": "公开",
"base_color": 1,
"icon_url": "http://h5.sinaimg.cn/upload/2015/07/14/34/timeline_title_public.png"
},
"mblogtype": 0,
"showFeedRepost": false,
"showFeedComment": false,
"rcList": []
},
{
"visible": {
"type": 0,
"list_id": 0
},
"created_at": "Mon Nov 30 16:27:02 +0800 2020",
"id": 4576997999645945,
"idstr": "4576997999645945",
"mid": "4576997999645945",
"mblogid": "Jwj4jEtlL",
"user": {
"id": 1905320715,
"idstr": "1905320715",
"pc_new": 7,
"screen_name": "浅裤兜-",
"profile_image_url": "https://tvax3.sinaimg.cn/crop.0.0.512.512.50/7190e30bly8fft6l6lu3qj20e80e8q36.jpg?KID=imgbed,tva&Expires=1623920535&ssig=CVNyAmuOEK",
"profile_url": "/u/1905320715",
"verified": false,
"verified_type": -1,
"domain": "",
"weihao": "",
"avatar_large": "https://tvax3.sinaimg.cn/crop.0.0.512.512.180/7190e30bly8fft6l6lu3qj20e80e8q36.jpg?KID=imgbed,tva&Expires=1623920535&ssig=aFKFtG8Rpi",
"avatar_hd": "https://tvax3.sinaimg.cn/crop.0.0.512.512.1024/7190e30bly8fft6l6lu3qj20e80e8q36.jpg?KID=imgbed,tva&Expires=1623920535&ssig=%2FSNzk84PUr",
"follow_me": false,
"following": false,
"mbrank": 1,
"mbtype": 2,
"planet_video": true
},
"can_edit": false,
"text_raw": "#从21世纪安全撤离[超话]#很多年了 期待 ",
"text": "<a target=\"_blank\" href=\"https://weibo.com/p/100808444dbee749226888e08d424d8c013621\"><img class=\"icon-link\" src=\"https://h5.sinaimg.cn/upload/100/959/2020/05/09/timeline_card_small_super_default.png\"/>从21世纪安全撤离超话</a>很多年了 期待 ",
"textLength": 57,
"source": "从21世纪安全撤离超话",
"favorited": false,
"rid": "2_0_50_6558455571135251740_0_0_0",
"reads_count": 2619,
"pic_ids": [],
"geo": {
"type": "Point",
"coordinates": [
39.924629,
116.434563
]
},
"pic_num": 0,
"is_paid": false,
"mblog_vip_type": 0,
"number_display_strategy": {
"apply_scenario_flag": 3,
"display_text_min_number": 1000000,
"display_text": "100万+"
},
"reposts_count": 0,
"comments_count": 1,
"attitudes_count": 0,
"attitudes_status": 0,
"isLongText": false,
"mlevel": 0,
"content_auth": 0,
"is_show_bulletin": 3,
"comment_manage_info": {
"comment_manage_button": 1,
"comment_permission_type": 0,
"approval_comment_type": 0
},
"share_repost_type": 0,
"url_struct": [
{
"url_title": "从21世纪安全撤离超话",
"url_type_pic": "https://h5.sinaimg.cn/upload/100/959/2020/05/09/timeline_card_small_super.png",
"ori_url": "sinaweibo://pageinfo?containerid=100808444dbee749226888e08d424d8c013621&containerid=100808444dbee749226888e08d424d8c013621&extparam=%E4%BB%8E21%E4%B8%96%E7%BA%AA%E5%AE%89%E5%85%A8%E6%92%A4%E7%A6%BB",
"page_id": "100808444dbee749226888e08d424d8c013621",
"short_url": "#从21世纪安全撤离[超话]#",
"long_url": "",
"url_type": "",
"result": false,
"actionlog": {
"act_type": 1,
"act_code": 300,
"oid": "1022:100808444dbee749226888e08d424d8c013621",
"uuid": 4212917862955025,
"cardid": "",
"lcardid": "",
"uicode": "",
"luicode": "",
"fid": "2304131905320715_-_WEIBO_SECOND_PROFILE_WEIBO",
"lfid": "",
"ext": "mid:4576997999645945|rid:2_0_50_6558455571135251740_0_0_0|short_url:|long_url:|comment_id:|miduid:1905320715|rootmid:4576997999645945|rootuid:1905320715|authorid:|uuid:4212917862955025|is_ad_weibo:0|analysis_card:url_struct"
},
"storage_type": "",
"hide": 0,
"object_type": "",
"need_save_obj": 0
}
],
"tag_struct": [
{
"tag_name": "朝阳门",
"tag_scheme": "sinaweibo://cardlist?containerid=23065700428008611010100000047",
"tag_type": 1,
"tag_hidden": 2,
"url_type_pic": "https://h5.sinaimg.cn/upload/2015/07/17/34/timeline_icon_locate.png",
"actionlog": {
"act_code": 2413,
"oid": "1022:1001018008611010100000047",
"uicode": "",
"luicode": "",
"fid": "2304131905320715_-_WEIBO_SECOND_PROFILE_WEIBO",
"ext": "orifid:"
},
"oid": "1022:1001018008611010100000047",
"otype": "place",
"desc": "北京"
}
],
"title": {
"text": "公开",
"base_color": 1,
"icon_url": "http://h5.sinaimg.cn/upload/2015/07/14/34/timeline_title_public.png"
},
"mblogtype": 0,
"showFeedRepost": false,
"showFeedComment": false,
"rcList": []
},
{
"visible": {
"type": 0,
"list_id": 0
},
"created_at": "Tue Nov 17 09:37:09 +0800 2020",
"id": 4572183810802300,
"idstr": "4572183810802300",
"mid": "4572183810802300",
"mblogid": "JuhPv3mIk",
"user": {
"id": 1905320715,
"idstr": "1905320715",
"pc_new": 7,
"screen_name": "浅裤兜-",
"profile_image_url": "https://tvax3.sinaimg.cn/crop.0.0.512.512.50/7190e30bly8fft6l6lu3qj20e80e8q36.jpg?KID=imgbed,tva&Expires=1623920535&ssig=CVNyAmuOEK",
"profile_url": "/u/1905320715",
"verified": false,
"verified_type": -1,
"domain": "",
"weihao": "",
"avatar_large": "https://tvax3.sinaimg.cn/crop.0.0.512.512.180/7190e30bly8fft6l6lu3qj20e80e8q36.jpg?KID=imgbed,tva&Expires=1623920535&ssig=aFKFtG8Rpi",
"avatar_hd": "https://tvax3.sinaimg.cn/crop.0.0.512.512.1024/7190e30bly8fft6l6lu3qj20e80e8q36.jpg?KID=imgbed,tva&Expires=1623920535&ssig=%2FSNzk84PUr",
"follow_me": false,
"following": false,
"mbrank": 1,
"mbtype": 2,
"planet_video": true
},
"can_edit": false,
"text_raw": "#家主什么都可以# ",
"text": "<a href=\"/search/weibo?q=%23%E5%AE%B6%E4%B8%BB%E4%BB%80%E4%B9%88%E9%83%BD%E5%8F%AF%E4%BB%A5%23\">#家主什么都可以#</a> ",
"textLength": 37,
"source": "HUAWEI Mate30 Pro 5G",
"favorited": false,
"rid": "3_0_50_6558455571135251740_0_0_0",
"reads_count": 885,
"pic_ids": [
"7190e30bgy1gkrx61e5w1j20u01p8gu3",
"7190e30bgy1gkrx62n8zcj22g40u04fe"
],
"geo": {
"type": "Point",
"coordinates": [
23.11943,
113.32122
]
},
"pic_num": 2,
"pic_infos": {
"7190e30bgy1gkrx61e5w1j20u01p8gu3": {
"thumbnail": {
"url": "https://wx3.sinaimg.cn/wap180/7190e30bgy1gkrx61e5w1j20u01p8gu3.jpg",
"width": 88,
"height": 180,
"cut_type": 1,
"type": ""
},
"bmiddle": {
"url": "https://wx3.sinaimg.cn/wap360/7190e30bgy1gkrx61e5w1j20u01p8gu3.jpg",
"width": 176,
"height": 360,
"cut_type": 1,
"type": ""
},
"large": {
"url": "https://wx3.sinaimg.cn/orj960/7190e30bgy1gkrx61e5w1j20u01p8gu3.jpg",
"width": 960,
"height": 1959,
"cut_type": 1,
"type": ""
},
"original": {
"url": "https://wx3.sinaimg.cn/orj1080/7190e30bgy1gkrx61e5w1j20u01p8gu3.jpg",
"width": "1080",
"height": "2204",
"cut_type": 1,
"type": ""
},
"largest": {
"url": "https://wx3.sinaimg.cn/large/7190e30bgy1gkrx61e5w1j20u01p8gu3.jpg",
"width": "1080",
"height": "2204",
"cut_type": 1,
"type": ""
},
"mw2000": {
"url": "https://wx3.sinaimg.cn/mw2000/7190e30bgy1gkrx61e5w1j20u01p8gu3.jpg",
"width": "1080",
"height": "2204",
"cut_type": 1,
"type": ""
},
"object_id": "1042018:5e0442e4b7bda3ab6656e3bb8295b091",
"pic_id": "7190e30bgy1gkrx61e5w1j20u01p8gu3",
"photo_tag": 0,
"type": "pic",
"pic_status": 0
},
"7190e30bgy1gkrx62n8zcj22g40u04fe": {
"thumbnail": {
"url": "https://wx4.sinaimg.cn/wap180/7190e30bgy1gkrx62n8zcj22g40u04fe.jpg",
"width": 180,
"height": 61,
"cut_type": 1,
"type": ""
},
"bmiddle": {
"url": "https://wx4.sinaimg.cn/wap360/7190e30bgy1gkrx62n8zcj22g40u04fe.jpg",
"width": 360,
"height": 122,
"cut_type": 1,
"type": ""
},
"large": {
"url": "https://wx4.sinaimg.cn/orj960/7190e30bgy1gkrx62n8zcj22g40u04fe.jpg",
"width": 2048,
"height": 697,
"cut_type": 1,
"type": ""
},
"original": {
"url": "https://wx4.sinaimg.cn/orj1080/7190e30bgy1gkrx62n8zcj22g40u04fe.jpg",
"width": 2048,
"height": 697,
"cut_type": 1,
"type": ""
},
"largest": {
"url": "https://wx4.sinaimg.cn/large/7190e30bgy1gkrx62n8zcj22g40u04fe.jpg",
"width": 2048,
"height": 697,
"cut_type": 1,
"type": ""
},
"mw2000": {
"url": "https://wx4.sinaimg.cn/mw2000/7190e30bgy1gkrx62n8zcj22g40u04fe.jpg",
"width": 2000,
"height": 680,
"cut_type": 1,
"type": ""
},
"object_id": "1042018:2cbd7ac98b34e272be06ef4b1d099195",
"pic_id": "7190e30bgy1gkrx62n8zcj22g40u04fe",
"photo_tag": 0,
"type": "pic",
"pic_status": 0
}
},
"is_paid": false,
"mblog_vip_type": 0,
"number_display_strategy": {
"apply_scenario_flag": 3,
"display_text_min_number": 1000000,
"display_text": "100万+"
},
"reposts_count": 0,
"comments_count": 0,
"attitudes_count": 0,
"attitudes_status": 0,
"isLongText": false,
"mlevel": 0,
"content_auth": 0,
"is_show_bulletin": 2,
"comment_manage_info": {
"comment_manage_button": 1,
"comment_permission_type": 0,
"approval_comment_type": 0
},
"share_repost_type": 0,
"topic_struct": [
{
"title": "",
"topic_url": "sinaweibo://searchall?containerid=231522&q=%23%E5%AE%B6%E4%B8%BB%E4%BB%80%E4%B9%88%E9%83%BD%E5%8F%AF%E4%BB%A5%23&extparam=%23%E5%AE%B6%E4%B8%BB%E4%BB%80%E4%B9%88%E9%83%BD%E5%8F%AF%E4%BB%A5%23",
"topic_title": "家主什么都可以",
"is_invalid": 0
}
],
"tag_struct": [
{
"tag_name": "珠江新城",
"tag_scheme": "sinaweibo://cardlist?containerid=2306570042B2094751D365A3FA499B",
"tag_type": 1,
"tag_hidden": 2,
"url_type_pic": "https://h5.sinaimg.cn/upload/2015/07/17/34/timeline_icon_locate.png",
"actionlog": {
"act_code": 2413,
"oid": "1022:100101B2094751D365A3FA499B",
"uicode": "",
"luicode": "",
"fid": "2304131905320715_-_WEIBO_SECOND_PROFILE_WEIBO",
"ext": "orifid:"
},
"oid": "1022:100101B2094751D365A3FA499B",
"otype": "place",
"desc": "广州"
}
],
"title": {
"text": "公开",
"base_color": 1,
"icon_url": "http://h5.sinaimg.cn/upload/2015/07/14/34/timeline_title_public.png"
},
"mblogtype": 0,
"showFeedRepost": false,
"showFeedComment": false,
"rcList": []
},
{
"visible": {
"type": 0,
"list_id": 0
},
"created_at": "Wed Oct 21 09:00:03 +0800 2020",
"id": "4562529927301996",
"idstr": "4562390002435525",
"mid": "4562529927301996",
"mblogid": "Jqb32adAF",
"user": {
"id": 2230631943,
"idstr": "2230631943",
"pc_new": 6,
"screen_name": "新浪新闻品牌官",
"profile_image_url": "https://tvax3.sinaimg.cn/crop.0.0.1002.1002.50/84f4be07ly8gqumiy7ygvj20ru0ruab5.jpg?KID=imgbed,tva&Expires=1623920535&ssig=i8VUARS2ND",
"profile_url": "/u/2230631943",
"verified": true,
"verified_type": 3,
"domain": "weishoufa",
"weihao": "",
"verified_type_ext": 0,
"avatar_large": "https://tvax3.sinaimg.cn/crop.0.0.1002.1002.180/84f4be07ly8gqumiy7ygvj20ru0ruab5.jpg?KID=imgbed,tva&Expires=1623920535&ssig=1%2FT5cKJaiy",
"avatar_hd": "https://tvax3.sinaimg.cn/crop.0.0.1002.1002.1024/84f4be07ly8gqumiy7ygvj20ru0ruab5.jpg?KID=imgbed,tva&Expires=1623920535&ssig=%2BhHmnJMa02",
"follow_me": false,
"following": false,
"mbrank": 6,
"mbtype": 12,
"planet_video": false
},
"can_edit": false,
"text_raw": "这就是传说中的罗小黑本黑吗? @邢立达 http://t.cn/A6bQpSbP ",
"text": "这就是传说中的罗小黑本黑吗? <a href=/n/邢立达>@邢立达</a> <a target=\"_blank\" href=\"http://t.cn/A6bQpSbP\"><img class=\"icon-link\" src=\"https://h5.sinaimg.cn/upload/2015/09/25/3/timeline_card_small_video_default.png\"/>主子万岁的微博视频</a> ",
"textLength": 57,
"source": "微博视频号",
"favorited": false,
"buttons": [
{
"type": "follow",
"name": "加关注",
"pic": "http://u1.sinaimg.cn/upload/2013/06/14/timeline_card_small_button_icon_add.png",
"params": {
"uid": 2230631943,
"extparams": {
"followcardid": "0000010023_4_0_50_6558455571135251740_0_0_0"
}
},
"actionlog": {
"oid": "4562390002435525"
}
}
],
"mark": "followtopweibo",
"rid": "4_0_50_6558455571135251740_0_0_0",
"cardid": "star_1218",
"reads_count": 1021972,
"pic_ids": [],
"geo": "",
"pic_num": 0,
"is_paid": false,
"mblog_vip_type": 0,
"reposts_count": 260,
"comments_count": 163,
"attitudes_count": 1627,
"attitudes_status": 0,
"isLongText": false,
"mlevel": 0,
"content_auth": 0,
"is_show_bulletin": 2,
"comment_manage_info": {
"comment_permission_type": -1,
"approval_comment_type": 0
},
"screen_name_suffix_new": [
{
"content": "新浪新闻品牌官",
"remark": "",
"color": "FF333333",
"dark_color": "FFD3D3D3",
"type": 1,
"truncation": {
"mode": 1
}
},
{
"content": "被",
"color": "FF939393",
"dark_color": "FF888888",
"type": 0,
"truncation": {
"mode": 0
}
},
{
"content": "我",
"remark": "",
"color": "FF333333",
"dark_color": "FFD3D3D3",
"type": 2,
"scheme": "sinaweibo://userinfo?uid=1905320715&featurecode="
},
{
"content": "快转了",
"color": "FF939393",
"dark_color": "FF888888",
"type": 0,
"truncation": {
"mode": 0
}
}
],
"ori_mid": "4562529927301996",
"ori_uid": 1905320715,
"share_repost_type": 0,
"url_struct": [
{
"url_title": "主子万岁的微博视频",
"url_type_pic": "https://h5.sinaimg.cn/upload/2015/09/25/3/timeline_card_small_video.png",
"ori_url": "sinaweibo://video/vvs?mid=4562390002435525&object_id=1034:4562079978291213&url_type=39&object_type=video&pos=1&mark_id=followtopweibo",
"page_id": "2304444562079978291213",
"short_url": "http://t.cn/A6bQpSbP",
"long_url": "https://video.weibo.com/show?fid=1034:4562079978291213",
"url_type": 39,
"result": false,
"actionlog": {
"act_type": 1,
"act_code": 799,
"cardid": "",
"lcardid": "",
"fid": "2304131905320715_-_WEIBO_SECOND_PROFILE_WEIBO",
"mid": "4562390002435525",
"oid": "4562390002435525",
"uuid": 4562079997755565,
"source": "ad",
"ext": "uid:1905320715|mid:4562390002435525|objectid:1034%3A4562079978291213|from:1|object_duration:15.324|miduid:2230631943|rootuid:2230631943|rootmid:4562390002435525|authorid:5859858228|video_orientation:vertical|third_vid:|is_album:0|is_contribution:0|isfan:0|sceneid:feed|uuid:4562079997755565|detail:web|contribution:0|short_video:0|st_video:1|author_mid:4562083288460314|cluster_type_status:Q%2C13%2CZ|is_ad_weibo:followtopweibo",
"code": 14000014,
"mark": "followtopweibo",
"uid": "1905320715"
},
"storage_type": "oss",
"hide": 0,
"object_type": "",
"ttl": 3600,
"need_save_obj": 0
}
],
"mblogtype": 1,
"mblog_menus_new": [
{
"type": "mblog_menus_favorite",
"state_config": [
{
"type": "mblog_menus_favorite"
},
{
"type": "mblog_menus_cancel_favorite"
}
]
},
{
"type": "mblog_menus_video_feedback",
"description": "反馈观看视频时遇到的问题"
},
{
"type": "mblog_menus_report",
"description": "投诉反馈不良微博内容"
},
{
"type": "mblog_menus_special_follow",
"state_config": [
{
"type": "mblog_menus_special_follow",
"description": "首页优先显示TA的内容"
},
{
"type": "mblog_menus_remove_special_follow",
"description": "首页不优先显示TA的内容"
}
]
},
{
"type": "mblog_menus_friend_circle",
"state_config": [
{
"type": "mblog_menus_friend_circle"
},
{
"type": "mblog_menus_friend_circle_add"
}
]
},
{
"type": "mblog_menus_cancel_quick_forward",
"pic": "https://h5.sinaimg.cn/upload/1000/808/2019/11/26/cancel_fast_repost.png",
"name": "取消快转"
}
],
"showFeedRepost": false,
"showFeedComment": false,
"rcList": [],
"page_info": {
"type": "11",
"page_id": "2304444562079978291213",
"object_type": "video",
"object_id": "1034:4562079978291213",
"content1": "主子万岁的微博视频",
"content2": "网友家的小猫咪洗澡的亚子也太可爱了吧![憧憬]罗小黑是你吗?\n\n#原来真的有罗小黑本黑#",
"act_status": 1,
"media_info": {
"video_orientation": "vertical",
"name": "主子万岁的微博视频",
"stream_url": "http://f.video.weibocdn.com/yW1GluYElx07HlJeLZaE010412007Vew0E010.mp4?label=mp4_720p&template=720x1268.24.0&trans_finger=c3f00996be5378650057cf237d7bfffd&ori=0&ps=1CwnkDw1GXwCQx&Expires=1623913335&ssig=opnxA7tbHM&KID=unistore,video",
"stream_url_hd": "http://f.video.weibocdn.com/yW1GluYElx07HlJeLZaE010412007Vew0E010.mp4?label=mp4_720p&template=720x1268.24.0&trans_finger=c3f00996be5378650057cf237d7bfffd&ori=0&ps=1CwnkDw1GXwCQx&Expires=1623913335&ssig=opnxA7tbHM&KID=unistore,video",
"h5_url": "http://f.video.weibocdn.com/yW1GluYElx07HlJeLZaE010412007Vew0E010.mp4?label=mp4_720p&template=720x1268.24.0&trans_finger=c3f00996be5378650057cf237d7bfffd&ori=0&ps=1CwnkDw1GXwCQx&Expires=1623913335&ssig=opnxA7tbHM&KID=unistore,video&mark_id=followtopweibo",
"mp4_sd_url": "http://f.video.weibocdn.com/yW1GluYElx07HlJeLZaE010412007Vew0E010.mp4?label=mp4_720p&template=720x1268.24.0&trans_finger=c3f00996be5378650057cf237d7bfffd&ori=0&ps=1CwnkDw1GXwCQx&Expires=1623913335&ssig=opnxA7tbHM&KID=unistore,video",
"mp4_hd_url": "http://f.video.weibocdn.com/yW1GluYElx07HlJeLZaE010412007Vew0E010.mp4?label=mp4_720p&template=720x1268.24.0&trans_finger=c3f00996be5378650057cf237d7bfffd&ori=0&ps=1CwnkDw1GXwCQx&Expires=1623913335&ssig=opnxA7tbHM&KID=unistore,video",
"h265_mp4_hd": "http://f.video.weibocdn.com/yW1GluYElx07HlJeLZaE010412007Vew0E010.mp4?label=mp4_720p&template=720x1268.24.0&trans_finger=c3f00996be5378650057cf237d7bfffd&ori=0&ps=1CwnkDw1GXwCQx&Expires=1623913335&ssig=opnxA7tbHM&KID=unistore,video",
"h265_mp4_ld": "http://f.video.weibocdn.com/yW1GluYElx07HlJeLZaE010412007Vew0E010.mp4?label=mp4_720p&template=720x1268.24.0&trans_finger=c3f00996be5378650057cf237d7bfffd&ori=0&ps=1CwnkDw1GXwCQx&Expires=1623913335&ssig=opnxA7tbHM&KID=unistore,video",
"inch_4_mp4_hd": "http://f.video.weibocdn.com/yW1GluYElx07HlJeLZaE010412007Vew0E010.mp4?label=mp4_720p&template=720x1268.24.0&trans_finger=c3f00996be5378650057cf237d7bfffd&ori=0&ps=1CwnkDw1GXwCQx&Expires=1623913335&ssig=opnxA7tbHM&KID=unistore,video",
"inch_5_mp4_hd": "http://f.video.weibocdn.com/yW1GluYElx07HlJeLZaE010412007Vew0E010.mp4?label=mp4_720p&template=720x1268.24.0&trans_finger=c3f00996be5378650057cf237d7bfffd&ori=0&ps=1CwnkDw1GXwCQx&Expires=1623913335&ssig=opnxA7tbHM&KID=unistore,video",
"inch_5_5_mp4_hd": "http://f.video.weibocdn.com/yW1GluYElx07HlJeLZaE010412007Vew0E010.mp4?label=mp4_720p&template=720x1268.24.0&trans_finger=c3f00996be5378650057cf237d7bfffd&ori=0&ps=1CwnkDw1GXwCQx&Expires=1623913335&ssig=opnxA7tbHM&KID=unistore,video",
"mp4_720p_mp4": "http://f.video.weibocdn.com/yW1GluYElx07HlJeLZaE010412007Vew0E010.mp4?label=mp4_720p&template=720x1268.24.0&trans_finger=c3f00996be5378650057cf237d7bfffd&ori=0&ps=1CwnkDw1GXwCQx&Expires=1623913335&ssig=opnxA7tbHM&KID=unistore,video",
"hevc_mp4_720p": "",
"prefetch_type": 1,
"prefetch_size": 262144,
"act_status": 1,
"protocol": "general",
"media_id": "4562079978291213",
"origin_total_bitrate": 17651874,
"duration": 15,
"forward_strategy": -1,
"search_scheme": "sinaweibo://svssearch?containerid=232080",
"is_short_video": 0,
"next_title": "这就是传说中的罗小黑本黑吗? @邢立达",
"hevc_mp4_hd": "http://f.video.weibocdn.com/yW1GluYElx07HlJeLZaE010412007Vew0E010.mp4?label=mp4_720p&template=720x1268.24.0&trans_finger=c3f00996be5378650057cf237d7bfffd&ori=0&ps=1CwnkDw1GXwCQx&Expires=1623913335&ssig=opnxA7tbHM&KID=unistore,video",
"play_completion_actions": [
{
"type": "1",
"icon": "http://img.t.sinajs.cn/t6/style/images/face/feed_c_r.png",
"text": "重播",
"link": "",
"btn_code": 1000,
"show_position": 1,
"actionlog": {
"oid": "2304444562079978291213",
"act_code": 1221,
"act_type": 1,
"source": "ad",
"mid": "4562390002435525",
"code": "80000002",
"mark": "followtopweibo",
"ext": ""
}
},
{
"type": 6,
"icon": "https://tvax1.sinaimg.cn/crop.15.0.312.312.180/006ozmOoly8fdnnbub33vj309e08oglz.jpg?KID=imgbed,tva&Expires=1623920535&ssig=y6CJUBc0CE",
"text": "",
"show_position": 56,
"scheme": "sinaweibo://userinfo?uid=5859858228&mark_id=followtopweibo",
"link": "",
"btn_code": 1009,
"actionlog": {
"oid": "2304444562079978291213",
"act_code": 91,
"act_type": 1,
"source": "ad",
"ext": {
"uid": "5859858228",
"user_name": "主子万岁",
"followers_count": 971174,
"verified": true,
"verified_type": 0,
"verified_type_ext": 1,
"verified_reason": "知名萌宠博主",
"level": 3
},
"mid": "4562390002435525",
"mark": "followtopweibo"
},
"ext": {
"uid": "5859858228",
"user_name": "主子万岁",
"followers_count": 971174,
"verified": true,
"verified_type": 0,
"verified_type_ext": 1,
"verified_reason": "知名萌宠博主",
"level": 3
},
"display_mode": 2,
"display_starttime": 4,
"display_endtime": 999999,
"display_type": 1
}
],
"video_publish_time": 1603168093,
"play_loop_type": 0,
"author_mid": "4562083288460314",
"author_name": "主子万岁",
"extra_info": {
"sceneid": "feed"
},
"has_recommend_video": 1,
"video_download_strategy": {
"abandon_download": 0
},
"jump_to": 6,
"online_users": "68.6万次观看",
"online_users_number": 686544,
"music": {
"icon": "https://h5.sinaimg.cn/upload/1019/115/2021/04/28/videofeed_music_icon.png",
"id": 4475163341684741,
"title": "皇家萌卫 - @灵空GTech",
"scheme": "sinaweibo://story/music_shortvideo_list?containerid=2319904475163341684741",
"start_time": 3,
"end_time": 13,
"icon_dark": "https://h5.sinaimg.cn/upload/1019/115/2021/04/28/videofeed_music_icon_dark.png",
"actionlog": {
"act_code": 4958,
"act_type": 1,
"ext": "type:3|mid:4562390002435525|objectid:1034:4562079978291213|uicode:"
}
},
"ttl": 3600,
"storage_type": "oss",
"is_keep_current_mblog": 1,
"playback_list": [
{
"meta": {
"label": "mp4_720p",
"quality_index": 720,
"quality_desc": "高清",
"quality_label": "720p",
"quality_class": "HD",
"type": 1
},
"play_info": {
"type": 1,
"mime": "video/mp4",
"protocol": "general",
"label": "mp4_720p",
"url": "http://f.video.weibocdn.com/yW1GluYElx07HlJeLZaE010412007Vew0E010.mp4?label=mp4_720p&template=720x1268.24.0&trans_finger=c3f00996be5378650057cf237d7bfffd&media_id=4562079978291213&tp=8x8A3El:YTkl0eM8&us=0&ori=1&bf=4&ot=v&lp=00003LoBdy&ps=mZ6WB&uid=24WwXh&ab=3915-g1,966-g1&Expires=1623913335&ssig=opnxA7tbHM&KID=unistore,video",
"bitrate": 985802,
"prefetch_range": "0-418653",
"video_codecs": "avc1.64001f",
"fps": 30,
"width": 720,
"height": 1268,
"size": 1888304,
"duration": 15.324,
"sar": "0.0",
"audio_codecs": "mp4a.40.5",
"audio_sample_rate": 44100,
"quality_label": "720p",
"quality_class": "HD",
"quality_desc": "高清",
"audio_channels": 2,
"audio_sample_fmt": "fltp",
"audio_bits_per_sample": 0,
"watermark": "none",
"extension": {
"transcode_info": {
"ab_strategies": "3915-g1,966-g1"
}
},
"video_decoder": "soft",
"prefetch_enabled": true,
"tcp_receive_buffer": 262144
}
},
{
"meta": {
"label": "mp4_hd",
"quality_index": 480,
"quality_desc": "标清",
"quality_label": "480p",
"quality_class": "SD",
"type": 1
},
"play_info": {
"type": 1,
"mime": "video/mp4",
"protocol": "general",
"label": "mp4_hd",
"url": "http://f.video.weibocdn.com/ZawqhgXqlx07HlJep1WE010412004g8w0E010.mp4?label=mp4_hd&template=480x844.24.0&trans_finger=7c347e6ee1691b93dc7e5726f4ef34b3&media_id=4562079978291213&tp=8x8A3El:YTkl0eM8&us=0&ori=1&bf=4&ot=v&lp=00003LoBdy&ps=mZ6WB&uid=24WwXh&ab=3915-g1,966-g1&Expires=1623913335&ssig=rn%2FAv9Sjz4&KID=unistore,video",
"bitrate": 530067,
"prefetch_range": "0-231598",
"video_codecs": "avc1.64001f",
"fps": 30,
"width": 480,
"height": 844,
"size": 1015344,
"duration": 15.324,
"sar": "0.0",
"audio_codecs": "mp4a.40.5",
"audio_sample_rate": 44100,
"quality_label": "480p",
"quality_class": "SD",
"quality_desc": "标清",
"audio_channels": 2,
"audio_sample_fmt": "fltp",
"audio_bits_per_sample": 0,
"watermark": "none",
"extension": {
"transcode_info": {
"ab_strategies": "3915-g1,966-g1"
}
},
"video_decoder": "soft",
"prefetch_enabled": true,
"tcp_receive_buffer": 262144
}
},
{
"meta": {
"label": "scrubber_hd",
"quality_index": 480,
"quality_desc": "标清",
"quality_label": "480p",
"quality_class": "SD",
"type": 3
},
"play_info": {
"type": 3,
"mime": "image/jpeg",
"protocol": "general",
"label": "scrubber_hd",
"prefetch_range": "0-512000",
"width": 160,
"height": 90,
"quality_label": "480p",
"quality_class": "SD",
"quality_desc": "标清",
"extension": {
"transcode_info": {
"ab_strategies": "3915-g1,966-g1"
}
},
"video_decoder": "soft",
"prefetch_enabled": true,
"tcp_receive_buffer": 262144,
"col": 10,
"row": 10,
"interval": 1,
"offset": 0.5,
"urls": [
"http://wx4.sinaimg.cn/large/006ozmOoly1gjvp4v4ufnj318g0p0dgc.jpg"
]
}
},
{
"meta": {
"label": "mp4_ld",
"quality_index": 360,
"quality_desc": "流畅",
"quality_label": "360p",
"quality_class": "SD",
"type": 1
},
"play_info": {
"type": 1,
"mime": "video/mp4",
"protocol": "general",
"label": "mp4_ld",
"url": "http://f.video.weibocdn.com/mjwtlZMDlx07HlJehAVy010412002Mwb0E010.mp4?label=mp4_ld&template=360x632.24.0&trans_finger=81b11b8c5ffb62d33ceb3244bdd17e7b&media_id=4562079978291213&tp=8x8A3El:YTkl0eM8&us=0&ori=1&bf=4&ot=v&lp=00003LoBdy&ps=mZ6WB&uid=24WwXh&ab=3915-g1,966-g1&Expires=1623913335&ssig=YR50XdNFpF&KID=unistore,video",
"bitrate": 346208,
"prefetch_range": "0-156661",
"video_codecs": "avc1.64001e",
"fps": 30,
"width": 360,
"height": 632,
"size": 663163,
"duration": 15.324,
"sar": "0.0",
"audio_codecs": "mp4a.40.5",
"audio_sample_rate": 44100,
"quality_label": "360p",
"quality_class": "SD",
"quality_desc": "流畅",
"audio_channels": 2,
"audio_sample_fmt": "fltp",
"audio_bits_per_sample": 0,
"watermark": "none",
"extension": {
"transcode_info": {
"ab_strategies": "3915-g1,966-g1"
}
},
"video_decoder": "soft",
"prefetch_enabled": true,
"tcp_receive_buffer": 262144
}
}
],
"author_info": {
"id": 5859858228,
"idstr": "5859858228",
"pc_new": 0,
"screen_name": "主子万岁",
"profile_image_url": "https://tvax1.sinaimg.cn/crop.15.0.312.312.50/006ozmOoly8fdnnbub33vj309e08oglz.jpg?KID=imgbed,tva&Expires=1623920535&ssig=TmhfN4wMD4",
"profile_url": "/u/5859858228",
"verified": true,
"verified_type": 0,
"domain": "",
"weihao": "",
"verified_type_ext": 1,
"avatar_large": "https://tvax1.sinaimg.cn/crop.15.0.312.312.180/006ozmOoly8fdnnbub33vj309e08oglz.jpg?KID=imgbed,tva&Expires=1623920535&ssig=y6CJUBc0CE",
"avatar_hd": "https://tvax1.sinaimg.cn/crop.15.0.312.312.1024/006ozmOoly8fdnnbub33vj309e08oglz.jpg?KID=imgbed,tva&Expires=1623920535&ssig=ES5n8xuvEj",
"follow_me": false,
"following": false,
"mbrank": 6,
"mbtype": 12,
"planet_video": false,
"verified_reason": "知名萌宠博主",
"description": "知名云吸猫会所~合作请联系: Vx:FC0521A ,QQ:951771504",
"location": "北京 朝阳区",
"gender": "f",
"followers_count": 1012666,
"friends_count": 252,
"statuses_count": 2455,
"url": "",
"cover_image_phone": "https://wx4.sinaimg.cn/crop.0.0.640.640.640/006ozmOoly1gqxandu6wrj30n00n0q41.jpg"
}
},
"page_pic": "http://wx1.sinaimg.cn/orj480/006ozmOoly1gjvp4rmtcej30u01gy755.jpg",
"page_title": "主子万岁的微博视频",
"page_url": "sinaweibo://infopage?containerid=2304444562079978291213&containerid=2304444562079978291213&url_type=39&object_type=video&pos=2&allowRedirect=1&disable_interception=1&disable_sinaurl=1&schemewhitelist=%7B%22scheme%22%3A%5B%22.%2A%22%5D%2C%22itunes%22%3A%5B%22.%2A%22%5D%7D&mark_id=followtopweibo",
"pic_info": {
"pic_big": {
"height": "844",
"url": "http://wx1.sinaimg.cn/orj480/006ozmOoly1gjvp4rmtcej30u01gy755.jpg",
"width": "480"
},
"pic_small": {
"height": "844",
"url": "http://wx1.sinaimg.cn/orj480/006ozmOoly1gjvp4rmtcej30u01gy755.jpg",
"width": "480"
},
"pic_middle": {
"url": "http://wx1.sinaimg.cn/orj480/006ozmOoly1gjvp4rmtcej30u01gy755.jpg",
"height": "844",
"width": "480"
}
},
"oid": "5859858228",
"type_icon": "",
"author_id": "5859858228",
"authorid": "5859858228",
"warn": "",
"actionlog": {
"act_type": 1,
"act_code": 799,
"cardid": "",
"lcardid": "",
"fid": "2304131905320715_-_WEIBO_SECOND_PROFILE_WEIBO",
"mid": "4562390002435525",
"oid": "2304444562079978291213",
"uuid": 4562079997755565,
"source": "ad",
"ext": "uid:1905320715|mid:4562390002435525|objectid:1034%3A4562079978291213|from:1|object_duration:15.324|miduid:2230631943|rootuid:2230631943|rootmid:4562390002435525|authorid:5859858228|video_orientation:vertical|third_vid:|is_album:0|is_contribution:0|isfan:0|sceneid:feed|uuid:4562079997755565|detail:native|contribution:0|short_video:0|st_video:1|author_mid:4562083288460314|cluster_type_status:Q%2C13%2CZ|is_ad_weibo:followtopweibo|analysis_card:page_info",
"code": "80000001",
"mark": "followtopweibo"
}
},
"followBtnCode": {
"uid": 2230631943,
"followcardid": "0000010023_4_0_50_6558455571135251740_0_0_0"
}
},
{
"visible": {
"type": 0,
"list_id": 0
},
"created_at": "Sun Aug 09 04:18:13 +0800 2020",
"id": 4535864757584682,
"idstr": "4535864757584682",
"mid": "4535864757584682",
"mblogid": "Jf30nvP7A",
"user": {
"id": 1905320715,
"idstr": "1905320715",
"pc_new": 7,
"screen_name": "浅裤兜-",
"profile_image_url": "https://tvax3.sinaimg.cn/crop.0.0.512.512.50/7190e30bly8fft6l6lu3qj20e80e8q36.jpg?KID=imgbed,tva&Expires=1623920535&ssig=CVNyAmuOEK",
"profile_url": "/u/1905320715",
"verified": false,
"verified_type": -1,
"domain": "",
"weihao": "",
"avatar_large": "https://tvax3.sinaimg.cn/crop.0.0.512.512.180/7190e30bly8fft6l6lu3qj20e80e8q36.jpg?KID=imgbed,tva&Expires=1623920535&ssig=aFKFtG8Rpi",
"avatar_hd": "https://tvax3.sinaimg.cn/crop.0.0.512.512.1024/7190e30bly8fft6l6lu3qj20e80e8q36.jpg?KID=imgbed,tva&Expires=1623920535&ssig=%2FSNzk84PUr",
"follow_me": false,
"following": false,
"mbrank": 1,
"mbtype": 2,
"planet_video": true
},
"can_edit": false,
"text_raw": "你想要江湖,我便给你一座。你想要天下,我就给你一个。而我呢,就想要个签名书本,你给不给?//@烽火戏诸侯:期待雪中动画化[抱抱] 转发里抽取二十人,每人赠送一本雪中悍刀行实体书,签名+印章。",
"text": "你想要江湖,我便给你一座。你想要天下,我就给你一个。而我呢,就想要个签名书本,你给不给?//<a href=/n/烽火戏诸侯>@烽火戏诸侯</a>:期待雪中动画化<img alt=\"[抱抱]\" title=\"[抱抱]\" src=\"//h5.sinaimg.cn/m/emoticon/icon/default/d_baobao-820d2c9a0f.png\" /> 转发里抽取二十人,每人赠送一本雪中悍刀行实体书,签名+印章。",
"source": "HUAWEI Mate30 Pro 5G",
"favorited": false,
"rid": "5_0_50_6558455571135251740_0_0_0",
"reads_count": 1296,
"pic_ids": [],
"geo": "",
"pic_num": 0,
"is_paid": false,
"mblog_vip_type": 0,
"number_display_strategy": {
"apply_scenario_flag": 3,
"display_text_min_number": 1000000,
"display_text": "100万+"
},
"reposts_count": 0,
"comments_count": 0,
"attitudes_count": 0,
"attitudes_status": 0,
"isLongText": false,
"mlevel": 0,
"content_auth": 0,
"is_show_bulletin": 2,
"comment_manage_info": {
"comment_manage_button": 1,
"comment_permission_type": 0,
"approval_comment_type": 0
},
"repost_type": 3,
"share_repost_type": 0,
"topic_struct": [
{
"title": "",
"topic_url": "sinaweibo://searchall?containerid=231522&q=%23%E9%B9%85%E6%AC%A1%E5%85%83%E6%B8%B8%E4%B9%90%E5%9C%BA%23&extparam=%23%E9%B9%85%E6%AC%A1%E5%85%83%E6%B8%B8%E4%B9%90%E5%9C%BA%23",
"topic_title": "鹅次元游乐场",
"is_invalid": 0
},
{
"title": "",
"topic_url": "sinaweibo://searchall?containerid=231522&q=%23%E9%9B%AA%E4%B8%AD%E6%82%8D%E5%88%80%E8%A1%8C%E5%8A%A8%E7%94%BB%23&extparam=%23%E9%9B%AA%E4%B8%AD%E6%82%8D%E5%88%80%E8%A1%8C%E5%8A%A8%E7%94%BB%23",
"topic_title": "雪中悍刀行动画",
"is_invalid": 0
}
],
"url_struct": [
{
"url_title": "网页链接",
"url_type_pic": "https://h5.sinaimg.cn/upload/2015/09/25/3/timeline_card_small_web.png",
"ori_url": "https://v.qq.com/x/page/o0034i0xs4z.html",
"short_url": "http://t.cn/A6U64RTZ",
"long_url": "https://v.qq.com/x/page/o0034i0xs4z.html",
"url_type": 0,
"result": true,
"actionlog": {
"act_type": 1,
"act_code": 300,
"oid": "",
"uuid": "",
"cardid": "",
"lcardid": "",
"uicode": "",
"luicode": "",
"fid": "2304131905320715_-_WEIBO_SECOND_PROFILE_WEIBO",
"lfid": "",
"ext": "mid:4535629331828407|rid:5_0_50_6558455571135251740_0_0_0|short_url:http://t.cn/A6U64RTZ|long_url:https://v.qq.com/x/page/o0034i0xs4z.html|comment_id:|miduid:1905320715|rootmid:4535629331828407|rootuid:7487747591|authorid:|uuid:|is_ad_weibo:0|analysis_card:url_struct"
},
"storage_type": "",
"hide": 0,
"position": 2,
"need_save_obj": 1,
"log": "su=A6U64RTZ&mark=&mid=4535629331828407"
}
],
"title": {
"text": "公开",
"base_color": 1,
"icon_url": "http://h5.sinaimg.cn/upload/2015/07/14/34/timeline_title_public.png"
},
"mblogtype": 0,
"showFeedRepost": false,
"showFeedComment": false,
"rcList": [],
"retweeted_status": {
"visible": {
"type": 0,
"list_id": 0
},
"created_at": "Sat Aug 08 12:42:43 +0800 2020",
"id": 4535629331828407,
"idstr": "4535629331828407",
"mid": "4535629331828407",
"mblogid": "JeWSF7FEr",
"user": {
"id": 7487747591,
"idstr": "7487747591",
"pc_new": 0,
"screen_name": "雪中悍刀行动画官微",
"profile_image_url": "https://tvax1.sinaimg.cn/crop.0.0.678.678.50/008aJPcrly8ghis7wtfy7j30iu0iu75e.jpg?KID=imgbed,tva&Expires=1623920535&ssig=bQy%2Fj1MeNB",
"profile_url": "/u/7487747591",
"verified": true,
"verified_type": 3,
"domain": "",
"weihao": "",
"verified_type_ext": 50,
"avatar_large": "https://tvax1.sinaimg.cn/crop.0.0.678.678.180/008aJPcrly8ghis7wtfy7j30iu0iu75e.jpg?KID=imgbed,tva&Expires=1623920535&ssig=8QOpi%2B8qS6",
"avatar_hd": "https://tvax1.sinaimg.cn/crop.0.0.678.678.1024/008aJPcrly8ghis7wtfy7j30iu0iu75e.jpg?KID=imgbed,tva&Expires=1623920535&ssig=wuEOjglNdJ",
"follow_me": false,
"following": false,
"mbrank": 1,
"mbtype": 2,
"planet_video": true
},
"can_edit": false,
"text_raw": "#鹅次元游乐场#重磅官宣!#雪中悍刀行动画#海报来了!苍茫天地之间,徐凤年身骑白马、腹有良谋,于庙堂与江湖的交错之中仗剑游历,而在暗潮涌动中,各色人马粉墨登场,期待动画到来!\n 播出:@腾讯视频 出品:@企鹅影视 原著:@烽火戏诸侯\nhttp://t.cn/A6U64RTZ ",
"text": "<a href=\"/search/weibo?q=%23%E9%B9%85%E6%AC%A1%E5%85%83%E6%B8%B8%E4%B9%90%E5%9C%BA%23\">#鹅次元游乐场#</a>重磅官宣!<a href=\"/search/weibo?q=%23%E9%9B%AA%E4%B8%AD%E6%82%8D%E5%88%80%E8%A1%8C%E5%8A%A8%E7%94%BB%23\">#雪中悍刀行动画#</a>海报来了!苍茫天地之间,徐凤年身骑白马、腹有良谋,于庙堂与江湖的交错之中仗剑游历,而在暗潮涌动中,各色人马粉墨登场,期待动画到来!<br /> 播出:<a href=/n/腾讯视频>@腾讯视频</a> 出品:<a href=/n/企鹅影视>@企鹅影视</a> 原著:<a href=/n/烽火戏诸侯>@烽火戏诸侯</a><br /><a target=\"_blank\" href=\"https://v.qq.com/x/page/o0034i0xs4z.html\"><img class=\"icon-link\" src=\"https://h5.sinaimg.cn/upload/2015/09/25/3/timeline_card_small_web_default.png\"/>网页链接</a> ",
"textLength": 242,
"source": "小米9",
"favorited": false,
"buttons": [
{
"type": "follow",
"name": "加关注",
"params": {
"uid": 7487747591,
"disable_group": 1,
"extparams": {
"followcardid": "1008080010_"
}
},
"actionlog": {
"act_code": "92",
"oid": "4535629331828407"
}
}
],
"rid": "5_0_50_6558455571135251740_0_0_0",
"pic_ids": [],
"geo": "",
"pic_num": 0,
"is_paid": false,
"mblog_vip_type": 0,
"number_display_strategy": {
"apply_scenario_flag": 3,
"display_text_min_number": 1000000,
"display_text": "100万+"
},
"reposts_count": 4867,
"comments_count": 582,
"attitudes_count": 1142,
"attitudes_status": 0,
"isLongText": false,
"mlevel": 0,
"content_auth": 0,
"is_show_bulletin": 2,
"comment_manage_info": {
"comment_permission_type": -1,
"approval_comment_type": 0
},
"mblogtype": 0,
"showFeedRepost": false,
"showFeedComment": false,
"rcList": []
},
"page_info": {
"type": 0,
"page_id": "231522cf0ff9620b4b33b76728bd43d53c9de5",
"object_type": "topic",
"tips": "35.6万讨论 2.7亿阅读",
"page_desc": "#鹅次元游乐场#正式营业,前方高能来袭,10部人气IP已就位,腾讯视频暑期档动画蓄势待发ing!热血line、玄幻line、青春line……你想看的这里都有!欢乐感动,一键开启,这个夏天追番走起!",
"page_title": "#鹅次元游乐场#",
"page_pic": "https://wx4.sinaimg.cn/large/93b2d7e8ly1ghgyessizaj20dw0dw772.jpg",
"type_icon": "",
"page_url": "sinaweibo://searchall?containerid=231522&q=%23%E9%B9%85%E6%AC%A1%E5%85%83%E6%B8%B8%E4%B9%90%E5%9C%BA%23&extparam=%23%E9%B9%85%E6%AC%A1%E5%85%83%E6%B8%B8%E4%B9%90%E5%9C%BA%23",
"object_id": "1022:231522cf0ff9620b4b33b76728bd43d53c9de5",
"act_status": 0,
"replace": "1",
"actionlog": {
"act_type": 1,
"act_code": 300,
"oid": "1022:231522cf0ff9620b4b33b76728bd43d53c9de5",
"uuid": 4527652512727055,
"cardid": "",
"lcardid": "",
"uicode": "",
"luicode": "",
"fid": "2304131905320715_-_WEIBO_SECOND_PROFILE_WEIBO",
"lfid": "",
"ext": "mid:4535629331828407|rid:5_0_50_6558455571135251740_0_0_0|short_url:|long_url:|comment_id:|miduid:1905320715|rootmid:4535629331828407|rootuid:7487747591|authorid:|uuid:4527652512727055|is_ad_weibo:0|analysis_card:page_info"
},
"buttons": [
{
"name": "发博",
"pic": "https://n.sinaimg.cn/photo/5b5e52aa/20170614/topic_post_weibo.png",
"type": "link",
"params": {
"scheme": "sinaweibo://sendweibo?title=参与话题&content=#鹅次元游乐场#&need_follow=1&extparam=topicfb_fr%3awbcard"
},
"sub_type": 0,
"actionlog": {
"act_code": 577,
"oid": "231522cf0ff9620b4b33b76728bd43d53c9de5",
"cardid": "",
"uicode": "",
"fid": "2304131905320715_-_WEIBO_SECOND_PROFILE_WEIBO",
"ext": "mid:4535864757584682|rid:5_0_50_6558455571135251740_0_0_0|third_party_scheme_protocol:|action:发博"
}
}
]
}
},
{
"visible": {
"type": 0,
"list_id": 0
},
"created_at": "Thu Feb 13 15:14:10 +0800 2020",
"id": 4471524792342898,
"idstr": "4471524792342898",
"mid": "4471524792342898",
"mblogid": "Iu0Gz9PuG",
"user": {
"id": 1905320715,
"idstr": "1905320715",
"pc_new": 7,
"screen_name": "浅裤兜-",
"profile_image_url": "https://tvax3.sinaimg.cn/crop.0.0.512.512.50/7190e30bly8fft6l6lu3qj20e80e8q36.jpg?KID=imgbed,tva&Expires=1623920535&ssig=CVNyAmuOEK",
"profile_url": "/u/1905320715",
"verified": false,
"verified_type": -1,
"domain": "",
"weihao": "",
"avatar_large": "https://tvax3.sinaimg.cn/crop.0.0.512.512.180/7190e30bly8fft6l6lu3qj20e80e8q36.jpg?KID=imgbed,tva&Expires=1623920535&ssig=aFKFtG8Rpi",
"avatar_hd": "https://tvax3.sinaimg.cn/crop.0.0.512.512.1024/7190e30bly8fft6l6lu3qj20e80e8q36.jpg?KID=imgbed,tva&Expires=1623920535&ssig=%2FSNzk84PUr",
"follow_me": false,
"following": false,
"mbrank": 1,
"mbtype": 2,
"planet_video": true
},
"can_edit": false,
"text_raw": "mark",
"text": "mark",
"source": "HUAWEI Mate30 Pro 5G",
"favorited": false,
"rid": "6_0_50_6558455571135251740_0_0_0",
"reads_count": 1547,
"pic_ids": [],
"geo": "",
"pic_num": 0,
"is_paid": false,
"mblog_vip_type": 0,
"number_display_strategy": {
"apply_scenario_flag": 3,
"display_text_min_number": 1000000,
"display_text": "100万+"
},
"reposts_count": 0,
"comments_count": 0,
"attitudes_count": 1,
"attitudes_status": 0,
"isLongText": false,
"mlevel": 0,
"content_auth": 0,
"is_show_bulletin": 2,
"comment_manage_info": {
"comment_manage_button": 1,
"comment_permission_type": 0,
"approval_comment_type": 0
},
"repost_type": 1,
"share_repost_type": 0,
"topic_struct": [
{
"title": "",
"topic_url": "sinaweibo://searchall?containerid=231522&q=%23%E5%AE%85%E5%9C%A8%E5%AE%B6%E7%9A%84%E4%B8%89%E4%B8%AA%E9%98%B6%E6%AE%B5%23&extparam=%23%E5%AE%85%E5%9C%A8%E5%AE%B6%E7%9A%84%E4%B8%89%E4%B8%AA%E9%98%B6%E6%AE%B5%23",
"topic_title": "宅在家的三个阶段",
"is_invalid": 0
}
],
"url_struct": [
{
"url_title": "腾讯视频的微博视频",
"url_type_pic": "https://h5.sinaimg.cn/upload/2015/09/25/3/timeline_card_small_video.png",
"ori_url": "sinaweibo://video/vvs?mid=4471508887462750&object_id=1034:4466816177864742&url_type=39&object_type=video&pos=1",
"page_id": "2304444466816177864742",
"short_url": "http://t.cn/A6PKrWY5",
"long_url": "https://video.weibo.com/show?fid=1034:4466816177864742",
"url_type": 39,
"result": false,
"actionlog": {
"act_type": 1,
"act_code": 799,
"cardid": "",
"lcardid": "",
"fid": "2304131905320715_-_WEIBO_SECOND_PROFILE_WEIBO",
"mid": "4471508887462750",
"oid": "1034:4466816177864742",
"uuid": 4466816184222028,
"source": "video",
"ext": "uid:1905320715|mid:4471524792342898|objectid:1034%3A4466816177864742|from:1|object_duration:11.586|miduid:1905320715|rootuid:1640601392|rootmid:4471508887462750|authorid:2591595652|video_orientation:vertical|third_vid:|is_album:0|is_contribution:0|isfan:0|sceneid:feed|uuid:4466816184222028|detail:web|contribution:0|short_video:0|st_video:1|author_mid:4466817689396488|cluster_type_status:Q%2C13|is_ad_weibo:0"
},
"storage_type": "oss",
"hide": 0,
"object_type": "",
"ttl": 3600,
"need_save_obj": 0
}
],
"title": {
"text": "公开",
"base_color": 1,
"icon_url": "http://h5.sinaimg.cn/upload/2015/07/14/34/timeline_title_public.png"
},
"mblogtype": 0,
"showFeedRepost": false,
"showFeedComment": false,
"rcList": [],
"retweeted_status": {
"visible": {
"type": 0,
"list_id": 0
},
"created_at": "Thu Feb 13 14:10:58 +0800 2020",
"id": 4471508887462750,
"idstr": "4471508887462750",
"mid": "4471508887462750",
"mblogid": "Iu0gUvjoW",
"user": {
"id": 1640601392,
"idstr": "1640601392",
"pc_new": 6,
"screen_name": "新浪视频",
"profile_image_url": "https://tvax3.sinaimg.cn/crop.0.0.100.100.50/61c99730ly8gdijzohva4j202s02sdfo.jpg?KID=imgbed,tva&Expires=1623920535&ssig=7Eu6%2FKre%2B7",
"profile_url": "/u/1640601392",
"verified": true,
"verified_type": 3,
"domain": "video",
"weihao": "",
"verified_type_ext": 0,
"avatar_large": "https://tvax3.sinaimg.cn/crop.0.0.100.100.180/61c99730ly8gdijzohva4j202s02sdfo.jpg?KID=imgbed,tva&Expires=1623920535&ssig=rStTavd%2FtL",
"avatar_hd": "https://tvax3.sinaimg.cn/crop.0.0.100.100.1024/61c99730ly8gdijzohva4j202s02sdfo.jpg?KID=imgbed,tva&Expires=1623920535&ssig=AfnCNrmmo2",
"follow_me": false,
"following": false,
"mbrank": 3,
"mbtype": 2,
"planet_video": false
},
"can_edit": false,
"text_raw": "#宅在家的三个阶段# 宅在家里的小伙伴们要记得运动运动呀,简单易学的几个动作mark一下![可爱]http://t.cn/A6PKrWY5 ",
"text": "<a href=\"/search/weibo?q=%23%E5%AE%85%E5%9C%A8%E5%AE%B6%E7%9A%84%E4%B8%89%E4%B8%AA%E9%98%B6%E6%AE%B5%23\">#宅在家的三个阶段#</a> 宅在家里的小伙伴们要记得运动运动呀,简单易学的几个动作mark一下!<img alt=\"[可爱]\" title=\"[可爱]\" src=\"//h5.sinaimg.cn/m/emoticon/icon/default/d_keai-9aae643ce8.png\" /><a target=\"_blank\" href=\"http://t.cn/A6PKrWY5\"><img class=\"icon-link\" src=\"https://h5.sinaimg.cn/upload/2015/09/25/3/timeline_card_small_video_default.png\"/>腾讯视频的微博视频</a> ",
"textLength": 109,
"source": "微博视频号",
"favorited": false,
"buttons": [
{
"type": "follow",
"name": "加关注",
"params": {
"uid": 1640601392,
"disable_group": 1,
"extparams": {
"followcardid": "1008080010_"
}
},
"actionlog": {
"act_code": "92",
"oid": "4471508887462750"
}
}
],
"rid": "6_0_50_6558455571135251740_0_0_0",
"pic_ids": [],
"geo": "",
"pic_num": 0,
"is_paid": false,
"mblog_vip_type": 0,
"reposts_count": 2512,
"comments_count": 157,
"attitudes_count": 3084,
"attitudes_status": 0,
"isLongText": false,
"mlevel": 0,
"content_auth": 0,
"is_show_bulletin": 2,
"comment_manage_info": {
"comment_permission_type": -1,
"approval_comment_type": 1
},
"mblogtype": 0,
"showFeedRepost": false,
"showFeedComment": false,
"rcList": []
},
"page_info": {
"type": "11",
"page_id": "2304444466816177864742",
"object_type": "video",
"object_id": "1034:4466816177864742",
"content1": "腾讯视频的微博视频",
"content2": "宅在家里的乖宝宝们也要记得运动运动呀,简单易学的几个动作mark一下![给你小心心] ",
"act_status": 1,
"media_info": {
"video_orientation": "vertical",
"name": "腾讯视频的微博视频",
"stream_url": "http://f.video.weibocdn.com/003vnq0Olx07AAqyUJXG0104120039zn0E010.mp4?label=mp4_ld&template=352x640.24.0&trans_finger=81b11b8c5ffb62d33ceb3244bdd17e7b&ori=0&ps=1CwnkDw1GXwCQx&Expires=1623913335&ssig=Qkc7bWHXsM&KID=unistore,video",
"stream_url_hd": "http://f.video.weibocdn.com/000x5EJWlx07AAqyX8fe010412003ixT0E010.mp4?label=mp4_hd&template=352x640.24.0&trans_finger=6038099a530779e853bb78b617dbd3ab&ori=0&ps=1CwnkDw1GXwCQx&Expires=1623913335&ssig=yPdncmzgw4&KID=unistore,video",
"h5_url": "https://video.weibo.com/show?fid=1034:4466816177864742",
"mp4_sd_url": "http://f.video.weibocdn.com/003vnq0Olx07AAqyUJXG0104120039zn0E010.mp4?label=mp4_ld&template=352x640.24.0&trans_finger=81b11b8c5ffb62d33ceb3244bdd17e7b&ori=0&ps=1CwnkDw1GXwCQx&Expires=1623913335&ssig=Qkc7bWHXsM&KID=unistore,video",
"mp4_hd_url": "http://f.video.weibocdn.com/000x5EJWlx07AAqyX8fe010412003ixT0E010.mp4?label=mp4_hd&template=352x640.24.0&trans_finger=6038099a530779e853bb78b617dbd3ab&ori=0&ps=1CwnkDw1GXwCQx&Expires=1623913335&ssig=yPdncmzgw4&KID=unistore,video",
"h265_mp4_hd": "",
"h265_mp4_ld": "",
"inch_4_mp4_hd": "",
"inch_5_mp4_hd": "",
"inch_5_5_mp4_hd": "",
"mp4_720p_mp4": "",
"hevc_mp4_720p": "",
"prefetch_type": 1,
"prefetch_size": 262144,
"act_status": 1,
"protocol": "general",
"media_id": "4466816177864742",
"origin_total_bitrate": 0,
"duration": 11,
"forward_strategy": -1,
"search_scheme": "sinaweibo://svssearch?containerid=232080",
"is_short_video": 0,
"next_title": "#宅在家的三个阶段# 宅在家里的小伙伴们要记得运动运动呀,简单易学的几个动作mark一下![可爱]",
"play_completion_actions": [
{
"type": "1",
"icon": "http://img.t.sinajs.cn/t6/style/images/face/feed_c_r.png",
"text": "重播",
"link": "",
"btn_code": 1000,
"show_position": 1,
"actionlog": {
"oid": "2304444466816177864742",
"act_code": 1221,
"act_type": 0,
"source": "video"
}
},
{
"type": 6,
"icon": "https://tvax4.sinaimg.cn/crop.0.0.996.996.180/9a789c84ly8gdiofqyuh7j20ro0roaaf.jpg?KID=imgbed,tva&Expires=1623920535&ssig=22kz4t5XiX",
"text": "",
"show_position": 56,
"scheme": "sinaweibo://userinfo?uid=2591595652",
"link": "",
"btn_code": 1009,
"actionlog": {
"oid": "2304444466816177864742",
"act_code": 91,
"act_type": 0,
"source": "video",
"ext": "mid:4471508887462750|oid:1034:4466816177864742|muid:1640601392|authorid:2591595652"
},
"ext": {
"uid": "2591595652",
"user_name": "腾讯视频",
"followers_count": 15996841,
"verified": true,
"verified_type": 3,
"verified_reason": "腾讯视频官方微博",
"level": 3
},
"display_mode": 2,
"display_starttime": 4,
"display_endtime": 999999,
"display_type": 1
}
],
"video_publish_time": 1580455430,
"play_loop_type": 0,
"author_mid": "4466817689396488",
"author_name": "腾讯视频",
"extra_info": {
"sceneid": "feed"
},
"has_recommend_video": 1,
"video_download_strategy": {
"abandon_download": 0
},
"jump_to": 6,
"online_users": "260万次观看",
"online_users_number": 2604345,
"bottom_banner": {
"title_color": "#EFD464",
"type": 52,
"title": "相关热点:全国女孩即将面临的问题",
"left_icon": "https://h5.sinaimg.cn/upload/1019/115/2021/04/29/videofeed_hot_icon.png",
"start_time": 3,
"end_time": 13,
"left_icon_dark": "https://h5.sinaimg.cn/upload/1019/115/2021/04/29/videofeed_hot_icon_dark.png",
"actionlog": {
"act_code": 4958,
"act_type": 1,
"ext": "type:1|mid:4471508887462750|objectid:1034:4466816177864742|uicode:"
}
},
"ttl": 3600,
"storage_type": "oss",
"is_keep_current_mblog": 0,
"playback_list": [
{
"meta": {
"label": "mp4_hd",
"quality_index": 480,
"quality_desc": "标清",
"quality_label": "480p",
"quality_class": "SD",
"type": 1
},
"play_info": {
"type": 1,
"mime": "video/mp4",
"protocol": "general",
"label": "mp4_hd",
"url": "http://f.video.weibocdn.com/000x5EJWlx07AAqyX8fe010412003ixT0E010.mp4?label=mp4_hd&template=352x640.24.0&trans_finger=6038099a530779e853bb78b617dbd3ab&media_id=4466816177864742&tp=8x8A3El:YTkl0eM8&us=0&ori=1&bf=4&ot=v&lp=00003LoBdy&ps=mZ6WB&uid=24WwXh&ab=3915-g1,966-g1&Expires=1623913335&ssig=yPdncmzgw4&KID=unistore,video",
"bitrate": 542915,
"prefetch_range": "0-203280",
"video_codecs": "avc1.64001e",
"fps": 24,
"width": 352,
"height": 640,
"size": 786277,
"duration": 11.586,
"sar": "0.0",
"audio_codecs": "mp4a.40.5",
"audio_sample_rate": 44100,
"quality_label": "480p",
"quality_class": "SD",
"quality_desc": "标清",
"audio_channels": 2,
"audio_sample_fmt": "fltp",
"audio_bits_per_sample": 0,
"watermark": "none",
"extension": {
"transcode_info": {
"ab_strategies": "3915-g1,966-g1"
}
},
"video_decoder": "soft",
"prefetch_enabled": true,
"tcp_receive_buffer": 262144
}
},
{
"meta": {
"label": "mp4_ld",
"quality_index": 360,
"quality_desc": "流畅",
"quality_label": "360p",
"quality_class": "SD",
"type": 1
},
"play_info": {
"type": 1,
"mime": "video/mp4",
"protocol": "general",
"label": "mp4_ld",
"url": "http://f.video.weibocdn.com/003vnq0Olx07AAqyUJXG0104120039zn0E010.mp4?label=mp4_ld&template=352x640.24.0&trans_finger=81b11b8c5ffb62d33ceb3244bdd17e7b&media_id=4466816177864742&tp=8x8A3El:YTkl0eM8&us=0&ori=1&bf=4&ot=v&lp=00003LoBdy&ps=mZ6WB&uid=24WwXh&ab=3915-g1,966-g1&Expires=1623913335&ssig=Qkc7bWHXsM&KID=unistore,video",
"bitrate": 519090,
"prefetch_range": "0-193923",
"video_codecs": "avc1.64001e",
"fps": 24,
"width": 352,
"height": 640,
"size": 751773,
"duration": 11.586,
"sar": "0.0",
"audio_codecs": "mp4a.40.5",
"audio_sample_rate": 44100,
"quality_label": "360p",
"quality_class": "SD",
"quality_desc": "流畅",
"audio_channels": 2,
"audio_sample_fmt": "fltp",
"audio_bits_per_sample": 0,
"watermark": "none",
"extension": {
"transcode_info": {
"ab_strategies": "3915-g1,966-g1"
}
},
"video_decoder": "soft",
"prefetch_enabled": true,
"tcp_receive_buffer": 262144
}
}
],
"author_info": {
"id": 2591595652,
"idstr": "2591595652",
"pc_new": 0,
"screen_name": "腾讯视频",
"profile_image_url": "https://tvax4.sinaimg.cn/crop.0.0.996.996.50/9a789c84ly8gdiofqyuh7j20ro0roaaf.jpg?KID=imgbed,tva&Expires=1623920535&ssig=Z3vxTdZA0s",
"profile_url": "/u/2591595652",
"verified": true,
"verified_type": 3,
"domain": "ilovevideo",
"weihao": "",
"verified_type_ext": 0,
"avatar_large": "https://tvax4.sinaimg.cn/crop.0.0.996.996.180/9a789c84ly8gdiofqyuh7j20ro0roaaf.jpg?KID=imgbed,tva&Expires=1623920535&ssig=22kz4t5XiX",
"avatar_hd": "https://tvax4.sinaimg.cn/crop.0.0.996.996.1024/9a789c84ly8gdiofqyuh7j20ro0roaaf.jpg?KID=imgbed,tva&Expires=1623920535&ssig=wzGF%2FfOAY7",
"follow_me": false,
"following": false,
"mbrank": 7,
"mbtype": 12,
"planet_video": false,
"verified_reason": "腾讯视频官方微博",
"description": "腾讯视频(v.qq.com)定位于中国领先的综合视频门户,内容以电影、电视剧、综艺为主,同时发力诸多维度频道运营,最大限度贴合用户在线视频观看需要。",
"location": "广东",
"gender": "m",
"followers_count": 15996919,
"friends_count": 3405,
"statuses_count": 109647,
"url": "http://123456.qzone.qq.com/",
"cover_image_phone": "https://wx3.sinaimg.cn/crop.0.0.640.640.640/002Po4pSly1grc9mjxmnnj60u00u0qh302.jpg"
}
},
"page_pic": "https://wx1.sinaimg.cn/large/9a789c84ly1gbfrv8acqcj209s0hsdgy.jpg",
"page_title": "腾讯视频的微博视频",
"page_url": "sinaweibo://infopage?containerid=2304444466816177864742&containerid=2304444466816177864742&url_type=39&object_type=video&pos=2",
"pic_info": {
"pic_big": {
"height": "640",
"url": "https://wx1.sinaimg.cn/large/9a789c84ly1gbfrv8acqcj209s0hsdgy.jpg",
"width": "352"
},
"pic_small": {
"height": "640",
"url": "https://wx1.sinaimg.cn/large/9a789c84ly1gbfrv8acqcj209s0hsdgy.jpg",
"width": "352"
},
"pic_middle": {
"url": "https://wx1.sinaimg.cn/large/9a789c84ly1gbfrv8acqcj209s0hsdgy.jpg",
"height": "640",
"width": "352"
}
},
"oid": "2591595652",
"type_icon": "",
"author_id": "2591595652",
"authorid": "2591595652",
"warn": "",
"actionlog": {
"act_type": 1,
"act_code": 799,
"cardid": "",
"lcardid": "",
"fid": "2304131905320715_-_WEIBO_SECOND_PROFILE_WEIBO",
"mid": "4471508887462750",
"oid": "1034:4466816177864742",
"uuid": 4466816184222028,
"source": "video",
"ext": "uid:1905320715|mid:4471524792342898|objectid:1034%3A4466816177864742|from:1|object_duration:11.586|miduid:1905320715|rootuid:1640601392|rootmid:4471508887462750|authorid:2591595652|video_orientation:vertical|third_vid:|is_album:0|is_contribution:0|isfan:0|sceneid:feed|uuid:4466816184222028|detail:native|contribution:0|short_video:0|st_video:1|author_mid:4466817689396488|cluster_type_status:Q%2C13|is_ad_weibo:0|analysis_card:page_info"
}
}
},
{
"visible": {
"type": 0,
"list_id": 0
},
"created_at": "Fri Nov 29 10:12:30 +0800 2019",
"id": 4443907398489697,
"idstr": "4443907398489697",
"mid": "4443907398489697",
"mblogid": "IiqenzCyB",
"user": {
"id": 1905320715,
"idstr": "1905320715",
"pc_new": 7,
"screen_name": "浅裤兜-",
"profile_image_url": "https://tvax3.sinaimg.cn/crop.0.0.512.512.50/7190e30bly8fft6l6lu3qj20e80e8q36.jpg?KID=imgbed,tva&Expires=1623920535&ssig=CVNyAmuOEK",
"profile_url": "/u/1905320715",
"verified": false,
"verified_type": -1,
"domain": "",
"weihao": "",
"avatar_large": "https://tvax3.sinaimg.cn/crop.0.0.512.512.180/7190e30bly8fft6l6lu3qj20e80e8q36.jpg?KID=imgbed,tva&Expires=1623920535&ssig=aFKFtG8Rpi",
"avatar_hd": "https://tvax3.sinaimg.cn/crop.0.0.512.512.1024/7190e30bly8fft6l6lu3qj20e80e8q36.jpg?KID=imgbed,tva&Expires=1623920535&ssig=%2FSNzk84PUr",
"follow_me": false,
"following": false,
"mbrank": 1,
"mbtype": 2,
"planet_video": true
},
"can_edit": false,
"text_raw": "分享图片 ",
"text": "分享图片 ",
"textLength": 8,
"source": "iPhone客户端",
"favorited": false,
"rid": "7_0_50_6558455571135251740_0_0_0",
"reads_count": 1701,
"pic_ids": [
"7190e30bgy1g9eotlr0yuj22c01vl4qp"
],
"geo": "",
"pic_num": 1,
"pic_infos": {
"7190e30bgy1g9eotlr0yuj22c01vl4qp": {
"thumbnail": {
"url": "https://wx2.sinaimg.cn/wap180/7190e30bgy1g9eotlr0yuj22c01vl4qp.jpg",
"width": 180,
"height": 144,
"cut_type": 1,
"type": ""
},
"bmiddle": {
"url": "https://wx2.sinaimg.cn/wap360/7190e30bgy1g9eotlr0yuj22c01vl4qp.jpg",
"width": 360,
"height": 289,
"cut_type": 1,
"type": ""
},
"large": {
"url": "https://wx2.sinaimg.cn/orj960/7190e30bgy1g9eotlr0yuj22c01vl4qp.jpg",
"width": 1193,
"height": 960,
"cut_type": 1,
"type": ""
},
"original": {
"url": "https://wx2.sinaimg.cn/orj1080/7190e30bgy1g9eotlr0yuj22c01vl4qp.jpg",
"width": 1342,
"height": 1080,
"cut_type": 1,
"type": ""
},
"largest": {
"url": "https://wx2.sinaimg.cn/large/7190e30bgy1g9eotlr0yuj22c01vl4qp.jpg",
"width": 2048,
"height": 1647,
"cut_type": 1,
"type": ""
},
"mw2000": {
"url": "https://wx2.sinaimg.cn/mw2000/7190e30bgy1g9eotlr0yuj22c01vl4qp.jpg",
"width": 2000,
"height": 1609,
"cut_type": 1,
"type": ""
},
"object_id": "1042018:2dc6be71534a8e2ae82f113b7249b7ee",
"pic_id": "7190e30bgy1g9eotlr0yuj22c01vl4qp",
"photo_tag": 0,
"video": "https://video.weibo.com/media/play?livephoto=https%3A%2F%2Fus.sinaimg.cn%2F001Isic1gx07yXAF2iTe0f0f0100aZ5A0k01.mov",
"type": "livephoto",
"fid": "001Isic1gx07yXAF2iTe0f0f0100aZ5A0k01",
"pic_status": 0
}
},
"is_paid": false,
"mblog_vip_type": 0,
"number_display_strategy": {
"apply_scenario_flag": 3,
"display_text_min_number": 1000000,
"display_text": "100万+"
},
"reposts_count": 0,
"comments_count": 0,
"attitudes_count": 0,
"attitudes_status": 0,
"isLongText": false,
"mlevel": 0,
"content_auth": 0,
"is_show_bulletin": 2,
"comment_manage_info": {
"comment_manage_button": 1,
"comment_permission_type": 0,
"approval_comment_type": 0
},
"share_repost_type": 0,
"title": {
"text": "公开",
"base_color": 1,
"icon_url": "http://h5.sinaimg.cn/upload/2015/07/14/34/timeline_title_public.png"
},
"mblogtype": 0,
"showFeedRepost": false,
"showFeedComment": false,
"rcList": []
},
{
"visible": {
"type": 0,
"list_id": 0
},
"created_at": "Thu Feb 21 14:08:57 +0800 2019",
"id": 4342135912073268,
"idstr": "4342135912073268",
"mid": "4342135912073268",
"mblogid": "HhG998HlO",
"user": {
"id": 1905320715,
"idstr": "1905320715",
"pc_new": 7,
"screen_name": "浅裤兜-",
"profile_image_url": "https://tvax3.sinaimg.cn/crop.0.0.512.512.50/7190e30bly8fft6l6lu3qj20e80e8q36.jpg?KID=imgbed,tva&Expires=1623920535&ssig=CVNyAmuOEK",
"profile_url": "/u/1905320715",
"verified": false,
"verified_type": -1,
"domain": "",
"weihao": "",
"avatar_large": "https://tvax3.sinaimg.cn/crop.0.0.512.512.180/7190e30bly8fft6l6lu3qj20e80e8q36.jpg?KID=imgbed,tva&Expires=1623920535&ssig=aFKFtG8Rpi",
"avatar_hd": "https://tvax3.sinaimg.cn/crop.0.0.512.512.1024/7190e30bly8fft6l6lu3qj20e80e8q36.jpg?KID=imgbed,tva&Expires=1623920535&ssig=%2FSNzk84PUr",
"follow_me": false,
"following": false,
"mbrank": 1,
"mbtype": 2,
"planet_video": true
},
"can_edit": false,
"text_raw": "我刚刚完成了《流浪地球》细节信息挑战,得了 81 分。据说二刷都很难拿满分,敢不敢来挑战下? #流浪地球细节信息挑战# http://t.cn/EclO9OI ",
"text": "我刚刚完成了《流浪地球》细节信息挑战,得了 81 分。据说二刷都很难拿满分,敢不敢来挑战下? <a href=\"/search/weibo?q=%23%E6%B5%81%E6%B5%AA%E5%9C%B0%E7%90%83%E7%BB%86%E8%8A%82%E4%BF%A1%E6%81%AF%E6%8C%91%E6%88%98%23\">#流浪地球细节信息挑战#</a> <a target=\"_blank\" href=\"http://weibo.cn/sinaurl?toasturl=http%3A%2F%2Fwww.arealme.cn%2Fwandering-earth-trivia-quiz%2Fcn%2F12072761\"><img class=\"icon-link\" src=\"https://h5.sinaimg.cn/upload/2015/09/25/3/timeline_card_small_web_default.png\"/>网页链接</a> ",
"textLength": 131,
"source": "分享按钮",
"favorited": false,
"rid": "8_0_50_6558455571135251740_0_0_0",
"reads_count": 2900,
"pic_ids": [],
"geo": "",
"pic_num": 0,
"is_paid": false,
"mblog_vip_type": 0,
"number_display_strategy": {
"apply_scenario_flag": 3,
"display_text_min_number": 1000000,
"display_text": "100万+"
},
"reposts_count": 0,
"comments_count": 0,
"attitudes_count": 1,
"attitudes_status": 0,
"isLongText": false,
"mlevel": 0,
"content_auth": 0,
"is_show_bulletin": 2,
"comment_manage_info": {
"comment_manage_button": 1,
"comment_permission_type": 0,
"approval_comment_type": 0
},
"share_repost_type": 0,
"topic_struct": [
{
"title": "",
"topic_url": "sinaweibo://searchall?containerid=231522&q=%23%E6%B5%81%E6%B5%AA%E5%9C%B0%E7%90%83%E7%BB%86%E8%8A%82%E4%BF%A1%E6%81%AF%E6%8C%91%E6%88%98%23&extparam=%23%E6%B5%81%E6%B5%AA%E5%9C%B0%E7%90%83%E7%BB%86%E8%8A%82%E4%BF%A1%E6%81%AF%E6%8C%91%E6%88%98%23",
"topic_title": "流浪地球细节信息挑战",
"is_invalid": 0
}
],
"url_struct": [
{
"url_title": "网页链接",
"url_type_pic": "https://h5.sinaimg.cn/upload/2015/09/25/3/timeline_card_small_web.png",
"ori_url": "http://weibo.cn/sinaurl?toasturl=http%3A%2F%2Fwww.arealme.cn%2Fwandering-earth-trivia-quiz%2Fcn%2F12072761",
"short_url": "http://t.cn/EclO9OI",
"long_url": "http://www.arealme.cn/wandering-earth-trivia-quiz/cn/12072761",
"url_type": 0,
"result": true,
"actionlog": {
"act_type": 1,
"act_code": 300,
"oid": "",
"uuid": "",
"cardid": "",
"lcardid": "",
"uicode": "",
"luicode": "",
"fid": "2304131905320715_-_WEIBO_SECOND_PROFILE_WEIBO",
"lfid": "",
"ext": "mid:4342135912073268|rid:8_0_50_6558455571135251740_0_0_0|short_url:http://t.cn/EclO9OI|long_url:http://www.arealme.cn/wandering-earth-trivia-quiz/cn/12072761|comment_id:|miduid:1905320715|rootmid:4342135912073268|rootuid:1905320715|authorid:|uuid:|is_ad_weibo:0|analysis_card:url_struct"
},
"storage_type": "",
"hide": 0,
"position": 2,
"need_save_obj": 1,
"log": "su=EclO9OI&mark=&mid=4342135912073268"
}
],
"title": {
"text": "公开",
"base_color": 1,
"icon_url": "http://h5.sinaimg.cn/upload/2015/07/14/34/timeline_title_public.png"
},
"mblogtype": 0,
"showFeedRepost": false,
"showFeedComment": false,
"rcList": []
},
{
"visible": {
"type": 0,
"list_id": 0
},
"created_at": "Tue Feb 12 16:48:43 +0800 2019",
"id": 4338914627875219,
"idstr": "4338914627875219",
"mid": "4338914627875219",
"mblogid": "Hgklwx2HF",
"user": {
"id": 1905320715,
"idstr": "1905320715",
"pc_new": 7,
"screen_name": "浅裤兜-",
"profile_image_url": "https://tvax3.sinaimg.cn/crop.0.0.512.512.50/7190e30bly8fft6l6lu3qj20e80e8q36.jpg?KID=imgbed,tva&Expires=1623920535&ssig=CVNyAmuOEK",
"profile_url": "/u/1905320715",
"verified": false,
"verified_type": -1,
"domain": "",
"weihao": "",
"avatar_large": "https://tvax3.sinaimg.cn/crop.0.0.512.512.180/7190e30bly8fft6l6lu3qj20e80e8q36.jpg?KID=imgbed,tva&Expires=1623920535&ssig=aFKFtG8Rpi",
"avatar_hd": "https://tvax3.sinaimg.cn/crop.0.0.512.512.1024/7190e30bly8fft6l6lu3qj20e80e8q36.jpg?KID=imgbed,tva&Expires=1623920535&ssig=%2FSNzk84PUr",
"follow_me": false,
"following": false,
"mbrank": 1,
"mbtype": 2,
"planet_video": true
},
"can_edit": false,
"text_raw": "马克",
"text": "马克",
"source": "iPhone客户端",
"favorited": false,
"rid": "9_0_50_6558455571135251740_0_0_0",
"reads_count": 2702,
"pic_ids": [],
"geo": "",
"pic_num": 0,
"is_paid": false,
"mblog_vip_type": 0,
"number_display_strategy": {
"apply_scenario_flag": 3,
"display_text_min_number": 1000000,
"display_text": "100万+"
},
"reposts_count": 0,
"comments_count": 0,
"attitudes_count": 0,
"attitudes_status": 0,
"isLongText": false,
"mlevel": 2,
"content_auth": 0,
"is_show_bulletin": 2,
"comment_manage_info": {
"comment_manage_button": 1,
"comment_permission_type": 0,
"approval_comment_type": 0
},
"share_repost_type": 2,
"title": {
"text": "公开",
"base_color": 1,
"icon_url": "http://h5.sinaimg.cn/upload/2015/07/14/34/timeline_title_public.png"
},
"mblogtype": 0,
"showFeedRepost": false,
"showFeedComment": false,
"rcList": [],
"retweeted_status": {
"visible": {
"type": 0,
"list_id": 0
},
"created_at": "Tue Feb 12 16:27:23 +0800 2019",
"id": 4338909259560018,
"idstr": "4338909259560018",
"mid": "4338909259560018",
"mblogid": "HgkcRE6ZQ",
"user": null,
"text_raw": "抱歉,此微博已被作者删除。查看帮助:http://t.cn/Rfd3rQV",
"text": "抱歉,此微博已被作者删除。查看帮助:<a target=\"_blank\" href=\"http://t.cn/Rfd3rQV\"><img class=\"icon-link\" src=\"https://h5.sinaimg.cn/upload/2015/09/25/3/timeline_card_small_web_default.png\"/>网页链接</a>",
"attitudes_status": 0,
"mlevel": 2,
"deleted": "1",
"showFeedRepost": false,
"showFeedComment": false,
"rcList": []
}
},
{
"visible": {
"type": 0,
"list_id": 0
},
"created_at": "Sat Feb 02 17:31:07 +0800 2019",
"id": 4335301420207406,
"idstr": "4335301420207406",
"mid": "4335301420207406",
"mblogid": "HeOlM0RXg",
"user": {
"id": 1905320715,
"idstr": "1905320715",
"pc_new": 7,
"screen_name": "浅裤兜-",
"profile_image_url": "https://tvax3.sinaimg.cn/crop.0.0.512.512.50/7190e30bly8fft6l6lu3qj20e80e8q36.jpg?KID=imgbed,tva&Expires=1623920535&ssig=CVNyAmuOEK",
"profile_url": "/u/1905320715",
"verified": false,
"verified_type": -1,
"domain": "",
"weihao": "",
"avatar_large": "https://tvax3.sinaimg.cn/crop.0.0.512.512.180/7190e30bly8fft6l6lu3qj20e80e8q36.jpg?KID=imgbed,tva&Expires=1623920535&ssig=aFKFtG8Rpi",
"avatar_hd": "https://tvax3.sinaimg.cn/crop.0.0.512.512.1024/7190e30bly8fft6l6lu3qj20e80e8q36.jpg?KID=imgbed,tva&Expires=1623920535&ssig=%2FSNzk84PUr",
"follow_me": false,
"following": false,
"mbrank": 1,
"mbtype": 2,
"planet_video": true
},
"can_edit": false,
"text_raw": "#新年心愿#身体健康http://t.cn/Etpb6tq ",
"text": "<a href=\"/search/weibo?q=%23%E6%96%B0%E5%B9%B4%E5%BF%83%E6%84%BF%23\">#新年心愿#</a>身体健康 ",
"textLength": 37,
"source": "微博品牌活动",
"favorited": false,
"rid": "10_0_50_6558455571135251740_0_0_0",
"reads_count": 2604,
"pic_ids": [],
"geo": "",
"pic_num": 0,
"is_paid": false,
"mblog_vip_type": 0,
"number_display_strategy": {
"apply_scenario_flag": 3,
"display_text_min_number": 1000000,
"display_text": "100万+"
},
"reposts_count": 0,
"comments_count": 0,
"attitudes_count": 0,
"attitudes_status": 0,
"isLongText": false,
"mlevel": 0,
"content_auth": 0,
"is_show_bulletin": 2,
"comment_manage_info": {
"comment_manage_button": 1,
"comment_permission_type": 0,
"approval_comment_type": 0
},
"share_repost_type": 0,
"topic_struct": [
{
"title": "",
"topic_url": "sinaweibo://searchall?containerid=231522&q=%23%E6%96%B0%E5%B9%B4%E5%BF%83%E6%84%BF%23",
"topic_title": "新年心愿",
"is_invalid": 0
}
],
"url_struct": [
{
"url_title": "2019新年心愿",
"url_type_pic": "https://h5.sinaimg.cn/upload/2015/09/25/3/timeline_card_small_web.png",
"ori_url": "sinaweibo://browser?url=https%3A%2F%2Fhuodong.weibo.cn%2Fhongbao2019wish%2Fwishindex%3Fdisable_gesture_back%3D1%26bconf%3D3%26topnavstyle%3D1&sinainternalbrowser=topnav&share_menu=1&allowRedirect=1",
"page_id": "230918_hb19wish_ea38cbc08c7b70472e4028a9e399de0b",
"short_url": "http://t.cn/Etpb6tq",
"long_url": "https://huodong.weibo.cn/hongbao2019wish/wishindex?disable_gesture_back=1&bconf=3&topnavstyle=1",
"url_type": 39,
"result": true,
"actionlog": {
"act_type": 1,
"act_code": 300,
"oid": "1022:ea38cbc08c7b70472e4028a9e399de0b",
"uuid": 4334156061368356,
"cardid": "",
"lcardid": "",
"uicode": "",
"luicode": "",
"fid": "2304131905320715_-_WEIBO_SECOND_PROFILE_WEIBO",
"lfid": "",
"ext": "mid:4335301420207406|rid:10_0_50_6558455571135251740_0_0_0|short_url:http://t.cn/Etpb6tq|long_url:https://huodong.weibo.cn/hongbao2019wish/wishindex?disable_gesture_back=1&bconf=3&topnavstyle=1|comment_id:|miduid:1905320715|rootmid:4335301420207406|rootuid:1905320715|authorid:|uuid:4334156061368356|is_ad_weibo:0|analysis_card:url_struct"
},
"storage_type": "",
"hide": 1,
"object_type": "",
"need_save_obj": 0,
"log": "su=Etpb6tq&mark=&mid=4335301420207406"
}
],
"title": {
"text": "公开",
"base_color": 1,
"icon_url": "http://h5.sinaimg.cn/upload/2015/07/14/34/timeline_title_public.png"
},
"mblogtype": 0,
"showFeedRepost": false,
"showFeedComment": false,
"rcList": [],
"page_info": {
"type": "2",
"page_id": "230918_hb19wish_ea38cbc08c7b70472e4028a9e399de0b",
"object_type": "cardlist",
"content1": "2019新年心愿",
"content2": "许下你的新年心愿,整年好运一路陪伴",
"page_pic": "https://h5.sinaimg.cn/upload/1017/103/2019/01/29/2019xuyuan.png",
"page_title": "2019新年心愿",
"type_icon": "",
"page_url": "sinaweibo://browser?url=https%3A%2F%2Fhuodong.weibo.cn%2Fhongbao2019wish%2Fwishindex%3Fdisable_gesture_back%3D1%26bconf%3D3%26topnavstyle%3D1&sinainternalbrowser=topnav&share_menu=1&allowRedirect=1",
"object_id": "1022:ea38cbc08c7b70472e4028a9e399de0b",
"tips": "",
"actionlog": {
"act_type": 1,
"act_code": 300,
"oid": "1022:ea38cbc08c7b70472e4028a9e399de0b",
"uuid": 4334156061368356,
"cardid": "",
"lcardid": "",
"uicode": "",
"luicode": "",
"fid": "2304131905320715_-_WEIBO_SECOND_PROFILE_WEIBO",
"lfid": "",
"ext": "mid:4335301420207406|rid:10_0_50_6558455571135251740_0_0_0|short_url:http://t.cn/Etpb6tq|long_url:https://huodong.weibo.cn/hongbao2019wish/wishindex?disable_gesture_back=1&bconf=3&topnavstyle=1|comment_id:|miduid:1905320715|rootmid:4335301420207406|rootuid:1905320715|authorid:|uuid:4334156061368356|is_ad_weibo:0|analysis_card:page_info"
},
"buttons": [
{
"params": {
"scheme": ""
},
"actionlog": {
"act_code": 577,
"oid": "230918_hb19wish_ea38cbc08c7b70472e4028a9e399de0b",
"cardid": "",
"uicode": "",
"fid": "2304131905320715_-_WEIBO_SECOND_PROFILE_WEIBO",
"ext": "mid:4335301420207406|rid:10_0_50_6558455571135251740_0_0_0|third_party_scheme_protocol:|action:"
}
}
]
}
},
{
"visible": {
"type": 0,
"list_id": 0
},
"created_at": "Thu Dec 27 14:15:48 +0800 2018",
"id": 4321843915819092,
"idstr": "4321843915819092",
"mid": "4321843915819092",
"mblogid": "H9ag7opOk",
"user": {
"id": 1905320715,
"idstr": "1905320715",
"pc_new": 7,
"screen_name": "浅裤兜-",
"profile_image_url": "https://tvax3.sinaimg.cn/crop.0.0.512.512.50/7190e30bly8fft6l6lu3qj20e80e8q36.jpg?KID=imgbed,tva&Expires=1623920535&ssig=CVNyAmuOEK",
"profile_url": "/u/1905320715",
"verified": false,
"verified_type": -1,
"domain": "",
"weihao": "",
"avatar_large": "https://tvax3.sinaimg.cn/crop.0.0.512.512.180/7190e30bly8fft6l6lu3qj20e80e8q36.jpg?KID=imgbed,tva&Expires=1623920535&ssig=aFKFtG8Rpi",
"avatar_hd": "https://tvax3.sinaimg.cn/crop.0.0.512.512.1024/7190e30bly8fft6l6lu3qj20e80e8q36.jpg?KID=imgbed,tva&Expires=1623920535&ssig=%2FSNzk84PUr",
"follow_me": false,
"following": false,
"mbrank": 1,
"mbtype": 2,
"planet_video": true
},
"can_edit": false,
"text_raw": "广告都那么骚[doge][doge]",
"text": "广告都那么骚<img alt=\"[doge]\" title=\"[doge]\" src=\"//h5.sinaimg.cn/m/emoticon/icon/others/d_doge-be7f768d78.png\" /><img alt=\"[doge]\" title=\"[doge]\" src=\"//h5.sinaimg.cn/m/emoticon/icon/others/d_doge-be7f768d78.png\" />",
"source": "路边捡到的iPhone X",
"favorited": false,
"mark": "999_reallog_mark_ad:999|WeiboADNatural",
"rid": "11_0_50_6558455571135251740_0_0_0",
"reads_count": 2844,
"pic_ids": [],
"geo": "",
"pic_num": 0,
"is_paid": false,
"mblog_vip_type": 0,
"number_display_strategy": {
"apply_scenario_flag": 3,
"display_text_min_number": 1000000,
"display_text": "100万+"
},
"reposts_count": 0,
"comments_count": 0,
"attitudes_count": 0,
"attitudes_status": 0,
"isLongText": false,
"mlevel": 0,
"content_auth": 0,
"is_show_bulletin": 2,
"comment_manage_info": {
"comment_manage_button": 1,
"comment_permission_type": 0,
"approval_comment_type": 0
},
"share_repost_type": 0,
"url_struct": [
{
"url_title": "微博抽奖公示",
"url_type_pic": "https://h5.sinaimg.cn/upload/2015/09/25/3/timeline_card_small_weibo.png",
"ori_url": "sinaweibo://browser?disable_interception=1&disable_sinaurl=1&allowRedirect=1&url=https%3A%2F%2Fevent.weibo.com%2Fyae%2Fevent%2Flottery%2Fhistory%3Fmid%3D4321555197026782%26mark_id%3D999_reallog_mark_ad%25253A999%25257CWeiboADNatural&schemewhitelist=%7B%22itunes%22%3A%5B%22.%2A%22%5D%2C%22scheme%22%3A%5B%22.%2A%22%5D%7D",
"page_id": "2316284321555197026782",
"short_url": "http://t.cn/EqqsHnc",
"long_url": "https://event.weibo.com/yae/event/lottery/history?mid=4321555197026782",
"url_type": 39,
"result": false,
"actionlog": {
"act_type": 1,
"act_code": 300,
"oid": "1022:2316284321555197026782",
"uuid": 4327590377612393,
"cardid": "",
"lcardid": "",
"uicode": "",
"luicode": "",
"fid": "2304131905320715_-_WEIBO_SECOND_PROFILE_WEIBO",
"lfid": "",
"ext": "mid:4321555197026782|rid:11_0_50_6558455571135251740_0_0_0|miduid:1905320715|rootmid:4321555197026782|rootuid:1822004717|authorid:|uuid:4327590377612393|is_ad_weibo:1|analysis_card:url_struct"
},
"storage_type": "",
"hide": 0,
"object_type": "",
"need_save_obj": 0
}
],
"title": {
"text": "公开",
"base_color": 1,
"icon_url": "http://h5.sinaimg.cn/upload/2015/07/14/34/timeline_title_public.png"
},
"mblogtype": 0,
"showFeedRepost": false,
"showFeedComment": false,
"rcList": [],
"retweeted_status": {
"visible": {
"type": 0,
"list_id": 0
},
"created_at": "Wed Dec 26 19:08:32 +0800 2018",
"id": 4321555197026782,
"idstr": "4321555197026782",
"mid": "4321555197026782",
"mblogid": "H92KrttZc",
"user": {
"id": 1822004717,
"idstr": "1822004717",
"pc_new": 0,
"screen_name": "左手韩",
"profile_image_url": "https://tva3.sinaimg.cn/crop.0.79.888.888.50/6c9995edjw8f5r6y66teyj20rs0vyk2m.jpg?KID=imgbed,tva&Expires=1623920535&ssig=51PtCXD0xA",
"profile_url": "/u/1822004717",
"verified": true,
"verified_type": 0,
"domain": "",
"weihao": "",
"verified_type_ext": 1,
"avatar_large": "https://tva3.sinaimg.cn/crop.0.79.888.888.180/6c9995edjw8f5r6y66teyj20rs0vyk2m.jpg?KID=imgbed,tva&Expires=1623920535&ssig=ST61svMjgv",
"avatar_hd": "https://tva3.sinaimg.cn/crop.0.79.888.888.1024/6c9995edjw8f5r6y66teyj20rs0vyk2m.jpg?KID=imgbed,tva&Expires=1623920535&ssig=CdIIBSoqhe",
"follow_me": false,
"following": false,
"mbrank": 7,
"mbtype": 12,
"planet_video": false
},
"can_edit": false,
"text_raw": "驾考知识心中在,逼得教练要狗带。 \n管他考试科目几,转发抽奖送大礼! ",
"text": "驾考知识心中在,逼得教练要狗带。 <br />管他考试科目几,转发抽奖送大礼! ",
"textLength": 66,
"source": "微博 weibo.com",
"favorited": false,
"buttons": [
{
"type": "follow",
"name": "加关注",
"params": {
"uid": 1822004717,
"disable_group": 1,
"extparams": {
"followcardid": "1008080010_"
}
},
"actionlog": {
"act_code": "92",
"oid": "4321555197026782"
}
}
],
"mark": "999_reallog_mark_ad:999|WeiboADNatural",
"rid": "11_0_50_6558455571135251740_0_0_0",
"pic_ids": [
"006srJzZly1fyk6dixl4rj30h8cmw1ky",
"006srJzZly1fyk6dllplij30oucmr4qp",
"006srJzZly1fyk6dnqs6hj30sgbwye81",
"006srJzZly1fyk6dqkregj30sg82c4ly",
"006srJzZly1fyk6dt2m8pj30qmcmzb29",
"006srJzZly1fyk6dvhxfaj30r0cn0b29",
"006srJzZly1fyk6dy8ik9j30sgatj4qp",
"006srJzZly1fyk6e17js8j30kxcmt1ky",
"006srJzZly1fyk6e3ur8wj30sg6534jt"
],
"geo": "",
"pic_num": 9,
"pic_infos": {
"006srJzZly1fyk6dixl4rj30h8cmw1ky": {
"thumbnail": {
"url": "https://wx3.sinaimg.cn/wap180/006srJzZly1fyk6dixl4rj30h8cmw1ky.jpg",
"width": 54,
"height": 180,
"cut_type": 1,
"type": ""
},
"bmiddle": {
"url": "https://wx3.sinaimg.cn/wap360/006srJzZly1fyk6dixl4rj30h8cmw1ky.jpg",
"width": 108,
"height": 360,
"cut_type": 1,
"type": ""
},
"large": {
"url": "https://wx3.sinaimg.cn/orj960/006srJzZly1fyk6dixl4rj30h8cmw1ky.jpg",
"width": "620",
"height": "16376",
"cut_type": 1,
"type": ""
},
"original": {
"url": "https://wx3.sinaimg.cn/orj1080/006srJzZly1fyk6dixl4rj30h8cmw1ky.jpg",
"width": "620",
"height": "16376",
"cut_type": 1,
"type": ""
},
"largest": {
"url": "https://wx3.sinaimg.cn/large/006srJzZly1fyk6dixl4rj30h8cmw1ky.jpg",
"width": "620",
"height": "16376",
"cut_type": 1,
"type": ""
},
"mw2000": {
"url": "https://wx3.sinaimg.cn/mw2000/006srJzZly1fyk6dixl4rj30h8cmw1ky.jpg",
"width": "620",
"height": "16376",
"cut_type": 1,
"type": ""
},
"object_id": "1042018:9c7cf15e2da74a875852722b798ecc24",
"pic_id": "006srJzZly1fyk6dixl4rj30h8cmw1ky",
"photo_tag": 0,
"type": "pic",
"pic_status": 0
},
"006srJzZly1fyk6dllplij30oucmr4qp": {
"thumbnail": {
"url": "https://wx2.sinaimg.cn/wap180/006srJzZly1fyk6dllplij30oucmr4qp.jpg",
"width": 54,
"height": 180,
"cut_type": 1,
"type": ""
},
"bmiddle": {
"url": "https://wx2.sinaimg.cn/wap360/006srJzZly1fyk6dllplij30oucmr4qp.jpg",
"width": 108,
"height": 360,
"cut_type": 1,
"type": ""
},
"large": {
"url": "https://wx2.sinaimg.cn/orj960/006srJzZly1fyk6dllplij30oucmr4qp.jpg",
"width": "894",
"height": "16371",
"cut_type": 1,
"type": ""
},
"original": {
"url": "https://wx2.sinaimg.cn/orj1080/006srJzZly1fyk6dllplij30oucmr4qp.jpg",
"width": "894",
"height": "16371",
"cut_type": 1,
"type": ""
},
"largest": {
"url": "https://wx2.sinaimg.cn/large/006srJzZly1fyk6dllplij30oucmr4qp.jpg",
"width": "894",
"height": "16371",
"cut_type": 1,
"type": ""
},
"mw2000": {
"url": "https://wx2.sinaimg.cn/mw2000/006srJzZly1fyk6dllplij30oucmr4qp.jpg",
"width": "894",
"height": "16371",
"cut_type": 1,
"type": ""
},
"object_id": "1042018:7879a2af525b40b9bc7cdb6d7e74b6ed",
"pic_id": "006srJzZly1fyk6dllplij30oucmr4qp",
"photo_tag": 0,
"type": "pic",
"pic_status": 0
},
"006srJzZly1fyk6dnqs6hj30sgbwye81": {
"thumbnail": {
"url": "https://wx4.sinaimg.cn/wap180/006srJzZly1fyk6dnqs6hj30sgbwye81.jpg",
"width": 54,
"height": 180,
"cut_type": 1,
"type": ""
},
"bmiddle": {
"url": "https://wx4.sinaimg.cn/wap360/006srJzZly1fyk6dnqs6hj30sgbwye81.jpg",
"width": 108,
"height": 360,
"cut_type": 1,
"type": ""
},
"large": {
"url": "https://wx4.sinaimg.cn/orj960/006srJzZly1fyk6dnqs6hj30sgbwye81.jpg",
"width": 960,
"height": 14476,
"cut_type": 1,
"type": ""
},
"original": {
"url": "https://wx4.sinaimg.cn/orj1080/006srJzZly1fyk6dnqs6hj30sgbwye81.jpg",
"width": "1024",
"height": "15442",
"cut_type": 1,
"type": ""
},
"largest": {
"url": "https://wx4.sinaimg.cn/large/006srJzZly1fyk6dnqs6hj30sgbwye81.jpg",
"width": "1024",
"height": "15442",
"cut_type": 1,
"type": ""
},
"mw2000": {
"url": "https://wx4.sinaimg.cn/mw2000/006srJzZly1fyk6dnqs6hj30sgbwye81.jpg",
"width": "1024",
"height": "15442",
"cut_type": 1,
"type": ""
},
"object_id": "1042018:473b00781b8737653966b77c4354c27c",
"pic_id": "006srJzZly1fyk6dnqs6hj30sgbwye81",
"photo_tag": 0,
"type": "pic",
"pic_status": 0
},
"006srJzZly1fyk6dqkregj30sg82c4ly": {
"thumbnail": {
"url": "https://wx1.sinaimg.cn/wap180/006srJzZly1fyk6dqkregj30sg82c4ly.jpg",
"width": 54,
"height": 180,
"cut_type": 1,
"type": ""
},
"bmiddle": {
"url": "https://wx1.sinaimg.cn/wap360/006srJzZly1fyk6dqkregj30sg82c4ly.jpg",
"width": 108,
"height": 360,
"cut_type": 1,
"type": ""
},
"large": {
"url": "https://wx1.sinaimg.cn/orj960/006srJzZly1fyk6dqkregj30sg82c4ly.jpg",
"width": 960,
"height": 9798,
"cut_type": 1,
"type": ""
},
"original": {
"url": "https://wx1.sinaimg.cn/orj1080/006srJzZly1fyk6dqkregj30sg82c4ly.jpg",
"width": "1024",
"height": "10452",
"cut_type": 1,
"type": ""
},
"largest": {
"url": "https://wx1.sinaimg.cn/large/006srJzZly1fyk6dqkregj30sg82c4ly.jpg",
"width": "1024",
"height": "10452",
"cut_type": 1,
"type": ""
},
"mw2000": {
"url": "https://wx1.sinaimg.cn/mw2000/006srJzZly1fyk6dqkregj30sg82c4ly.jpg",
"width": "1024",
"height": "10452",
"cut_type": 1,
"type": ""
},
"object_id": "1042018:3d135f9be7e0c68b14859fdbfdf68dcb",
"pic_id": "006srJzZly1fyk6dqkregj30sg82c4ly",
"photo_tag": 0,
"type": "pic",
"pic_status": 0
},
"006srJzZly1fyk6dt2m8pj30qmcmzb29": {
"thumbnail": {
"url": "https://wx2.sinaimg.cn/wap180/006srJzZly1fyk6dt2m8pj30qmcmzb29.jpg",
"width": 54,
"height": 180,
"cut_type": 1,
"type": ""
},
"bmiddle": {
"url": "https://wx2.sinaimg.cn/wap360/006srJzZly1fyk6dt2m8pj30qmcmzb29.jpg",
"width": 108,
"height": 360,
"cut_type": 1,
"type": ""
},
"large": {
"url": "https://wx2.sinaimg.cn/orj960/006srJzZly1fyk6dt2m8pj30qmcmzb29.jpg",
"width": "958",
"height": "16379",
"cut_type": 1,
"type": ""
},
"original": {
"url": "https://wx2.sinaimg.cn/orj1080/006srJzZly1fyk6dt2m8pj30qmcmzb29.jpg",
"width": "958",
"height": "16379",
"cut_type": 1,
"type": ""
},
"largest": {
"url": "https://wx2.sinaimg.cn/large/006srJzZly1fyk6dt2m8pj30qmcmzb29.jpg",
"width": "958",
"height": "16379",
"cut_type": 1,
"type": ""
},
"mw2000": {
"url": "https://wx2.sinaimg.cn/mw2000/006srJzZly1fyk6dt2m8pj30qmcmzb29.jpg",
"width": "958",
"height": "16379",
"cut_type": 1,
"type": ""
},
"object_id": "1042018:83ad70a65735a3e5cf07bd4ef927e697",
"pic_id": "006srJzZly1fyk6dt2m8pj30qmcmzb29",
"photo_tag": 0,
"type": "pic",
"pic_status": 0
},
"006srJzZly1fyk6dvhxfaj30r0cn0b29": {
"thumbnail": {
"url": "https://wx1.sinaimg.cn/wap180/006srJzZly1fyk6dvhxfaj30r0cn0b29.jpg",
"width": 54,
"height": 180,
"cut_type": 1,
"type": ""
},
"bmiddle": {
"url": "https://wx1.sinaimg.cn/wap360/006srJzZly1fyk6dvhxfaj30r0cn0b29.jpg",
"width": 108,
"height": 360,
"cut_type": 1,
"type": ""
},
"large": {
"url": "https://wx1.sinaimg.cn/orj960/006srJzZly1fyk6dvhxfaj30r0cn0b29.jpg",
"width": 960,
"height": 16177,
"cut_type": 1,
"type": ""
},
"original": {
"url": "https://wx1.sinaimg.cn/orj1080/006srJzZly1fyk6dvhxfaj30r0cn0b29.jpg",
"width": "972",
"height": "16380",
"cut_type": 1,
"type": ""
},
"largest": {
"url": "https://wx1.sinaimg.cn/large/006srJzZly1fyk6dvhxfaj30r0cn0b29.jpg",
"width": "972",
"height": "16380",
"cut_type": 1,
"type": ""
},
"mw2000": {
"url": "https://wx1.sinaimg.cn/mw2000/006srJzZly1fyk6dvhxfaj30r0cn0b29.jpg",
"width": "972",
"height": "16380",
"cut_type": 1,
"type": ""
},
"object_id": "1042018:0856b6bbfdfc030ed1a685469f2cc445",
"pic_id": "006srJzZly1fyk6dvhxfaj30r0cn0b29",
"photo_tag": 0,
"type": "pic",
"pic_status": 0
},
"006srJzZly1fyk6dy8ik9j30sgatj4qp": {
"thumbnail": {
"url": "https://wx4.sinaimg.cn/wap180/006srJzZly1fyk6dy8ik9j30sgatj4qp.jpg",
"width": 54,
"height": 180,
"cut_type": 1,
"type": ""
},
"bmiddle": {
"url": "https://wx4.sinaimg.cn/wap360/006srJzZly1fyk6dy8ik9j30sgatj4qp.jpg",
"width": 108,
"height": 360,
"cut_type": 1,
"type": ""
},
"large": {
"url": "https://wx4.sinaimg.cn/orj960/006srJzZly1fyk6dy8ik9j30sgatj4qp.jpg",
"width": 960,
"height": 13146,
"cut_type": 1,
"type": ""
},
"original": {
"url": "https://wx4.sinaimg.cn/orj1080/006srJzZly1fyk6dy8ik9j30sgatj4qp.jpg",
"width": "1024",
"height": "14023",
"cut_type": 1,
"type": ""
},
"largest": {
"url": "https://wx4.sinaimg.cn/large/006srJzZly1fyk6dy8ik9j30sgatj4qp.jpg",
"width": "1024",
"height": "14023",
"cut_type": 1,
"type": ""
},
"mw2000": {
"url": "https://wx4.sinaimg.cn/mw2000/006srJzZly1fyk6dy8ik9j30sgatj4qp.jpg",
"width": "1024",
"height": "14023",
"cut_type": 1,
"type": ""
},
"object_id": "1042018:c01270e2452d097b6586cfaf8516d520",
"pic_id": "006srJzZly1fyk6dy8ik9j30sgatj4qp",
"photo_tag": 0,
"type": "pic",
"pic_status": 0
},
"006srJzZly1fyk6e17js8j30kxcmt1ky": {
"thumbnail": {
"url": "https://wx3.sinaimg.cn/wap180/006srJzZly1fyk6e17js8j30kxcmt1ky.jpg",
"width": 54,
"height": 180,
"cut_type": 1,
"type": ""
},
"bmiddle": {
"url": "https://wx3.sinaimg.cn/wap360/006srJzZly1fyk6e17js8j30kxcmt1ky.jpg",
"width": 108,
"height": 360,
"cut_type": 1,
"type": ""
},
"large": {
"url": "https://wx3.sinaimg.cn/orj960/006srJzZly1fyk6e17js8j30kxcmt1ky.jpg",
"width": "753",
"height": "16373",
"cut_type": 1,
"type": ""
},
"original": {
"url": "https://wx3.sinaimg.cn/orj1080/006srJzZly1fyk6e17js8j30kxcmt1ky.jpg",
"width": "753",
"height": "16373",
"cut_type": 1,
"type": ""
},
"largest": {
"url": "https://wx3.sinaimg.cn/large/006srJzZly1fyk6e17js8j30kxcmt1ky.jpg",
"width": "753",
"height": "16373",
"cut_type": 1,
"type": ""
},
"mw2000": {
"url": "https://wx3.sinaimg.cn/mw2000/006srJzZly1fyk6e17js8j30kxcmt1ky.jpg",
"width": "753",
"height": "16373",
"cut_type": 1,
"type": ""
},
"object_id": "1042018:b27ef99d115d129dfc59a22308d27637",
"pic_id": "006srJzZly1fyk6e17js8j30kxcmt1ky",
"photo_tag": 0,
"type": "pic",
"pic_status": 0
},
"006srJzZly1fyk6e3ur8wj30sg6534jt": {
"thumbnail": {
"url": "https://wx3.sinaimg.cn/wap180/006srJzZly1fyk6e3ur8wj30sg6534jt.jpg",
"width": 54,
"height": 180,
"cut_type": 1,
"type": ""
},
"bmiddle": {
"url": "https://wx3.sinaimg.cn/wap360/006srJzZly1fyk6e3ur8wj30sg6534jt.jpg",
"width": 108,
"height": 360,
"cut_type": 1,
"type": ""
},
"large": {
"url": "https://wx3.sinaimg.cn/orj960/006srJzZly1fyk6e3ur8wj30sg6534jt.jpg",
"width": 960,
"height": 7461,
"cut_type": 1,
"type": ""
},
"original": {
"url": "https://wx3.sinaimg.cn/orj1080/006srJzZly1fyk6e3ur8wj30sg6534jt.jpg",
"width": "1024",
"height": "7959",
"cut_type": 1,
"type": ""
},
"largest": {
"url": "https://wx3.sinaimg.cn/large/006srJzZly1fyk6e3ur8wj30sg6534jt.jpg",
"width": "1024",
"height": "7959",
"cut_type": 1,
"type": ""
},
"mw2000": {
"url": "https://wx3.sinaimg.cn/mw2000/006srJzZly1fyk6e3ur8wj30sg6534jt.jpg",
"width": "1024",
"height": "7959",
"cut_type": 1,
"type": ""
},
"object_id": "1042018:c4ba56dda5591d41448f8227fe7a75d4",
"pic_id": "006srJzZly1fyk6e3ur8wj30sg6534jt",
"photo_tag": 0,
"type": "pic",
"pic_status": 0
}
},
"is_paid": false,
"mblog_vip_type": 0,
"number_display_strategy": {
"apply_scenario_flag": 3,
"display_text_min_number": 1000000,
"display_text": "100万+"
},
"reposts_count": 23578,
"comments_count": 6419,
"attitudes_count": 10802,
"attitudes_status": 0,
"isLongText": false,
"mlevel": 0,
"content_auth": 0,
"is_show_bulletin": 2,
"comment_manage_info": {
"comment_permission_type": -1,
"approval_comment_type": 0
},
"mblogtype": 0,
"showFeedRepost": false,
"showFeedComment": false,
"rcList": []
}
},
{
"visible": {
"type": 0,
"list_id": 0
},
"created_at": "Wed Dec 05 16:26:27 +0800 2018",
"id": 4313904262032451,
"idstr": "4313904262032451",
"mid": "4313904262032451",
"mblogid": "H5PIe8wJt",
"user": {
"id": 1905320715,
"idstr": "1905320715",
"pc_new": 7,
"screen_name": "浅裤兜-",
"profile_image_url": "https://tvax3.sinaimg.cn/crop.0.0.512.512.50/7190e30bly8fft6l6lu3qj20e80e8q36.jpg?KID=imgbed,tva&Expires=1623920535&ssig=CVNyAmuOEK",
"profile_url": "/u/1905320715",
"verified": false,
"verified_type": -1,
"domain": "",
"weihao": "",
"avatar_large": "https://tvax3.sinaimg.cn/crop.0.0.512.512.180/7190e30bly8fft6l6lu3qj20e80e8q36.jpg?KID=imgbed,tva&Expires=1623920535&ssig=aFKFtG8Rpi",
"avatar_hd": "https://tvax3.sinaimg.cn/crop.0.0.512.512.1024/7190e30bly8fft6l6lu3qj20e80e8q36.jpg?KID=imgbed,tva&Expires=1623920535&ssig=%2FSNzk84PUr",
"follow_me": false,
"following": false,
"mbrank": 1,
"mbtype": 2,
"planet_video": true
},
"can_edit": false,
"text_raw": "[可爱][可爱]",
"text": "<img alt=\"[可爱]\" title=\"[可爱]\" src=\"//h5.sinaimg.cn/m/emoticon/icon/default/d_keai-9aae643ce8.png\" /><img alt=\"[可爱]\" title=\"[可爱]\" src=\"//h5.sinaimg.cn/m/emoticon/icon/default/d_keai-9aae643ce8.png\" />",
"source": "路边捡到的iPhone X",
"favorited": false,
"rid": "12_0_50_6558455571135251740_0_0_0",
"reads_count": 2903,
"pic_ids": [],
"geo": "",
"pic_num": 0,
"is_paid": false,
"mblog_vip_type": 0,
"number_display_strategy": {
"apply_scenario_flag": 3,
"display_text_min_number": 1000000,
"display_text": "100万+"
},
"reposts_count": 0,
"comments_count": 0,
"attitudes_count": 0,
"attitudes_status": 0,
"isLongText": false,
"mlevel": 0,
"content_auth": 0,
"is_show_bulletin": 2,
"comment_manage_info": {
"comment_manage_button": 1,
"comment_permission_type": 0,
"approval_comment_type": 0
},
"share_repost_type": 0,
"title": {
"text": "公开",
"base_color": 1,
"icon_url": "http://h5.sinaimg.cn/upload/2015/07/14/34/timeline_title_public.png"
},
"mblogtype": 0,
"showFeedRepost": false,
"showFeedComment": false,
"rcList": [],
"retweeted_status": {
"visible": {
"type": 0,
"list_id": 0
},
"created_at": "Wed Dec 05 15:07:54 +0800 2018",
"id": 4313884493715340,
"idstr": "4313884493715340",
"mid": "4313884493715340",
"mblogid": "H5PclfAwQ",
"user": {
"id": 6359391068,
"idstr": "6359391068",
"pc_new": 0,
"screen_name": "娱乐一线报",
"profile_image_url": "https://tvax3.sinaimg.cn/crop.0.0.996.996.50/006Wnm7Gly8fljwm0hsnrj30ro0roacc.jpg?KID=imgbed,tva&Expires=1623920535&ssig=w5Dr9khEwO",
"profile_url": "/u/6359391068",
"verified": true,
"verified_type": 0,
"domain": "",
"weihao": "",
"verified_type_ext": 0,
"avatar_large": "https://tvax3.sinaimg.cn/crop.0.0.996.996.180/006Wnm7Gly8fljwm0hsnrj30ro0roacc.jpg?KID=imgbed,tva&Expires=1623920535&ssig=MeUxS5FjSE",
"avatar_hd": "https://tvax3.sinaimg.cn/crop.0.0.996.996.1024/006Wnm7Gly8fljwm0hsnrj30ro0roacc.jpg?KID=imgbed,tva&Expires=1623920535&ssig=0BT8eNFGdt",
"follow_me": false,
"following": false,
"mbrank": 6,
"mbtype": 12,
"planet_video": false
},
"can_edit": false,
"edit_count": 1,
"text_raw": "他是不婚主义者,却为了一个女人闪婚,为你打破原则的男人最浪漫! ",
"text": "他是不婚主义者,却为了一个女人闪婚,为你打破原则的男人最浪漫! ",
"textLength": 62,
"source": "",
"favorited": false,
"buttons": [
{
"type": "follow",
"name": "加关注",
"params": {
"uid": 6359391068,
"disable_group": 1,
"extparams": {
"followcardid": "1008080010_"
}
},
"actionlog": {
"act_code": "92",
"oid": "4313884493715340"
}
}
],
"rid": "12_0_50_6558455571135251740_0_0_0",
"cardid": "star_287",
"pic_ids": [
"006Wnm7Ggy1fxvvweyr7aj30j62woagr",
"006Wnm7Ggy1fxvvwfeacsj30j639bwmp",
"006Wnm7Ggy1fxvvwfs74oj30j636p10f",
"006Wnm7Ggy1fxvvwg5rqlj30j637jgu6",
"006Wnm7Ggy1fxvvwgj0upj30j63s5aiu",
"006Wnm7Ggy1fxvvwgtn65j30j62uljyb",
"006Wnm7Ggy1fxvvwh4er8j30j63mq7cw",
"006Wnm7Ggy1fxvvwhatblj30fc09uwfb",
"006Wnm7Ggy1fxvvwhh0hlj30ek0k6aaq"
],
"pic_focus_point": [
{
"focus_point": {
"left": 0.17175573110580444,
"top": 0.03305784985423088,
"width": 0.17938931286334991,
"height": 0.12947657704353333
},
"pic_id": "006Wnm7Ggy1fxvvwhh0hlj30ek0k6aaq"
}
],
"geo": "",
"pic_num": 9,
"pic_infos": {
"006Wnm7Ggy1fxvvweyr7aj30j62woagr": {
"thumbnail": {
"url": "https://wx2.sinaimg.cn/wap180/006Wnm7Ggy1fxvvweyr7aj30j62woagr.jpg",
"width": 54,
"height": 180,
"cut_type": 1,
"type": ""
},
"bmiddle": {
"url": "https://wx2.sinaimg.cn/wap360/006Wnm7Ggy1fxvvweyr7aj30j62woagr.jpg",
"width": 108,
"height": 360,
"cut_type": 1,
"type": ""
},
"large": {
"url": "https://wx2.sinaimg.cn/orj960/006Wnm7Ggy1fxvvweyr7aj30j62woagr.jpg",
"width": "690",
"height": "3768",
"cut_type": 1,
"type": ""
},
"original": {
"url": "https://wx2.sinaimg.cn/orj1080/006Wnm7Ggy1fxvvweyr7aj30j62woagr.jpg",
"width": "690",
"height": "3768",
"cut_type": 1,
"type": ""
},
"largest": {
"url": "https://wx2.sinaimg.cn/large/006Wnm7Ggy1fxvvweyr7aj30j62woagr.jpg",
"width": "690",
"height": "3768",
"cut_type": 1,
"type": ""
},
"mw2000": {
"url": "https://wx2.sinaimg.cn/mw2000/006Wnm7Ggy1fxvvweyr7aj30j62woagr.jpg",
"width": "690",
"height": "3768",
"cut_type": 1,
"type": ""
},
"object_id": "1042018:08e08ca154f3c8a8119289a65e41f285",
"pic_id": "006Wnm7Ggy1fxvvweyr7aj30j62woagr",
"photo_tag": 0,
"type": "pic",
"pic_status": 0
},
"006Wnm7Ggy1fxvvwfeacsj30j639bwmp": {
"thumbnail": {
"url": "https://wx4.sinaimg.cn/wap180/006Wnm7Ggy1fxvvwfeacsj30j639bwmp.jpg",
"width": 54,
"height": 180,
"cut_type": 1,
"type": ""
},
"bmiddle": {
"url": "https://wx4.sinaimg.cn/wap360/006Wnm7Ggy1fxvvwfeacsj30j639bwmp.jpg",
"width": 108,
"height": 360,
"cut_type": 1,
"type": ""
},
"large": {
"url": "https://wx4.sinaimg.cn/orj960/006Wnm7Ggy1fxvvwfeacsj30j639bwmp.jpg",
"width": "690",
"height": "4223",
"cut_type": 1,
"type": ""
},
"original": {
"url": "https://wx4.sinaimg.cn/orj1080/006Wnm7Ggy1fxvvwfeacsj30j639bwmp.jpg",
"width": "690",
"height": "4223",
"cut_type": 1,
"type": ""
},
"largest": {
"url": "https://wx4.sinaimg.cn/large/006Wnm7Ggy1fxvvwfeacsj30j639bwmp.jpg",
"width": "690",
"height": "4223",
"cut_type": 1,
"type": ""
},
"mw2000": {
"url": "https://wx4.sinaimg.cn/mw2000/006Wnm7Ggy1fxvvwfeacsj30j639bwmp.jpg",
"width": "690",
"height": "4223",
"cut_type": 1,
"type": ""
},
"object_id": "1042018:68e01995beae1bb39bc1d959bb562b63",
"pic_id": "006Wnm7Ggy1fxvvwfeacsj30j639bwmp",
"photo_tag": 0,
"type": "pic",
"pic_status": 0
},
"006Wnm7Ggy1fxvvwfs74oj30j636p10f": {
"thumbnail": {
"url": "https://wx3.sinaimg.cn/wap180/006Wnm7Ggy1fxvvwfs74oj30j636p10f.jpg",
"width": 54,
"height": 180,
"cut_type": 1,
"type": ""
},
"bmiddle": {
"url": "https://wx3.sinaimg.cn/wap360/006Wnm7Ggy1fxvvwfs74oj30j636p10f.jpg",
"width": 108,
"height": 360,
"cut_type": 1,
"type": ""
},
"large": {
"url": "https://wx3.sinaimg.cn/orj960/006Wnm7Ggy1fxvvwfs74oj30j636p10f.jpg",
"width": "690",
"height": "4129",
"cut_type": 1,
"type": ""
},
"original": {
"url": "https://wx3.sinaimg.cn/orj1080/006Wnm7Ggy1fxvvwfs74oj30j636p10f.jpg",
"width": "690",
"height": "4129",
"cut_type": 1,
"type": ""
},
"largest": {
"url": "https://wx3.sinaimg.cn/large/006Wnm7Ggy1fxvvwfs74oj30j636p10f.jpg",
"width": "690",
"height": "4129",
"cut_type": 1,
"type": ""
},
"mw2000": {
"url": "https://wx3.sinaimg.cn/mw2000/006Wnm7Ggy1fxvvwfs74oj30j636p10f.jpg",
"width": "690",
"height": "4129",
"cut_type": 1,
"type": ""
},
"object_id": "1042018:0e3e1d9a2c89af4316c345ff78adfd4f",
"pic_id": "006Wnm7Ggy1fxvvwfs74oj30j636p10f",
"photo_tag": 0,
"type": "pic",
"pic_status": 0
},
"006Wnm7Ggy1fxvvwg5rqlj30j637jgu6": {
"thumbnail": {
"url": "https://wx2.sinaimg.cn/wap180/006Wnm7Ggy1fxvvwg5rqlj30j637jgu6.jpg",
"width": 54,
"height": 180,
"cut_type": 1,
"type": ""
},
"bmiddle": {
"url": "https://wx2.sinaimg.cn/wap360/006Wnm7Ggy1fxvvwg5rqlj30j637jgu6.jpg",
"width": 108,
"height": 360,
"cut_type": 1,
"type": ""
},
"large": {
"url": "https://wx2.sinaimg.cn/orj960/006Wnm7Ggy1fxvvwg5rqlj30j637jgu6.jpg",
"width": "690",
"height": "4159",
"cut_type": 1,
"type": ""
},
"original": {
"url": "https://wx2.sinaimg.cn/orj1080/006Wnm7Ggy1fxvvwg5rqlj30j637jgu6.jpg",
"width": "690",
"height": "4159",
"cut_type": 1,
"type": ""
},
"largest": {
"url": "https://wx2.sinaimg.cn/large/006Wnm7Ggy1fxvvwg5rqlj30j637jgu6.jpg",
"width": "690",
"height": "4159",
"cut_type": 1,
"type": ""
},
"mw2000": {
"url": "https://wx2.sinaimg.cn/mw2000/006Wnm7Ggy1fxvvwg5rqlj30j637jgu6.jpg",
"width": "690",
"height": "4159",
"cut_type": 1,
"type": ""
},
"object_id": "1042018:21900e223d12ade7d906ff7e951b90cd",
"pic_id": "006Wnm7Ggy1fxvvwg5rqlj30j637jgu6",
"photo_tag": 0,
"type": "pic",
"pic_status": 0
},
"006Wnm7Ggy1fxvvwgj0upj30j63s5aiu": {
"thumbnail": {
"url": "https://wx2.sinaimg.cn/wap180/006Wnm7Ggy1fxvvwgj0upj30j63s5aiu.jpg",
"width": 54,
"height": 180,
"cut_type": 1,
"type": ""
},
"bmiddle": {
"url": "https://wx2.sinaimg.cn/wap360/006Wnm7Ggy1fxvvwgj0upj30j63s5aiu.jpg",
"width": 108,
"height": 360,
"cut_type": 1,
"type": ""
},
"large": {
"url": "https://wx2.sinaimg.cn/orj960/006Wnm7Ggy1fxvvwgj0upj30j63s5aiu.jpg",
"width": "690",
"height": "4901",
"cut_type": 1,
"type": ""
},
"original": {
"url": "https://wx2.sinaimg.cn/orj1080/006Wnm7Ggy1fxvvwgj0upj30j63s5aiu.jpg",
"width": "690",
"height": "4901",
"cut_type": 1,
"type": ""
},
"largest": {
"url": "https://wx2.sinaimg.cn/large/006Wnm7Ggy1fxvvwgj0upj30j63s5aiu.jpg",
"width": "690",
"height": "4901",
"cut_type": 1,
"type": ""
},
"mw2000": {
"url": "https://wx2.sinaimg.cn/mw2000/006Wnm7Ggy1fxvvwgj0upj30j63s5aiu.jpg",
"width": "690",
"height": "4901",
"cut_type": 1,
"type": ""
},
"object_id": "1042018:b22164555eb13d013d006e87bfda6fde",
"pic_id": "006Wnm7Ggy1fxvvwgj0upj30j63s5aiu",
"photo_tag": 0,
"type": "pic",
"pic_status": 0
},
"006Wnm7Ggy1fxvvwgtn65j30j62uljyb": {
"thumbnail": {
"url": "https://wx2.sinaimg.cn/wap180/006Wnm7Ggy1fxvvwgtn65j30j62uljyb.jpg",
"width": 54,
"height": 180,
"cut_type": 1,
"type": ""
},
"bmiddle": {
"url": "https://wx2.sinaimg.cn/wap360/006Wnm7Ggy1fxvvwgtn65j30j62uljyb.jpg",
"width": 108,
"height": 360,
"cut_type": 1,
"type": ""
},
"large": {
"url": "https://wx2.sinaimg.cn/orj960/006Wnm7Ggy1fxvvwgtn65j30j62uljyb.jpg",
"width": "690",
"height": "3693",
"cut_type": 1,
"type": ""
},
"original": {
"url": "https://wx2.sinaimg.cn/orj1080/006Wnm7Ggy1fxvvwgtn65j30j62uljyb.jpg",
"width": "690",
"height": "3693",
"cut_type": 1,
"type": ""
},
"largest": {
"url": "https://wx2.sinaimg.cn/large/006Wnm7Ggy1fxvvwgtn65j30j62uljyb.jpg",
"width": "690",
"height": "3693",
"cut_type": 1,
"type": ""
},
"mw2000": {
"url": "https://wx2.sinaimg.cn/mw2000/006Wnm7Ggy1fxvvwgtn65j30j62uljyb.jpg",
"width": "690",
"height": "3693",
"cut_type": 1,
"type": ""
},
"object_id": "1042018:1108d5b3e1fbe2d4d3d23cceaf6b3cea",
"pic_id": "006Wnm7Ggy1fxvvwgtn65j30j62uljyb",
"photo_tag": 0,
"type": "pic",
"pic_status": 0
},
"006Wnm7Ggy1fxvvwh4er8j30j63mq7cw": {
"thumbnail": {
"url": "https://wx4.sinaimg.cn/wap180/006Wnm7Ggy1fxvvwh4er8j30j63mq7cw.jpg",
"width": 54,
"height": 180,
"cut_type": 1,
"type": ""
},
"bmiddle": {
"url": "https://wx4.sinaimg.cn/wap360/006Wnm7Ggy1fxvvwh4er8j30j63mq7cw.jpg",
"width": 108,
"height": 360,
"cut_type": 1,
"type": ""
},
"large": {
"url": "https://wx4.sinaimg.cn/orj960/006Wnm7Ggy1fxvvwh4er8j30j63mq7cw.jpg",
"width": "690",
"height": "4706",
"cut_type": 1,
"type": ""
},
"original": {
"url": "https://wx4.sinaimg.cn/orj1080/006Wnm7Ggy1fxvvwh4er8j30j63mq7cw.jpg",
"width": "690",
"height": "4706",
"cut_type": 1,
"type": ""
},
"largest": {
"url": "https://wx4.sinaimg.cn/large/006Wnm7Ggy1fxvvwh4er8j30j63mq7cw.jpg",
"width": "690",
"height": "4706",
"cut_type": 1,
"type": ""
},
"mw2000": {
"url": "https://wx4.sinaimg.cn/mw2000/006Wnm7Ggy1fxvvwh4er8j30j63mq7cw.jpg",
"width": "690",
"height": "4706",
"cut_type": 1,
"type": ""
},
"object_id": "1042018:cc79c17f9f6c6ef16529c0523052cacc",
"pic_id": "006Wnm7Ggy1fxvvwh4er8j30j63mq7cw",
"photo_tag": 0,
"type": "pic",
"pic_status": 0
},
"006Wnm7Ggy1fxvvwhatblj30fc09uwfb": {
"thumbnail": {
"url": "https://wx3.sinaimg.cn/wap180/006Wnm7Ggy1fxvvwhatblj30fc09uwfb.jpg",
"width": 180,
"height": 115,
"cut_type": 1,
"type": ""
},
"bmiddle": {
"url": "https://wx3.sinaimg.cn/wap360/006Wnm7Ggy1fxvvwhatblj30fc09uwfb.jpg",
"width": 360,
"height": 230,
"cut_type": 1,
"type": ""
},
"large": {
"url": "https://wx3.sinaimg.cn/orj960/006Wnm7Ggy1fxvvwhatblj30fc09uwfb.jpg",
"width": "552",
"height": "354",
"cut_type": 1,
"type": ""
},
"original": {
"url": "https://wx3.sinaimg.cn/orj1080/006Wnm7Ggy1fxvvwhatblj30fc09uwfb.jpg",
"width": "552",
"height": "354",
"cut_type": 1,
"type": ""
},
"largest": {
"url": "https://wx3.sinaimg.cn/large/006Wnm7Ggy1fxvvwhatblj30fc09uwfb.jpg",
"width": "552",
"height": "354",
"cut_type": 1,
"type": ""
},
"mw2000": {
"url": "https://wx3.sinaimg.cn/mw2000/006Wnm7Ggy1fxvvwhatblj30fc09uwfb.jpg",
"width": "552",
"height": "354",
"cut_type": 1,
"type": ""
},
"object_id": "1042018:b14f97ec246044f36ab782b447a7f786",
"pic_id": "006Wnm7Ggy1fxvvwhatblj30fc09uwfb",
"photo_tag": 0,
"type": "pic",
"pic_status": 0
},
"006Wnm7Ggy1fxvvwhh0hlj30ek0k6aaq": {
"thumbnail": {
"url": "https://wx3.sinaimg.cn/wap180/006Wnm7Ggy1fxvvwhh0hlj30ek0k6aaq.jpg",
"width": 129,
"height": 180,
"cut_type": 1,
"type": ""
},
"bmiddle": {
"url": "https://wx3.sinaimg.cn/wap360/006Wnm7Ggy1fxvvwhh0hlj30ek0k6aaq.jpg",
"width": 259,
"height": 360,
"cut_type": 1,
"type": ""
},
"large": {
"url": "https://wx3.sinaimg.cn/orj960/006Wnm7Ggy1fxvvwhh0hlj30ek0k6aaq.jpg",
"width": "524",
"height": "726",
"cut_type": 1,
"type": ""
},
"original": {
"url": "https://wx3.sinaimg.cn/orj1080/006Wnm7Ggy1fxvvwhh0hlj30ek0k6aaq.jpg",
"width": "524",
"height": "726",
"cut_type": 1,
"type": ""
},
"largest": {
"url": "https://wx3.sinaimg.cn/large/006Wnm7Ggy1fxvvwhh0hlj30ek0k6aaq.jpg",
"width": "524",
"height": "726",
"cut_type": 1,
"type": ""
},
"mw2000": {
"url": "https://wx3.sinaimg.cn/mw2000/006Wnm7Ggy1fxvvwhh0hlj30ek0k6aaq.jpg",
"width": "524",
"height": "726",
"cut_type": 1,
"type": ""
},
"focus_point": {
"left": 0.17175573110580444,
"top": 0.03305784985423088,
"width": 0.17938931286334991,
"height": 0.12947657704353333
},
"object_id": "1042018:a7eb13cc31bcaea12be3cd573ff2a88f",
"pic_id": "006Wnm7Ggy1fxvvwhh0hlj30ek0k6aaq",
"photo_tag": 0,
"type": "pic",
"pic_status": 0
}
},
"is_paid": false,
"mblog_vip_type": 0,
"number_display_strategy": {
"apply_scenario_flag": 3,
"display_text_min_number": 1000000,
"display_text": "100万+"
},
"reposts_count": 4147,
"comments_count": 1998,
"attitudes_count": 12949,
"attitudes_status": 0,
"isLongText": false,
"mlevel": 0,
"content_auth": 0,
"is_show_bulletin": 2,
"comment_manage_info": {
"comment_permission_type": -1,
"approval_comment_type": 0
},
"mblogtype": 0,
"showFeedRepost": false,
"showFeedComment": false,
"rcList": []
}
},
{
"visible": {
"type": 0,
"list_id": 0
},
"created_at": "Fri Aug 03 10:30:05 +0800 2018",
"id": 4268878483600060,
"idstr": "4268878483600060",
"mid": "4268878483600060",
"mblogid": "GsTQkf6xu",
"user": {
"id": 1905320715,
"idstr": "1905320715",
"pc_new": 7,
"screen_name": "浅裤兜-",
"profile_image_url": "https://tvax3.sinaimg.cn/crop.0.0.512.512.50/7190e30bly8fft6l6lu3qj20e80e8q36.jpg?KID=imgbed,tva&Expires=1623920535&ssig=CVNyAmuOEK",
"profile_url": "/u/1905320715",
"verified": false,
"verified_type": -1,
"domain": "",
"weihao": "",
"avatar_large": "https://tvax3.sinaimg.cn/crop.0.0.512.512.180/7190e30bly8fft6l6lu3qj20e80e8q36.jpg?KID=imgbed,tva&Expires=1623920535&ssig=aFKFtG8Rpi",
"avatar_hd": "https://tvax3.sinaimg.cn/crop.0.0.512.512.1024/7190e30bly8fft6l6lu3qj20e80e8q36.jpg?KID=imgbed,tva&Expires=1623920535&ssig=%2FSNzk84PUr",
"follow_me": false,
"following": false,
"mbrank": 1,
"mbtype": 2,
"planet_video": true
},
"can_edit": false,
"text_raw": "转发微博 http://t.cn/RedtSI6",
"text": "转发微博 <a target=\"_blank\" data-pid=7190e30bgy1ftwb17lq9xj20qo1lraiw href=\"http://wx2.sinaimg.cn/large/7190e30bgy1ftwb17lq9xj20qo1lraiw.jpg\"><img class=\"icon-link\" src=\"https://h5.sinaimg.cn/upload/2015/01/21/20/timeline_card_small_photo_default.png\"/>查看图片</a>",
"source": "iPhone客户端",
"favorited": false,
"rid": "13_0_50_6558455571135251740_0_0_0",
"reads_count": 3351,
"pic_ids": [],
"geo": "",
"pic_num": 0,
"is_paid": false,
"mblog_vip_type": 0,
"number_display_strategy": {
"apply_scenario_flag": 3,
"display_text_min_number": 1000000,
"display_text": "100万+"
},
"reposts_count": 0,
"comments_count": 0,
"attitudes_count": 0,
"attitudes_status": 0,
"isLongText": false,
"mlevel": 0,
"content_auth": 0,
"is_show_bulletin": 2,
"comment_manage_info": {
"comment_manage_button": 1,
"comment_permission_type": 0,
"approval_comment_type": 0
},
"share_repost_type": 0,
"url_struct": [
{
"url_title": "发送iMessage垃圾信息低至7分钱/条 用户怀疑信息泄露",
"url_type_pic": "https://h5.sinaimg.cn/upload/2015/09/25/3/timeline_card_small_web.png",
"ori_url": "sinaweibo://browser?url=http%3A%2F%2Fwww.chinanews.com%2Fcj%2F2018%2F07-31%2F8584409.shtml&sinainternalbrowser=topnav&share_menu=1",
"page_id": "1001213000000024:fda9a54ea59414aea428d704ec0d7d62",
"short_url": "http://t.cn/Re0kCaU",
"long_url": "http://www.chinanews.com/cj/2018/07-31/8584409.shtml",
"url_type": 39,
"result": true,
"actionlog": {
"act_type": 1,
"act_code": 300,
"oid": "3000000024:fda9a54ea59414aea428d704ec0d7d62",
"uuid": 4267672677163762,
"cardid": "",
"lcardid": "",
"uicode": "",
"luicode": "",
"fid": "2304131905320715_-_WEIBO_SECOND_PROFILE_WEIBO",
"lfid": "",
"ext": "mid:4267756080183736|rid:13_0_50_6558455571135251740_0_0_0|short_url:http://t.cn/Re0kCaU|long_url:http://www.chinanews.com/cj/2018/07-31/8584409.shtml|comment_id:|miduid:1905320715|rootmid:4267756080183736|rootuid:1784473157|authorid:|uuid:4267672677163762|is_ad_weibo:0|analysis_card:url_struct"
},
"storage_type": "",
"hide": 0,
"object_type": "webpage",
"need_save_obj": 0,
"log": "su=Re0kCaU&mark=&mid=4267756080183736"
},
{
"url_title": "查看图片",
"url_type_pic": "https://h5.sinaimg.cn/upload/2015/01/21/20/timeline_card_small_photo.png",
"ori_url": "https://photo.weibo.com/h5/repost/reppic_id/1022:230796f39b715b2589232c36ea77b854cee8b8",
"short_url": "http://t.cn/RedtSI6",
"long_url": "https://photo.weibo.com/h5/repost/reppic_id/1022:230796f39b715b2589232c36ea77b854cee8b8",
"url_type": 39,
"result": false,
"actionlog": {
"act_type": 1,
"act_code": 300,
"oid": "1022:230796f39b715b2589232c36ea77b854cee8b8",
"uuid": 4268878489230513,
"cardid": "",
"lcardid": "",
"uicode": "",
"luicode": "",
"fid": "2304131905320715_-_WEIBO_SECOND_PROFILE_WEIBO",
"lfid": "",
"ext": "mid:4268878483600060|rid:13_0_50_6558455571135251740_0_0_0|short_url:http://t.cn/RedtSI6|long_url:https://photo.weibo.com/h5/repost/reppic_id/1022:230796f39b715b2589232c36ea77b854cee8b8|comment_id:|miduid:1905320715|rootmid:4268878483600060|rootuid:1905320715|authorid:|uuid:4268878489230513|is_ad_weibo:0|analysis_card:url_struct"
},
"storage_type": "",
"hide": 0,
"object_type": "",
"position": 2,
"pic_infos": {
"7190e30bgy1ftwb17lq9xj20qo1lraiw": {
"thumbnail": {
"type": "",
"url": "http://wx2.sinaimg.cn/thumbnail/7190e30bgy1ftwb17lq9xj20qo1lraiw.jpg",
"cut_type": 1,
"width": 55,
"height": 120,
"croped": false
},
"bmiddle": {
"type": "",
"url": "http://wx2.sinaimg.cn/bmiddle/7190e30bgy1ftwb17lq9xj20qo1lraiw.jpg",
"cut_type": 1,
"width": 440,
"height": 952,
"croped": false
},
"large": {
"type": "",
"url": "http://wx2.sinaimg.cn/large/7190e30bgy1ftwb17lq9xj20qo1lraiw.jpg",
"cut_type": 1,
"width": "960",
"height": "2079",
"croped": false
},
"woriginal": {
"type": "",
"url": "http://wx2.sinaimg.cn/woriginal/7190e30bgy1ftwb17lq9xj20qo1lraiw.jpg",
"cut_type": 1,
"width": "960",
"height": "2079",
"croped": false
}
}
},
"pic_ids": [
"7190e30bgy1ftwb17lq9xj20qo1lraiw"
],
"need_save_obj": 1
}
],
"title": {
"text": "公开",
"base_color": 1,
"icon_url": "http://h5.sinaimg.cn/upload/2015/07/14/34/timeline_title_public.png"
},
"mblogtype": 0,
"showFeedRepost": false,
"showFeedComment": false,
"rcList": [],
"retweeted_status": {
"visible": {
"type": 0,
"list_id": 0
},
"created_at": "Tue Jul 31 08:10:03 +0800 2018",
"id": 4267756080183736,
"idstr": "4267756080183736",
"mid": "4267756080183736",
"mblogid": "GsqE00LNu",
"user": {
"id": 1784473157,
"idstr": "1784473157",
"pc_new": 1,
"screen_name": "中国新闻网",
"profile_image_url": "https://tvax4.sinaimg.cn/crop.0.0.1080.1080.50/6a5ce645ly8gdij7dw130j20u00u00uc.jpg?KID=imgbed,tva&Expires=1623920535&ssig=3h8tHEfh2N",
"profile_url": "/u/1784473157",
"verified": true,
"verified_type": 3,
"domain": "chinanewsv",
"weihao": "",
"verified_type_ext": 50,
"avatar_large": "https://tvax4.sinaimg.cn/crop.0.0.1080.1080.180/6a5ce645ly8gdij7dw130j20u00u00uc.jpg?KID=imgbed,tva&Expires=1623920535&ssig=jE4czmLzMD",
"avatar_hd": "https://tvax4.sinaimg.cn/crop.0.0.1080.1080.1024/6a5ce645ly8gdij7dw130j20u00u00uc.jpg?KID=imgbed,tva&Expires=1623920535&ssig=%2FBsAV2Oq9D",
"follow_me": false,
"following": false,
"mbrank": 7,
"mbtype": 12,
"planet_video": false
},
"can_edit": false,
"text_raw": "【iMessage垃圾信息泛滥 发送一条低至7分钱】不少苹果手机用户反映iMessage经常收到垃圾信息,内容涉及赌博、色情、代购等。它们通过苹果手机自带的iMessage渠道塞满用户的手机,删不胜删,用户无法举报也不能拒收。记者了解发现,关键词“iMessage群发”在搜索引擎上搜索后,发现多家提供相关业务的平 ",
"text": "【iMessage垃圾信息泛滥 发送一条低至7分钱】不少苹果手机用户反映iMessage经常收到垃圾信息,内容涉及赌博、色情、代购等。它们通过苹果手机自带的iMessage渠道塞满用户的手机,删不胜删,用户无法举报也不能拒收。记者了解发现,关键词“iMessage群发”在搜索引擎上搜索后,发现多家提供相关业务的平 ...<span class=\"expand\">展开</span>",
"textLength": 375,
"source": "微博 weibo.com",
"favorited": false,
"buttons": [
{
"type": "follow",
"name": "加关注",
"params": {
"uid": 1784473157,
"disable_group": 1,
"extparams": {
"followcardid": "1008080010_"
}
},
"actionlog": {
"act_code": "92",
"oid": "4267756080183736"
}
}
],
"rid": "13_0_50_6558455571135251740_0_0_0",
"cardid": "star_583",
"pic_ids": [
"6a5ce645ly1ftsnmuihwdj20pu0hcjsl",
"6a5ce645ly1ftsnmx12k6j20f008fdgq"
],
"geo": "",
"pic_num": 2,
"pic_infos": {
"6a5ce645ly1ftsnmuihwdj20pu0hcjsl": {
"thumbnail": {
"url": "https://wx3.sinaimg.cn/wap180/6a5ce645ly1ftsnmuihwdj20pu0hcjsl.jpg",
"width": 180,
"height": 120,
"cut_type": 1,
"type": ""
},
"bmiddle": {
"url": "https://wx3.sinaimg.cn/wap360/6a5ce645ly1ftsnmuihwdj20pu0hcjsl.jpg",
"width": 360,
"height": 241,
"cut_type": 1,
"type": ""
},
"large": {
"url": "https://wx3.sinaimg.cn/orj960/6a5ce645ly1ftsnmuihwdj20pu0hcjsl.jpg",
"width": "930",
"height": "624",
"cut_type": 1,
"type": ""
},
"original": {
"url": "https://wx3.sinaimg.cn/orj1080/6a5ce645ly1ftsnmuihwdj20pu0hcjsl.jpg",
"width": "930",
"height": "624",
"cut_type": 1,
"type": ""
},
"largest": {
"url": "https://wx3.sinaimg.cn/large/6a5ce645ly1ftsnmuihwdj20pu0hcjsl.jpg",
"width": "930",
"height": "624",
"cut_type": 1,
"type": ""
},
"mw2000": {
"url": "https://wx3.sinaimg.cn/mw2000/6a5ce645ly1ftsnmuihwdj20pu0hcjsl.jpg",
"width": "930",
"height": "624",
"cut_type": 1,
"type": ""
},
"object_id": "1042018:6180615b76c761df21234884b893b7ca",
"pic_id": "6a5ce645ly1ftsnmuihwdj20pu0hcjsl",
"photo_tag": 0,
"type": "pic",
"pic_status": 0
},
"6a5ce645ly1ftsnmx12k6j20f008fdgq": {
"thumbnail": {
"url": "https://wx4.sinaimg.cn/wap180/6a5ce645ly1ftsnmx12k6j20f008fdgq.jpg",
"width": 180,
"height": 101,
"cut_type": 1,
"type": ""
},
"bmiddle": {
"url": "https://wx4.sinaimg.cn/wap360/6a5ce645ly1ftsnmx12k6j20f008fdgq.jpg",
"width": 360,
"height": 202,
"cut_type": 1,
"type": ""
},
"large": {
"url": "https://wx4.sinaimg.cn/orj960/6a5ce645ly1ftsnmx12k6j20f008fdgq.jpg",
"width": "540",
"height": "303",
"cut_type": 1,
"type": ""
},
"original": {
"url": "https://wx4.sinaimg.cn/orj1080/6a5ce645ly1ftsnmx12k6j20f008fdgq.jpg",
"width": "540",
"height": "303",
"cut_type": 1,
"type": ""
},
"largest": {
"url": "https://wx4.sinaimg.cn/large/6a5ce645ly1ftsnmx12k6j20f008fdgq.jpg",
"width": "540",
"height": "303",
"cut_type": 1,
"type": ""
},
"mw2000": {
"url": "https://wx4.sinaimg.cn/mw2000/6a5ce645ly1ftsnmx12k6j20f008fdgq.jpg",
"width": "540",
"height": "303",
"cut_type": 1,
"type": ""
},
"object_id": "1042018:140c4e0738fc370882e3983a0d7d7f40",
"pic_id": "6a5ce645ly1ftsnmx12k6j20f008fdgq",
"photo_tag": 0,
"type": "pic",
"pic_status": 0
}
},
"is_paid": false,
"mblog_vip_type": 0,
"reposts_count": 52,
"comments_count": 237,
"attitudes_count": 275,
"attitudes_status": 0,
"continue_tag": {
"title": "全文",
"pic": "http://h5.sinaimg.cn/upload/2015/09/25/3/timeline_card_small_article.png",
"scheme": "sinaweibo://detail?mblogid=4267756080183736&id=4267756080183736"
},
"isLongText": true,
"mlevel": 0,
"content_auth": 0,
"is_show_bulletin": 2,
"comment_manage_info": {
"comment_permission_type": -1,
"approval_comment_type": 0
},
"mblogtype": 0,
"showFeedRepost": false,
"showFeedComment": false,
"rcList": []
},
"page_info": {
"page_id": "1001213000000024:fda9a54ea59414aea428d704ec0d7d62",
"page_title": "发送iMessage垃圾信息低至7分钱/条 用户怀疑信息泄露",
"page_url": "sinaweibo://browser?url=http%3A%2F%2Fwww.chinanews.com%2Fcj%2F2018%2F07-31%2F8584409.shtml&sinainternalbrowser=topnav&share_menu=1",
"page_pic": "http://tc.sinaimg.cn/maxwidth.2048/tc.service.weibo.com/www_chinanews_com/7799259f8f2c68c6e3eaabbee7dddfa8.jpg",
"content1": "发送iMessage垃圾信息低至7分钱/条 用户怀疑信息泄露",
"type": 2,
"content2": " 工信部将全链条监管整治垃圾短信;iMessage包含赌场、色情、贷款等垃圾内容;用户怀疑信息泄露 7月30日,工信部等13个国家部门联合发布《综合整治骚扰电话专项行动方案》(以下简称“方案”),决定自2018年7月起到2019年12月底,在全国范围内组织开展为期一年半的综合整治骚扰电话专项行动。 不止是骚扰电话,垃圾短信也是工信部整治的重点。据人民日报,工信部将通过全链条监管整治垃圾短信,在信源上,对发送端口进行大检查。7月11日,工信部发布消息称,已关停发送垃圾短信的短信端口31个,处置涉嫌营销扰民的电话号码及关联号码82个,约谈涉事企业,责令其全面自查整改。情况查明后,将依法处理违规企业,问责涉事人员。",
"object_type": "webpage",
"act_status": 0,
"object_id": "3000000024:fda9a54ea59414aea428d704ec0d7d62"
}
},
{
"visible": {
"type": 0,
"list_id": 0
},
"created_at": "Tue Feb 06 10:15:38 +0800 2018",
"id": 4204369807276654,
"idstr": "4204369807276654",
"mid": "4204369807276654",
"mblogid": "G1PG4uwZo",
"user": {
"id": 1905320715,
"idstr": "1905320715",
"pc_new": 7,
"screen_name": "浅裤兜-",
"profile_image_url": "https://tvax3.sinaimg.cn/crop.0.0.512.512.50/7190e30bly8fft6l6lu3qj20e80e8q36.jpg?KID=imgbed,tva&Expires=1623920535&ssig=CVNyAmuOEK",
"profile_url": "/u/1905320715",
"verified": false,
"verified_type": -1,
"domain": "",
"weihao": "",
"avatar_large": "https://tvax3.sinaimg.cn/crop.0.0.512.512.180/7190e30bly8fft6l6lu3qj20e80e8q36.jpg?KID=imgbed,tva&Expires=1623920535&ssig=aFKFtG8Rpi",
"avatar_hd": "https://tvax3.sinaimg.cn/crop.0.0.512.512.1024/7190e30bly8fft6l6lu3qj20e80e8q36.jpg?KID=imgbed,tva&Expires=1623920535&ssig=%2FSNzk84PUr",
"follow_me": false,
"following": false,
"mbrank": 1,
"mbtype": 2,
"planet_video": true
},
"can_edit": false,
"text_raw": "#熊猫守护者# 我刚刚加入了“熊猫守护者”,据说会在陕西秦岭种下真实的竹子哦! 你也快来加入我们,一起为萌萌的熊猫种竹子吧! http://t.cn/R8EeaGy ",
"text": "<a href=\"/search/weibo?q=%23%E7%86%8A%E7%8C%AB%E5%AE%88%E6%8A%A4%E8%80%85%23\">#熊猫守护者#</a> 我刚刚加入了“熊猫守护者”,据说会在陕西秦岭种下真实的竹子哦! 你也快来加入我们,一起为萌萌的熊猫种竹子吧! <a target=\"_blank\" href=\"https://m.weibo.cn/z/panda/share/1905320715\"><img class=\"icon-link\" src=\"https://h5.sinaimg.cn/upload/2015/09/25/3/timeline_card_small_web_default.png\"/>网页链接</a> ",
"textLength": 139,
"source": "微博 HTML5 版",
"favorited": false,
"rid": "14_0_50_6558455571135251740_0_0_0",
"reads_count": 4344,
"pic_ids": [],
"geo": "",
"pic_num": 0,
"is_paid": false,
"mblog_vip_type": 0,
"number_display_strategy": {
"apply_scenario_flag": 3,
"display_text_min_number": 1000000,
"display_text": "100万+"
},
"reposts_count": 0,
"comments_count": 0,
"attitudes_count": 0,
"attitudes_status": 0,
"isLongText": false,
"mlevel": 0,
"content_auth": 0,
"is_show_bulletin": 2,
"comment_manage_info": {
"comment_manage_button": 1,
"comment_permission_type": 0,
"approval_comment_type": 0
},
"share_repost_type": 0,
"topic_struct": [
{
"title": "",
"topic_url": "sinaweibo://searchall?containerid=231522&q=%23%E7%86%8A%E7%8C%AB%E5%AE%88%E6%8A%A4%E8%80%85%23&isnewpage=1",
"topic_title": "熊猫守护者",
"is_invalid": 0
}
],
"url_struct": [
{
"url_title": "网页链接",
"url_type_pic": "https://h5.sinaimg.cn/upload/2015/09/25/3/timeline_card_small_web.png",
"ori_url": "https://m.weibo.cn/z/panda/share/1905320715",
"short_url": "http://t.cn/R8EeaGy",
"long_url": "https://m.weibo.cn/z/panda/share/1905320715",
"url_type": 0,
"result": true,
"actionlog": {
"act_type": 1,
"act_code": 300,
"oid": "",
"uuid": "",
"cardid": "",
"lcardid": "",
"uicode": "",
"luicode": "",
"fid": "2304131905320715_-_WEIBO_SECOND_PROFILE_WEIBO",
"lfid": "",
"ext": "mid:4204369807276654|rid:14_0_50_6558455571135251740_0_0_0|short_url:http://t.cn/R8EeaGy|long_url:https://m.weibo.cn/z/panda/share/1905320715|comment_id:|miduid:1905320715|rootmid:4204369807276654|rootuid:1905320715|authorid:|uuid:|is_ad_weibo:0|analysis_card:url_struct"
},
"storage_type": "",
"hide": 0,
"position": 2,
"need_save_obj": 1,
"log": "su=R8EeaGy&mark=&mid=4204369807276654"
}
],
"title": {
"text": "公开",
"base_color": 1,
"icon_url": "http://h5.sinaimg.cn/upload/2015/07/14/34/timeline_title_public.png"
},
"mblogtype": 0,
"showFeedRepost": false,
"showFeedComment": false,
"rcList": []
},
{
"visible": {
"type": 0,
"list_id": 0
},
"created_at": "Mon Jan 29 01:41:28 +0800 2018",
"id": 4201341314128308,
"idstr": "4201341314128308",
"mid": "4201341314128308",
"mblogid": "G0yTphjXC",
"user": {
"id": 1905320715,
"idstr": "1905320715",
"pc_new": 7,
"screen_name": "浅裤兜-",
"profile_image_url": "https://tvax3.sinaimg.cn/crop.0.0.512.512.50/7190e30bly8fft6l6lu3qj20e80e8q36.jpg?KID=imgbed,tva&Expires=1623920535&ssig=CVNyAmuOEK",
"profile_url": "/u/1905320715",
"verified": false,
"verified_type": -1,
"domain": "",
"weihao": "",
"avatar_large": "https://tvax3.sinaimg.cn/crop.0.0.512.512.180/7190e30bly8fft6l6lu3qj20e80e8q36.jpg?KID=imgbed,tva&Expires=1623920535&ssig=aFKFtG8Rpi",
"avatar_hd": "https://tvax3.sinaimg.cn/crop.0.0.512.512.1024/7190e30bly8fft6l6lu3qj20e80e8q36.jpg?KID=imgbed,tva&Expires=1623920535&ssig=%2FSNzk84PUr",
"follow_me": false,
"following": false,
"mbrank": 1,
"mbtype": 2,
"planet_video": true
},
"can_edit": false,
"text_raw": "转发微博",
"text": "转发微博",
"source": "iPhone客户端",
"favorited": false,
"rid": "15_0_50_6558455571135251740_0_0_0",
"reads_count": 2439,
"pic_ids": [],
"geo": "",
"pic_num": 0,
"is_paid": false,
"mblog_vip_type": 0,
"number_display_strategy": {
"apply_scenario_flag": 3,
"display_text_min_number": 1000000,
"display_text": "100万+"
},
"reposts_count": 0,
"comments_count": 0,
"attitudes_count": 0,
"attitudes_status": 0,
"isLongText": false,
"mlevel": 0,
"content_auth": 0,
"is_show_bulletin": 2,
"comment_manage_info": {
"comment_manage_button": 1,
"comment_permission_type": 0,
"approval_comment_type": 0
},
"share_repost_type": 0,
"title": {
"text": "公开",
"base_color": 1,
"icon_url": "http://h5.sinaimg.cn/upload/2015/07/14/34/timeline_title_public.png"
},
"mblogtype": 0,
"showFeedRepost": false,
"showFeedComment": false,
"rcList": [],
"retweeted_status": {
"visible": {
"type": 0,
"list_id": 3,
"list_idstr": "3"
},
"created_at": "Sun Jan 28 22:01:05 +0800 2018",
"id": 4201285849423751,
"idstr": "4201285849423751",
"mid": "4201285849423751",
"mblogid": "G0xrWDxxZ",
"user": null,
"text_raw": "根据博主设置,此内容无法访问 ",
"text": "根据博主设置,此内容无法访问 ",
"attitudes_status": 0,
"showFeedRepost": false,
"showFeedComment": false,
"rcList": []
}
},
{
"visible": {
"type": 0,
"list_id": 0
},
"created_at": "Sun Oct 01 11:36:19 +0800 2017",
"id": 4158004465498211,
"idstr": "4158004465498211",
"mid": "4158004465498211",
"mblogid": "FokXAn4kP",
"user": {
"id": 1905320715,
"idstr": "1905320715",
"pc_new": 7,
"screen_name": "浅裤兜-",
"profile_image_url": "https://tvax3.sinaimg.cn/crop.0.0.512.512.50/7190e30bly8fft6l6lu3qj20e80e8q36.jpg?KID=imgbed,tva&Expires=1623920535&ssig=CVNyAmuOEK",
"profile_url": "/u/1905320715",
"verified": false,
"verified_type": -1,
"domain": "",
"weihao": "",
"avatar_large": "https://tvax3.sinaimg.cn/crop.0.0.512.512.180/7190e30bly8fft6l6lu3qj20e80e8q36.jpg?KID=imgbed,tva&Expires=1623920535&ssig=aFKFtG8Rpi",
"avatar_hd": "https://tvax3.sinaimg.cn/crop.0.0.512.512.1024/7190e30bly8fft6l6lu3qj20e80e8q36.jpg?KID=imgbed,tva&Expires=1623920535&ssig=%2FSNzk84PUr",
"follow_me": false,
"following": false,
"mbrank": 1,
"mbtype": 2,
"planet_video": true
},
"can_edit": false,
"text_raw": "听说塞车 一群骗子 http://t.cn/R0nQu67 ",
"text": "听说塞车 一群骗子 <a target=\"_blank\" href=\"http://t.cn/R0nQu67\"><img class=\"icon-link\" src=\"https://h5.sinaimg.cn/upload/2015/09/25/3/timeline_card_small_video_default.png\"/>浅裤兜-的秒拍视频</a> ",
"textLength": 57,
"source": "iPhone 7 Plus",
"favorited": false,
"rid": "16_0_50_6558455571135251740_0_0_0",
"reads_count": 4303,
"pic_ids": [],
"geo": {
"type": "Point",
"coordinates": [
23.118368,
113.282501
]
},
"pic_num": 0,
"is_paid": false,
"mblog_vip_type": 0,
"number_display_strategy": {
"apply_scenario_flag": 3,
"display_text_min_number": 1000000,
"display_text": "100万+"
},
"reposts_count": 0,
"comments_count": 0,
"attitudes_count": 1,
"attitudes_status": 0,
"isLongText": false,
"mlevel": 0,
"content_auth": 0,
"is_show_bulletin": 2,
"comment_manage_info": {
"comment_manage_button": 1,
"comment_permission_type": 0,
"approval_comment_type": 0
},
"share_repost_type": 0,
"url_struct": [
{
"url_title": "浅裤兜-的秒拍视频",
"url_type_pic": "https://h5.sinaimg.cn/upload/2015/09/25/3/timeline_card_small_video.png",
"ori_url": "sinaweibo://video/vvs?mid=4158004465498211&object_id=1034:0b648d47ab040e8dd1da72a9095e4515&url_type=39&object_type=video&pos=1",
"page_id": "2304440b648d47ab040e8dd1da72a9095e4515",
"short_url": "http://t.cn/R0nQu67",
"long_url": "https://video.weibo.com/show?fid=1034:0b648d47ab040e8dd1da72a9095e4515",
"url_type": 39,
"result": false,
"actionlog": {
"act_type": 1,
"act_code": 799,
"cardid": "",
"lcardid": "",
"fid": "2304131905320715_-_WEIBO_SECOND_PROFILE_WEIBO",
"mid": "4158004465498211",
"oid": "1034:0b648d47ab040e8dd1da72a9095e4515",
"uuid": 4158004445320161,
"source": "video",
"ext": "uid:1905320715|mid:4158004465498211|objectid:1034%3A0b648d47ab040e8dd1da72a9095e4515|from:1|object_duration:9|miduid:1905320715|rootuid:1905320715|rootmid:4158004465498211|authorid:1905320715|video_orientation:vertical|third_vid:|is_album:0|is_contribution:0|isfan:0|sceneid:feed|uuid:4158004445320161|detail:web|contribution:0|short_video:0|st_video:1|author_mid:4158004465498211|cluster_type_status:|is_ad_weibo:0"
},
"storage_type": "unistore",
"hide": 0,
"object_type": "",
"ttl": 3600,
"need_save_obj": 0
}
],
"tag_struct": [
{
"tag_name": "白云",
"tag_scheme": "sinaweibo://cardlist?containerid=23065700428008644010400000068",
"tag_type": 1,
"tag_hidden": 2,
"url_type_pic": "https://h5.sinaimg.cn/upload/2015/07/17/34/timeline_icon_locate.png",
"actionlog": {
"act_code": 2413,
"oid": "1022:1001018008644010400000068",
"uicode": "",
"luicode": "",
"fid": "2304131905320715_-_WEIBO_SECOND_PROFILE_WEIBO",
"ext": "orifid:"
},
"oid": "1022:1001018008644010400000068",
"otype": "place",
"desc": "广州"
}
],
"title": {
"text": "公开",
"base_color": 1,
"icon_url": "http://h5.sinaimg.cn/upload/2015/07/14/34/timeline_title_public.png"
},
"mblogtype": 0,
"showFeedRepost": false,
"showFeedComment": false,
"rcList": [],
"page_info": {
"type": "11",
"page_id": "2304440b648d47ab040e8dd1da72a9095e4515",
"object_type": "video",
"object_id": "1034:0b648d47ab040e8dd1da72a9095e4515",
"content1": "浅裤兜-的秒拍视频",
"content2": "听说塞车 一群骗子 http://t.cn/R0R4FTA",
"act_status": 1,
"media_info": {
"video_orientation": "vertical",
"name": "浅裤兜-的秒拍视频",
"stream_url": "http://f.us.sinaimg.cn/003fOXoHlx07eFdHJtyM010f01000K1s0k01.mp4?label=mp4_ld&template=v2_template_ld_720&ori=0&ps=1CwnkDw1GXwCQx&Expires=1623913335&ssig=YDc%2FojJ4XV&KID=unistore,video",
"stream_url_hd": "http://f.us.sinaimg.cn/0029aH87lx07eFdHJSh2010f010025DI0k01.mp4?label=mp4_hd&template=v2_template_ld_720&ori=0&ps=1CwnkDw1GXwCQx&Expires=1623913335&ssig=oQ76db7u61&KID=unistore,video",
"h5_url": "https://video.weibo.com/show?fid=1034:0b648d47ab040e8dd1da72a9095e4515",
"mp4_sd_url": "http://f.us.sinaimg.cn/003fOXoHlx07eFdHJtyM010f01000K1s0k01.mp4?label=mp4_ld&template=v2_template_ld_720&ori=0&ps=1CwnkDw1GXwCQx&Expires=1623913335&ssig=YDc%2FojJ4XV&KID=unistore,video",
"mp4_hd_url": "http://f.us.sinaimg.cn/0029aH87lx07eFdHJSh2010f010025DI0k01.mp4?label=mp4_hd&template=v2_template_ld_720&ori=0&ps=1CwnkDw1GXwCQx&Expires=1623913335&ssig=oQ76db7u61&KID=unistore,video",
"h265_mp4_hd": "http://f.us.sinaimg.cn/004h5Nvclx07eFdHOM0U010f010000220k01.m3u8?ori=0&ps=1CwnkDw1GXwCQx&Expires=1623913335&ssig=a0V7dwlWMi&KID=unistore,video",
"h265_mp4_ld": "http://f.us.sinaimg.cn/000yv029lx07eFdHOmwg010f010000220k01.m3u8?ori=0&ps=1CwnkDw1GXwCQx&Expires=1623913335&ssig=L1ktspstcG&KID=unistore,video",
"inch_4_mp4_hd": "",
"inch_5_mp4_hd": "",
"inch_5_5_mp4_hd": "",
"mp4_720p_mp4": "",
"hevc_mp4_720p": "",
"prefetch_type": 1,
"prefetch_size": 169504,
"act_status": 1,
"protocol": "general",
"media_id": "0b648d47ab040e8dd1da72a9095e4515",
"origin_total_bitrate": 0,
"duration": 9,
"forward_strategy": -1,
"search_scheme": "sinaweibo://svssearch?containerid=232080",
"is_short_video": 0,
"next_title": "听说塞车 一群骗子 http://t.cn/R0R4FTA",
"video_details": [
{
"size": 176914,
"bitrate": 132,
"label": "mp4_sd_url",
"prefetch_size": 65543
},
{
"size": 498338,
"bitrate": 387,
"label": "mp4_hd_url",
"prefetch_size": 169504
}
],
"encode_mode": "v2_template_ld_720",
"play_completion_actions": [
{
"type": "1",
"icon": "http://img.t.sinajs.cn/t6/style/images/face/feed_c_r.png",
"text": "重播",
"link": "",
"btn_code": 1000,
"show_position": 1,
"actionlog": {
"oid": "2304440b648d47ab040e8dd1da72a9095e4515",
"act_code": 1221,
"act_type": 0,
"source": "video"
}
}
],
"video_publish_time": 1506828974,
"play_loop_type": 0,
"author_mid": "4158004465498211",
"author_name": "浅裤兜-",
"extra_info": {
"sceneid": "feed"
},
"has_recommend_video": 1,
"video_download_strategy": {
"abandon_download": 0
},
"jump_to": 6,
"online_users": "69次观看",
"online_users_number": 69,
"ttl": 3600,
"storage_type": "unistore",
"is_keep_current_mblog": 0,
"playback_list": [
{
"meta": {
"label": "mp4_hd",
"quality_index": 480,
"quality_desc": "标清",
"quality_label": "480p",
"quality_class": "SD",
"type": 1
},
"play_info": {
"type": 1,
"mime": "video/mp4",
"protocol": "general",
"label": "mp4_hd",
"url": "http://f.us.sinaimg.cn/0029aH87lx07eFdHJSh2010f010025DI0k01.mp4?label=mp4_hd&template=v2_template_ld_720&media_id=0b648d47ab040e8dd1da72a9095e4515&tp=:YTkl0eM8&us=0&ori=1&bf=4&ot=v&lp=00003LoBdy&ps=mZ6WB&uid=24WwXh&ab=3915-g1,966-g1&Expires=1623913335&ssig=oQ76db7u61&KID=unistore,video",
"bitrate": 394,
"prefetch_range": "0-169504",
"video_codecs": "avc1.64001f",
"fps": 30,
"width": 480,
"height": 844,
"size": 498338,
"duration": 9.868,
"sar": "0:1",
"audio_codecs": "mp4a.40.5",
"quality_label": "480p",
"quality_class": "SD",
"quality_desc": "标清",
"audio_channels": 2,
"audio_sample_fmt": "fltp",
"audio_bits_per_sample": 0,
"extension": {
"transcode_info": {
"ab_strategies": "3915-g1,966-g1"
}
},
"video_decoder": "soft",
"prefetch_enabled": true,
"tcp_receive_buffer": 262144
}
},
{
"meta": {
"label": "mp4_ld",
"quality_index": 360,
"quality_desc": "流畅",
"quality_label": "360p",
"quality_class": "SD",
"type": 1
},
"play_info": {
"type": 1,
"mime": "video/mp4",
"protocol": "general",
"label": "mp4_ld",
"url": "http://f.us.sinaimg.cn/003fOXoHlx07eFdHJtyM010f01000K1s0k01.mp4?label=mp4_ld&template=v2_template_ld_720&media_id=0b648d47ab040e8dd1da72a9095e4515&tp=:YTkl0eM8&us=0&ori=1&bf=4&ot=v&lp=00003LoBdy&ps=mZ6WB&uid=24WwXh&ab=3915-g1,966-g1&Expires=1623913335&ssig=YDc%2FojJ4XV&KID=unistore,video",
"bitrate": 140,
"prefetch_range": "0-65543",
"video_codecs": "avc1.640015",
"fps": 30,
"width": 240,
"height": 426,
"size": 176914,
"duration": 9.868,
"sar": "0:1",
"audio_codecs": "mp4a.40.5",
"quality_label": "360p",
"quality_class": "SD",
"quality_desc": "流畅",
"audio_channels": 2,
"audio_sample_fmt": "fltp",
"audio_bits_per_sample": 0,
"extension": {
"transcode_info": {
"ab_strategies": "3915-g1,966-g1"
}
},
"video_decoder": "soft",
"prefetch_enabled": true,
"tcp_receive_buffer": 262144
}
}
],
"author_info": {
"id": 1905320715,
"idstr": "1905320715",
"pc_new": 7,
"screen_name": "浅裤兜-",
"profile_image_url": "https://tvax3.sinaimg.cn/crop.0.0.512.512.50/7190e30bly8fft6l6lu3qj20e80e8q36.jpg?KID=imgbed,tva&Expires=1623920535&ssig=CVNyAmuOEK",
"profile_url": "/u/1905320715",
"verified": false,
"verified_type": -1,
"domain": "",
"weihao": "",
"avatar_large": "https://tvax3.sinaimg.cn/crop.0.0.512.512.180/7190e30bly8fft6l6lu3qj20e80e8q36.jpg?KID=imgbed,tva&Expires=1623920535&ssig=aFKFtG8Rpi",
"avatar_hd": "https://tvax3.sinaimg.cn/crop.0.0.512.512.1024/7190e30bly8fft6l6lu3qj20e80e8q36.jpg?KID=imgbed,tva&Expires=1623920535&ssig=%2FSNzk84PUr",
"follow_me": false,
"following": false,
"mbrank": 1,
"mbtype": 2,
"planet_video": true,
"description": "半黄梅子,向晚一帘疏雨。断魂分付与,春将去。",
"location": "广东 广州",
"gender": "m",
"followers_count": 184,
"friends_count": 120,
"statuses_count": 65,
"url": "",
"cover_image_phone": "https://ww1.sinaimg.cn/crop.0.0.640.640.640/549d0121tw1egm1kjly3jj20hs0hsq4f.jpg"
}
},
"page_pic": "http://wx2.sinaimg.cn/orj480/7190e30bly1fk2lbsygqtj20f40qodgt.jpg",
"page_title": "浅裤兜-的秒拍视频",
"page_url": "sinaweibo://infopage?containerid=2304440b648d47ab040e8dd1da72a9095e4515&containerid=2304440b648d47ab040e8dd1da72a9095e4515&url_type=39&object_type=video&pos=2",
"pic_info": {
"pic_big": {
"height": "844",
"url": "http://wx2.sinaimg.cn/orj480/7190e30bly1fk2lbsygqtj20f40qodgt.jpg",
"width": "480"
},
"pic_small": {
"height": "844",
"url": "http://wx2.sinaimg.cn/orj480/7190e30bly1fk2lbsygqtj20f40qodgt.jpg",
"width": "480"
},
"pic_middle": {
"url": "http://wx2.sinaimg.cn/orj480/7190e30bly1fk2lbsygqtj20f40qodgt.jpg",
"height": "844",
"width": "480"
}
},
"oid": "1905320715",
"type_icon": "",
"author_id": "1905320715",
"authorid": "1905320715",
"warn": "",
"actionlog": {
"act_type": 1,
"act_code": 799,
"cardid": "",
"lcardid": "",
"fid": "2304131905320715_-_WEIBO_SECOND_PROFILE_WEIBO",
"mid": "4158004465498211",
"oid": "1034:0b648d47ab040e8dd1da72a9095e4515",
"uuid": 4158004445320161,
"source": "video",
"ext": "uid:1905320715|mid:4158004465498211|objectid:1034%3A0b648d47ab040e8dd1da72a9095e4515|from:1|object_duration:9|miduid:1905320715|rootuid:1905320715|rootmid:4158004465498211|authorid:1905320715|video_orientation:vertical|third_vid:|is_album:0|is_contribution:0|isfan:0|sceneid:feed|uuid:4158004445320161|detail:native|contribution:0|short_video:0|st_video:1|author_mid:4158004465498211|cluster_type_status:|is_ad_weibo:0|analysis_card:page_info"
}
}
},
{
"visible": {
"type": 0,
"list_id": 0
},
"created_at": "Tue Sep 26 01:10:02 +0800 2017",
"id": 4156034916397269,
"idstr": "4156034916397269",
"mid": "4156034916397269",
"mblogid": "FnvITqQdL",
"user": {
"id": 1905320715,
"idstr": "1905320715",
"pc_new": 7,
"screen_name": "浅裤兜-",
"profile_image_url": "https://tvax3.sinaimg.cn/crop.0.0.512.512.50/7190e30bly8fft6l6lu3qj20e80e8q36.jpg?KID=imgbed,tva&Expires=1623920535&ssig=CVNyAmuOEK",
"profile_url": "/u/1905320715",
"verified": false,
"verified_type": -1,
"domain": "",
"weihao": "",
"avatar_large": "https://tvax3.sinaimg.cn/crop.0.0.512.512.180/7190e30bly8fft6l6lu3qj20e80e8q36.jpg?KID=imgbed,tva&Expires=1623920535&ssig=aFKFtG8Rpi",
"avatar_hd": "https://tvax3.sinaimg.cn/crop.0.0.512.512.1024/7190e30bly8fft6l6lu3qj20e80e8q36.jpg?KID=imgbed,tva&Expires=1623920535&ssig=%2FSNzk84PUr",
"follow_me": false,
"following": false,
"mbrank": 1,
"mbtype": 2,
"planet_video": true
},
"can_edit": false,
"text_raw": "[笑cry][笑cry]我居然会看完",
"text": "<img alt=\"[笑cry]\" title=\"[笑cry]\" src=\"//h5.sinaimg.cn/m/emoticon/icon/default/d_xiaoku-f2bd11b506.png\" /><img alt=\"[笑cry]\" title=\"[笑cry]\" src=\"//h5.sinaimg.cn/m/emoticon/icon/default/d_xiaoku-f2bd11b506.png\" />我居然会看完",
"source": "iPhone 7 Plus",
"favorited": false,
"rid": "17_0_50_6558455571135251740_0_0_0",
"reads_count": 4220,
"pic_ids": [],
"geo": "",
"pic_num": 0,
"is_paid": false,
"mblog_vip_type": 0,
"number_display_strategy": {
"apply_scenario_flag": 3,
"display_text_min_number": 1000000,
"display_text": "100万+"
},
"reposts_count": 0,
"comments_count": 0,
"attitudes_count": 1,
"attitudes_status": 0,
"isLongText": false,
"mlevel": 0,
"content_auth": 0,
"is_show_bulletin": 2,
"comment_manage_info": {
"comment_manage_button": 1,
"comment_permission_type": 0,
"approval_comment_type": 0
},
"share_repost_type": 0,
"title": {
"text": "公开",
"base_color": 1,
"icon_url": "http://h5.sinaimg.cn/upload/2015/07/14/34/timeline_title_public.png"
},
"mblogtype": 0,
"showFeedRepost": false,
"showFeedComment": false,
"rcList": [],
"retweeted_status": {
"visible": {
"type": 0,
"list_id": 3,
"list_idstr": "3"
},
"created_at": "Sun Sep 24 11:02:03 +0800 2017",
"id": 4155459126729634,
"idstr": "4155459126729634",
"mid": "4155459126729634",
"mblogid": "FngKcseGu",
"user": null,
"text_raw": "根据博主设置,此内容无法访问 ",
"text": "根据博主设置,此内容无法访问 ",
"attitudes_status": 0,
"showFeedRepost": false,
"showFeedComment": false,
"rcList": []
}
},
{
"visible": {
"type": 0,
"list_id": 0
},
"created_at": "Thu Jun 08 02:24:32 +0800 2017",
"id": 4116190999693309,
"idstr": "4116190999693309",
"mid": "4116190999693309",
"mblogid": "F6NcvEFFH",
"user": {
"id": 1905320715,
"idstr": "1905320715",
"pc_new": 7,
"screen_name": "浅裤兜-",
"profile_image_url": "https://tvax3.sinaimg.cn/crop.0.0.512.512.50/7190e30bly8fft6l6lu3qj20e80e8q36.jpg?KID=imgbed,tva&Expires=1623920535&ssig=CVNyAmuOEK",
"profile_url": "/u/1905320715",
"verified": false,
"verified_type": -1,
"domain": "",
"weihao": "",
"avatar_large": "https://tvax3.sinaimg.cn/crop.0.0.512.512.180/7190e30bly8fft6l6lu3qj20e80e8q36.jpg?KID=imgbed,tva&Expires=1623920535&ssig=aFKFtG8Rpi",
"avatar_hd": "https://tvax3.sinaimg.cn/crop.0.0.512.512.1024/7190e30bly8fft6l6lu3qj20e80e8q36.jpg?KID=imgbed,tva&Expires=1623920535&ssig=%2FSNzk84PUr",
"follow_me": false,
"following": false,
"mbrank": 1,
"mbtype": 2,
"planet_video": true
},
"can_edit": false,
"text_raw": "我以为我会哭\n 但是我没有 ",
"text": "我以为我会哭<br /> 但是我没有 ",
"textLength": 44,
"source": "iPhone 7 Plus",
"favorited": false,
"rid": "18_0_50_6558455571135251740_0_0_0",
"reads_count": 4974,
"pic_ids": [
"7190e30bgy1fgd748wv2ij20zk0qo140"
],
"geo": {
"type": "Point",
"coordinates": [
22.938582,
113.364619
]
},
"pic_num": 1,
"pic_infos": {
"7190e30bgy1fgd748wv2ij20zk0qo140": {
"thumbnail": {
"url": "https://wx3.sinaimg.cn/wap180/7190e30bgy1fgd748wv2ij20zk0qo140.jpg",
"width": 180,
"height": 134,
"cut_type": 1,
"type": ""
},
"bmiddle": {
"url": "https://wx3.sinaimg.cn/wap360/7190e30bgy1fgd748wv2ij20zk0qo140.jpg",
"width": 360,
"height": 269,
"cut_type": 1,
"type": ""
},
"large": {
"url": "https://wx3.sinaimg.cn/orj960/7190e30bgy1fgd748wv2ij20zk0qo140.jpg",
"width": "1280",
"height": "960",
"cut_type": 1,
"type": ""
},
"original": {
"url": "https://wx3.sinaimg.cn/orj1080/7190e30bgy1fgd748wv2ij20zk0qo140.jpg",
"width": "1280",
"height": "960",
"cut_type": 1,
"type": ""
},
"largest": {
"url": "https://wx3.sinaimg.cn/large/7190e30bgy1fgd748wv2ij20zk0qo140.jpg",
"width": "1280",
"height": "960",
"cut_type": 1,
"type": ""
},
"mw2000": {
"url": "https://wx3.sinaimg.cn/mw2000/7190e30bgy1fgd748wv2ij20zk0qo140.jpg",
"width": "1280",
"height": "960",
"cut_type": 1,
"type": ""
},
"object_id": "1042018:fe199656cca532d28759472bcb589e95",
"pic_id": "7190e30bgy1fgd748wv2ij20zk0qo140",
"photo_tag": 0,
"type": "pic",
"pic_status": 0
}
},
"is_paid": false,
"mblog_vip_type": 0,
"number_display_strategy": {
"apply_scenario_flag": 3,
"display_text_min_number": 1000000,
"display_text": "100万+"
},
"reposts_count": 0,
"comments_count": 12,
"attitudes_count": 3,
"attitudes_status": 0,
"isLongText": false,
"mlevel": 0,
"content_auth": 0,
"is_show_bulletin": 2,
"comment_manage_info": {
"comment_manage_button": 1,
"comment_permission_type": 0,
"approval_comment_type": 0
},
"share_repost_type": 0,
"tag_struct": [
{
"tag_name": "番禺区",
"tag_scheme": "sinaweibo://cardlist?containerid=23065700428008644011300000000",
"tag_type": 1,
"tag_hidden": 2,
"url_type_pic": "https://h5.sinaimg.cn/upload/2015/07/17/34/timeline_icon_locate.png",
"actionlog": {
"act_code": 2413,
"oid": "1022:1001018008644011300000000",
"uicode": "",
"luicode": "",
"fid": "2304131905320715_-_WEIBO_SECOND_PROFILE_WEIBO",
"ext": "orifid:"
},
"oid": "1022:1001018008644011300000000",
"otype": "place",
"desc": "广州"
}
],
"title": {
"text": "公开",
"base_color": 1,
"icon_url": "http://h5.sinaimg.cn/upload/2015/07/14/34/timeline_title_public.png"
},
"mblogtype": 0,
"showFeedRepost": false,
"showFeedComment": false,
"rcList": []
},
{
"visible": {
"type": 0,
"list_id": 0
},
"created_at": "Mon May 29 20:50:10 +0800 2017",
"id": 4112845367258615,
"idstr": "4112845367258615",
"mid": "4112845367258615",
"mblogid": "F5oakusir",
"user": {
"id": 1905320715,
"idstr": "1905320715",
"pc_new": 7,
"screen_name": "浅裤兜-",
"profile_image_url": "https://tvax3.sinaimg.cn/crop.0.0.512.512.50/7190e30bly8fft6l6lu3qj20e80e8q36.jpg?KID=imgbed,tva&Expires=1623920535&ssig=CVNyAmuOEK",
"profile_url": "/u/1905320715",
"verified": false,
"verified_type": -1,
"domain": "",
"weihao": "",
"avatar_large": "https://tvax3.sinaimg.cn/crop.0.0.512.512.180/7190e30bly8fft6l6lu3qj20e80e8q36.jpg?KID=imgbed,tva&Expires=1623920535&ssig=aFKFtG8Rpi",
"avatar_hd": "https://tvax3.sinaimg.cn/crop.0.0.512.512.1024/7190e30bly8fft6l6lu3qj20e80e8q36.jpg?KID=imgbed,tva&Expires=1623920535&ssig=%2FSNzk84PUr",
"follow_me": false,
"following": false,
"mbrank": 1,
"mbtype": 2,
"planet_video": true
},
"can_edit": false,
"text_raw": "爬爬山 ",
"text": "爬爬山 ",
"textLength": 26,
"source": "iPhone 7 Plus",
"favorited": false,
"rid": "19_0_50_6558455571135251740_0_0_0",
"reads_count": 4660,
"pic_ids": [
"7190e30bgy1fg2iu0w8d8j20qo0zkgya",
"7190e30bgy1fg2iu3qy9oj20zk0qojyf",
"7190e30bgy1fg2iusvvrbj20zk0qogrr",
"7190e30bgy1fg2iuuegdqj20zk0qowm9",
"7190e30bgy1fg2iuv2d3ij20zk0qo7c6",
"7190e30bgy1fg2iuvrh8bj20zk0qon6g"
],
"geo": {
"type": "Point",
"coordinates": [
23.190092,
113.294571
]
},
"pic_num": 6,
"pic_infos": {
"7190e30bgy1fg2iu0w8d8j20qo0zkgya": {
"thumbnail": {
"url": "https://wx4.sinaimg.cn/wap180/7190e30bgy1fg2iu0w8d8j20qo0zkgya.jpg",
"width": 135,
"height": 180,
"cut_type": 1,
"type": ""
},
"bmiddle": {
"url": "https://wx4.sinaimg.cn/wap360/7190e30bgy1fg2iu0w8d8j20qo0zkgya.jpg",
"width": 270,
"height": 360,
"cut_type": 1,
"type": ""
},
"large": {
"url": "https://wx4.sinaimg.cn/orj960/7190e30bgy1fg2iu0w8d8j20qo0zkgya.jpg",
"width": "960",
"height": "1280",
"cut_type": 1,
"type": ""
},
"original": {
"url": "https://wx4.sinaimg.cn/orj1080/7190e30bgy1fg2iu0w8d8j20qo0zkgya.jpg",
"width": "960",
"height": "1280",
"cut_type": 1,
"type": ""
},
"largest": {
"url": "https://wx4.sinaimg.cn/large/7190e30bgy1fg2iu0w8d8j20qo0zkgya.jpg",
"width": "960",
"height": "1280",
"cut_type": 1,
"type": ""
},
"mw2000": {
"url": "https://wx4.sinaimg.cn/mw2000/7190e30bgy1fg2iu0w8d8j20qo0zkgya.jpg",
"width": "960",
"height": "1280",
"cut_type": 1,
"type": ""
},
"object_id": "1042018:e2b528d9b36727d7d0835f7d5c4ea1dc",
"pic_id": "7190e30bgy1fg2iu0w8d8j20qo0zkgya",
"photo_tag": 0,
"video": "https://video.weibo.com/media/play?livephoto=https%3A%2F%2Fus.sinaimg.cn%2F001suMLVjx07bssngh0s010f01004Jdp0k01.mov",
"type": "livephoto",
"fid": "001suMLVjx07bssngh0s010f01004Jdp0k01",
"pic_status": 0
},
"7190e30bgy1fg2iu3qy9oj20zk0qojyf": {
"thumbnail": {
"url": "https://wx4.sinaimg.cn/wap180/7190e30bgy1fg2iu3qy9oj20zk0qojyf.jpg",
"width": 180,
"height": 134,
"cut_type": 1,
"type": ""
},
"bmiddle": {
"url": "https://wx4.sinaimg.cn/wap360/7190e30bgy1fg2iu3qy9oj20zk0qojyf.jpg",
"width": 360,
"height": 269,
"cut_type": 1,
"type": ""
},
"large": {
"url": "https://wx4.sinaimg.cn/orj960/7190e30bgy1fg2iu3qy9oj20zk0qojyf.jpg",
"width": "1280",
"height": "960",
"cut_type": 1,
"type": ""
},
"original": {
"url": "https://wx4.sinaimg.cn/orj1080/7190e30bgy1fg2iu3qy9oj20zk0qojyf.jpg",
"width": "1280",
"height": "960",
"cut_type": 1,
"type": ""
},
"largest": {
"url": "https://wx4.sinaimg.cn/large/7190e30bgy1fg2iu3qy9oj20zk0qojyf.jpg",
"width": "1280",
"height": "960",
"cut_type": 1,
"type": ""
},
"mw2000": {
"url": "https://wx4.sinaimg.cn/mw2000/7190e30bgy1fg2iu3qy9oj20zk0qojyf.jpg",
"width": "1280",
"height": "960",
"cut_type": 1,
"type": ""
},
"object_id": "1042018:37cbcaa1e859ce281b1045bdf09d7204",
"pic_id": "7190e30bgy1fg2iu3qy9oj20zk0qojyf",
"photo_tag": 0,
"video": "https://video.weibo.com/media/play?livephoto=https%3A%2F%2Fus.sinaimg.cn%2F002a41Tdjx07bssnMzCf010f01006lvA0k01.mov",
"type": "livephoto",
"fid": "002a41Tdjx07bssnMzCf010f01006lvA0k01",
"pic_status": 0
},
"7190e30bgy1fg2iusvvrbj20zk0qogrr": {
"thumbnail": {
"url": "https://wx3.sinaimg.cn/wap180/7190e30bgy1fg2iusvvrbj20zk0qogrr.jpg",
"width": 180,
"height": 134,
"cut_type": 1,
"type": ""
},
"bmiddle": {
"url": "https://wx3.sinaimg.cn/wap360/7190e30bgy1fg2iusvvrbj20zk0qogrr.jpg",
"width": 360,
"height": 269,
"cut_type": 1,
"type": ""
},
"large": {
"url": "https://wx3.sinaimg.cn/orj960/7190e30bgy1fg2iusvvrbj20zk0qogrr.jpg",
"width": "1280",
"height": "960",
"cut_type": 1,
"type": ""
},
"original": {
"url": "https://wx3.sinaimg.cn/orj1080/7190e30bgy1fg2iusvvrbj20zk0qogrr.jpg",
"width": "1280",
"height": "960",
"cut_type": 1,
"type": ""
},
"largest": {
"url": "https://wx3.sinaimg.cn/large/7190e30bgy1fg2iusvvrbj20zk0qogrr.jpg",
"width": "1280",
"height": "960",
"cut_type": 1,
"type": ""
},
"mw2000": {
"url": "https://wx3.sinaimg.cn/mw2000/7190e30bgy1fg2iusvvrbj20zk0qogrr.jpg",
"width": "1280",
"height": "960",
"cut_type": 1,
"type": ""
},
"object_id": "1042018:43eaae11d9637554c97a9c58a46affe6",
"pic_id": "7190e30bgy1fg2iusvvrbj20zk0qogrr",
"photo_tag": 0,
"video": "https://video.weibo.com/media/play?livephoto=https%3A%2F%2Fus.sinaimg.cn%2F002F7BWmjx07bssmWNrp010f010042nR0k01.mov",
"type": "livephoto",
"fid": "002F7BWmjx07bssmWNrp010f010042nR0k01",
"pic_status": 0
},
"7190e30bgy1fg2iuuegdqj20zk0qowm9": {
"thumbnail": {
"url": "https://wx4.sinaimg.cn/wap180/7190e30bgy1fg2iuuegdqj20zk0qowm9.jpg",
"width": 180,
"height": 134,
"cut_type": 1,
"type": ""
},
"bmiddle": {
"url": "https://wx4.sinaimg.cn/wap360/7190e30bgy1fg2iuuegdqj20zk0qowm9.jpg",
"width": 360,
"height": 269,
"cut_type": 1,
"type": ""
},
"large": {
"url": "https://wx4.sinaimg.cn/orj960/7190e30bgy1fg2iuuegdqj20zk0qowm9.jpg",
"width": "1280",
"height": "960",
"cut_type": 1,
"type": ""
},
"original": {
"url": "https://wx4.sinaimg.cn/orj1080/7190e30bgy1fg2iuuegdqj20zk0qowm9.jpg",
"width": "1280",
"height": "960",
"cut_type": 1,
"type": ""
},
"largest": {
"url": "https://wx4.sinaimg.cn/large/7190e30bgy1fg2iuuegdqj20zk0qowm9.jpg",
"width": "1280",
"height": "960",
"cut_type": 1,
"type": ""
},
"mw2000": {
"url": "https://wx4.sinaimg.cn/mw2000/7190e30bgy1fg2iuuegdqj20zk0qowm9.jpg",
"width": "1280",
"height": "960",
"cut_type": 1,
"type": ""
},
"object_id": "1042018:d5b09cf43345c5990c5bf1137e4ecf7f",
"pic_id": "7190e30bgy1fg2iuuegdqj20zk0qowm9",
"photo_tag": 0,
"video": "https://video.weibo.com/media/play?livephoto=https%3A%2F%2Fus.sinaimg.cn%2F0018SXeajx07bssoa36f010f0100627V0k01.mov",
"type": "livephoto",
"fid": "0018SXeajx07bssoa36f010f0100627V0k01",
"pic_status": 0
},
"7190e30bgy1fg2iuv2d3ij20zk0qo7c6": {
"thumbnail": {
"url": "https://wx3.sinaimg.cn/wap180/7190e30bgy1fg2iuv2d3ij20zk0qo7c6.jpg",
"width": 180,
"height": 134,
"cut_type": 1,
"type": ""
},
"bmiddle": {
"url": "https://wx3.sinaimg.cn/wap360/7190e30bgy1fg2iuv2d3ij20zk0qo7c6.jpg",
"width": 360,
"height": 269,
"cut_type": 1,
"type": ""
},
"large": {
"url": "https://wx3.sinaimg.cn/orj960/7190e30bgy1fg2iuv2d3ij20zk0qo7c6.jpg",
"width": "1280",
"height": "960",
"cut_type": 1,
"type": ""
},
"original": {
"url": "https://wx3.sinaimg.cn/orj1080/7190e30bgy1fg2iuv2d3ij20zk0qo7c6.jpg",
"width": "1280",
"height": "960",
"cut_type": 1,
"type": ""
},
"largest": {
"url": "https://wx3.sinaimg.cn/large/7190e30bgy1fg2iuv2d3ij20zk0qo7c6.jpg",
"width": "1280",
"height": "960",
"cut_type": 1,
"type": ""
},
"mw2000": {
"url": "https://wx3.sinaimg.cn/mw2000/7190e30bgy1fg2iuv2d3ij20zk0qo7c6.jpg",
"width": "1280",
"height": "960",
"cut_type": 1,
"type": ""
},
"object_id": "1042018:4f3e0c61f0c998ad09c2e6f2c8a12edb",
"pic_id": "7190e30bgy1fg2iuv2d3ij20zk0qo7c6",
"photo_tag": 0,
"video": "https://video.weibo.com/media/play?livephoto=https%3A%2F%2Fus.sinaimg.cn%2F0011yjjjjx07bssoUBfa010f01006xEd0k01.mov",
"type": "livephoto",
"fid": "0011yjjjjx07bssoUBfa010f01006xEd0k01",
"pic_status": 0
},
"7190e30bgy1fg2iuvrh8bj20zk0qon6g": {
"thumbnail": {
"url": "https://wx4.sinaimg.cn/wap180/7190e30bgy1fg2iuvrh8bj20zk0qon6g.jpg",
"width": 180,
"height": 134,
"cut_type": 1,
"type": ""
},
"bmiddle": {
"url": "https://wx4.sinaimg.cn/wap360/7190e30bgy1fg2iuvrh8bj20zk0qon6g.jpg",
"width": 360,
"height": 269,
"cut_type": 1,
"type": ""
},
"large": {
"url": "https://wx4.sinaimg.cn/orj960/7190e30bgy1fg2iuvrh8bj20zk0qon6g.jpg",
"width": "1280",
"height": "960",
"cut_type": 1,
"type": ""
},
"original": {
"url": "https://wx4.sinaimg.cn/orj1080/7190e30bgy1fg2iuvrh8bj20zk0qon6g.jpg",
"width": "1280",
"height": "960",
"cut_type": 1,
"type": ""
},
"largest": {
"url": "https://wx4.sinaimg.cn/large/7190e30bgy1fg2iuvrh8bj20zk0qon6g.jpg",
"width": "1280",
"height": "960",
"cut_type": 1,
"type": ""
},
"mw2000": {
"url": "https://wx4.sinaimg.cn/mw2000/7190e30bgy1fg2iuvrh8bj20zk0qon6g.jpg",
"width": "1280",
"height": "960",
"cut_type": 1,
"type": ""
},
"object_id": "1042018:5e11014dc35224fb6a457dce0788a569",
"pic_id": "7190e30bgy1fg2iuvrh8bj20zk0qon6g",
"photo_tag": 0,
"video": "https://video.weibo.com/media/play?livephoto=https%3A%2F%2Fus.sinaimg.cn%2F0002lz1bjx07bssp3mcU010f01003NUI0k01.mov",
"type": "livephoto",
"fid": "0002lz1bjx07bssp3mcU010f01003NUI0k01",
"pic_status": 0
}
},
"is_paid": false,
"mblog_vip_type": 0,
"number_display_strategy": {
"apply_scenario_flag": 3,
"display_text_min_number": 1000000,
"display_text": "100万+"
},
"reposts_count": 0,
"comments_count": 12,
"attitudes_count": 2,
"attitudes_status": 0,
"isLongText": false,
"mlevel": 0,
"content_auth": 0,
"is_show_bulletin": 2,
"comment_manage_info": {
"comment_manage_button": 1,
"comment_permission_type": 0,
"approval_comment_type": 0
},
"share_repost_type": 0,
"tag_struct": [
{
"tag_name": "白云山风景名胜区",
"tag_scheme": "sinaweibo://cardlist?containerid=2306570042B2094654D46CAAF8409C",
"tag_type": 1,
"tag_hidden": 2,
"url_type_pic": "https://h5.sinaimg.cn/upload/2015/07/17/34/timeline_icon_locate.png",
"actionlog": {
"act_code": 2413,
"oid": "1022:100101B2094654D46CAAF8409C",
"uicode": "",
"luicode": "",
"fid": "2304131905320715_-_WEIBO_SECOND_PROFILE_WEIBO",
"ext": "orifid:"
},
"oid": "1022:100101B2094654D46CAAF8409C",
"otype": "place",
"desc": "广州"
}
],
"title": {
"text": "公开",
"base_color": 1,
"icon_url": "http://h5.sinaimg.cn/upload/2015/07/14/34/timeline_title_public.png"
},
"mblogtype": 0,
"showFeedRepost": false,
"showFeedComment": false,
"rcList": []
}
],
"status_visible": 0,
"bottom_tips_visible": false,
"bottom_tips_text": "",
"topicList": []
},
"ok": 1
}
那有多少页呢 这个每页是20条 上一步获取的微博总数除以20就知道了
好办了吧 下面是完整代码
1 import requests 2 import json 3 import time 4 from datetime import datetime 5 import os 6 import math 7 8 user_id = input("微博UID:") 9 try: 10 user_id = int(user_id) 11 12 header = { 13 "user-agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.106 Safari/537.36", 14 15 "cookie": "login_sid_t=c41d8e88196471e19135c8ac42619cc2; cross_origin_proto=SSL; _s_tentry=passport.weibo.com; Apache=765989013204.4244.1610527042365; SINAGLOBAL=765989013204.4244.1610527042365; ULV=1610527042373:1:1:1:765989013204.4244.1610527042365:; SCF=Alv2P72l_CD50Qdc5Vn5yrlBeB7c0pgHknG1i_n-k-Anl6dRDiPDbTvrCdekw7SdTVW6Nq-m0nLStfpa9WaKKb0.; UOR=,,www.baidu.com; WBStorage=8daec78e6a891122|undefined; wb_view_log=1920*10801; SUB=_2A25Nztc6DeRhGedH61cS8i7LyjmIHXVuuk_yrDV8PUNbmtB-LRXgkW9NUPKNXHKtGggqpO1wPh4NhiWvWwi2blv1; SUBP=0033WrSXqPxfM725Ws9jqgMF55529P9D9Wh2F2faZ-wQ2nnMl9kZ8KEM5JpX5KzhUgL.Fo24eh-0eo5NeK-2dJLoIp7LxKqLBo-L1h-LxKnLBKeLBKBLxK-L1h-L1-e_; ALF=1655429866; SSOLoginState=1623893866; XSRF-TOKEN=QxZEsyEpYqTjjnaIOC6Uhzd-; WBPSESS=IEEdpHbv1Nl15B-3M2cdupj-fTtPrX2mFBOu9iQ22Q-3X6oR2LyHnLqYX603ZL_ZdnEHFjEwQK0M5Vp5Nrapnuj4g8m5k9Xd2r9Z7jQlGT868XxecESJIuYoytmanGbG" 16 } 17 user_info = requests.get(url='https://www.weibo.com/ajax/profile/info?uid=%d'%(user_id),headers=header) 18 if user_info.status_code == 200: 19 20 user_info_json = user_info.json() 21 22 fields = { 23 "id":"微博UID", 24 "screen_name":"用户昵称", 25 "province":"省份ID", 26 "city":"城市ID", 27 "location":"所在地", 28 "description":"个人描述", 29 "url":"博客地址", 30 "profile_url":"微博地址", 31 "domain":"个性域名", 32 "gender":"性别", # m:男、f:女、n:未知 33 "followers_count":"粉丝数", 34 "friends_count":"关注数", 35 "statuses_count":"微博数量", 36 "avatar_hd":"头像", 37 "created_at":"注册时间" 38 } 39 40 time_format = '%a %b %d %H:%M:%S +0800 %Y' 41 user_info_str = '' 42 43 for k in fields: 44 if k == 'created_at': 45 user_info_json['data']['user'][k] = datetime.strptime(user_info_json['data']['user'][k],time_format) 46 user_info_str += "%s:%s \n"%(fields[k],user_info_json['data']['user'][k]) 47 48 user_info_str += "数据抓取时间:%s"%(time.strftime("%Y-%m-%d %H:%M:%S", time.localtime())) 49 #创建目录 50 savePath = os.path.join(os.path.abspath('./weibo'), str(user_info_json['data']['user']['id']) + user_info_json['data']['user']['screen_name']) 51 if not os.path.exists(savePath): 52 print('创建目录%s'%(savePath)) 53 os.makedirs(savePath) 54 55 #写入资料 56 with open(file=os.path.join(savePath, '资料.txt'),mode='w',encoding='utf-8') as f: 57 print("写入资料") 58 f.write(user_info_str) 59 60 #开始抓取微博 61 with open(file=os.path.join(savePath, '微博数据.txt'),mode='w',encoding='utf-8') as f2: 62 for i in range(math.ceil(user_info_json['data']['user']['statuses_count']/20)): 63 page = i + 1 64 print("开始抓取第%d页微博数据"%(page)) 65 lists = requests.get(url='https://www.weibo.com/ajax/statuses/mymblog?uid=%d&page=%d&feature=0'%(user_id,page),headers=header) 66 if lists.status_code == 200: 67 print("开始保存第%d页微博数据"%(page)) 68 lists_json = lists.json() 69 for v in lists_json['data']['list']: 70 f2.write("[%s] %s \n"%(datetime.strptime(v['created_at'],time_format),v['text_raw'])) 71 72 print("微博数据抓取完成") 73 else: 74 print("微博数据抓取失败") 75 except Exception: 76 print('请输入正确的微博UID')
我这里是保存到一个目录上生成两个文件 可以根据自己爱好命名和保存
微博数据.txt
资料.txt

给我点关爱,让我不在工地孤独老去..

浙公网安备 33010602011771号