extends BaseActivity implements IBaseView
{ + + + public P mPresenter; + + public abstract int getLayoutId(); + + public abstract void initView(); + + public abstract void initPresenter(); + + + public void loadData() { + } + + @Override + protected void onCreate(@Nullable Bundle savedInstanceState) { + super.onCreate(savedInstanceState); + APPManager.getInstance().addActivity(this); + setContentView(getLayoutId()); + initView(); + initPresenter(); + loadData(); + } + + @Override + public void showError(final String e) { + runOnUiThread(() -> + Toast.makeText(BaseMVPActivity.this, e, Toast.LENGTH_SHORT).show()); + } + + @Override + public void finish() { + super.finish(); + overridePendingTransition(R.anim.in_from_left, R.anim.out_to_right); + } + + @Override + protected void onDestroy() { + super.onDestroy(); + if (mPresenter != null) { + mPresenter.detach(); + } + } +} + + diff --git a/app/src/main/java/com/fy/weibo/base/BaseMVPFragment.java b/app/src/main/java/com/fy/weibo/base/BaseMVPFragment.java new file mode 100644 index 0000000..8a8a631 --- /dev/null +++ b/app/src/main/java/com/fy/weibo/base/BaseMVPFragment.java @@ -0,0 +1,41 @@ +package com.fy.weibo.base; + + +import com.fy.weibo.interfaces.IBaseView; + + +/** + * Created by Fan on 2018/7/30. + * Fighting!!! + */ +public abstract class BaseMVPFragment
extends BaseFragment implements IBaseView
{
+
+
+ protected P mPresenter;
+ public abstract void initPresenter();
+
+
+
+ @Override
+ public void initData() {
+ super.initData();
+ initPresenter();
+ }
+
+
+ public void showLoading() {
+
+ }
+ public void hideLoading() {
+
+ }
+
+
+ @Override
+ public void onDestroy() {
+ super.onDestroy();
+ if (mPresenter != null) {
+ mPresenter.detach();
+ }
+ }
+}
diff --git a/app/src/main/java/com/fy/weibo/base/BaseViewPagerFragment.java b/app/src/main/java/com/fy/weibo/base/BaseViewPagerFragment.java
new file mode 100644
index 0000000..07030bb
--- /dev/null
+++ b/app/src/main/java/com/fy/weibo/base/BaseViewPagerFragment.java
@@ -0,0 +1,79 @@
+package com.fy.weibo.base;
+
+import android.content.res.Resources;
+import android.os.Bundle;
+import android.support.design.widget.TabLayout;
+import android.support.v4.view.ViewPager;
+import android.util.TypedValue;
+import android.view.View;
+import android.widget.LinearLayout;
+
+
+import com.fy.weibo.R;
+
+import java.lang.reflect.Field;
+
+/**
+ * Created by Fan on 2018/8/28.
+ * Fighting!!!
+ */
+public abstract class BaseViewPagerFragment extends BaseFragment {
+
+
+ public TabLayout tabLayout;
+ public ViewPager viewPager;
+
+ protected abstract void initViewPager();
+
+ @Override
+ public int getContentViewId() {
+ return R.layout.view_pager;
+ }
+
+ @Override
+ public void initAllMembersView(Bundle saveInstanceState) {
+
+ tabLayout = mRootView.findViewById(R.id.comment_tab);
+ tabLayout.post(()-> setIndicator(tabLayout, 30, 30));
+ viewPager = mRootView.findViewById(R.id.comment_view_pager);
+ viewPager.setOffscreenPageLimit(2);
+ initViewPager();
+ tabLayout.setupWithViewPager(viewPager);
+
+ }
+
+ protected void setIndicator(TabLayout tabs, int leftDip, int rightDip) {
+ Class> tabLayout = tabs.getClass();
+ Field tabStrip = null;
+ try {
+ //通过反射得到tablayout的下划线的Field
+ tabStrip = tabLayout.getDeclaredField("mTabStrip");
+ } catch (NoSuchFieldException e) {
+ e.printStackTrace();
+ }
+
+ tabStrip.setAccessible(true);
+ LinearLayout llTab = null;
+ try {
+ //得到承载下划线的LinearLayout //源码可以看到SlidingTabStrip继承得到承载下划线的LinearLayout
+ llTab = (LinearLayout) tabStrip.get(tabs);
+ } catch (IllegalAccessException e) {
+ e.printStackTrace();
+ }
+
+ int left = (int) TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP, leftDip, Resources.getSystem().getDisplayMetrics());
+ int right = (int) TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP, rightDip, Resources.getSystem().getDisplayMetrics());
+ //循环设置下划线的左边距和右边距
+ for (int i = 0; i < llTab.getChildCount(); i++) {
+ View child = llTab.getChildAt(i);
+ child.setPadding(0, 0, 0, 0);
+ LinearLayout.LayoutParams params = new LinearLayout.LayoutParams(0, LinearLayout.LayoutParams.MATCH_PARENT, 1);
+ params.leftMargin = left;
+ params.rightMargin = right;
+ child.setLayoutParams(params);
+ child.invalidate();
+ }
+ }
+
+
+}
diff --git a/app/src/main/java/com/fy/weibo/bean/Comments.java b/app/src/main/java/com/fy/weibo/bean/Comments.java
index cc165c9..e969815 100644
--- a/app/src/main/java/com/fy/weibo/bean/Comments.java
+++ b/app/src/main/java/com/fy/weibo/bean/Comments.java
@@ -6,7 +6,7 @@
* Created by Fan on 2018/8/8.
* Fighting!!!
*/
-public class Comments implements Serializable {
+public final class Comments implements Serializable {
private String created_at;
private String text;
diff --git a/app/src/main/java/com/fy/weibo/bean/PicUrlsBean.java b/app/src/main/java/com/fy/weibo/bean/PicUrlsBean.java
index 88e63a9..5053dd7 100644
--- a/app/src/main/java/com/fy/weibo/bean/PicUrlsBean.java
+++ b/app/src/main/java/com/fy/weibo/bean/PicUrlsBean.java
@@ -6,7 +6,7 @@
* Created by Fan on 2018/8/20.
* Fighting!!!
*/
-public class PicUrlsBean implements Serializable{
+public final class PicUrlsBean implements Serializable{
private String thumbnail_pic;
diff --git a/app/src/main/java/com/fy/weibo/bean/SimpleUser.java b/app/src/main/java/com/fy/weibo/bean/SimpleUser.java
index b2ecc63..ca8301b 100644
--- a/app/src/main/java/com/fy/weibo/bean/SimpleUser.java
+++ b/app/src/main/java/com/fy/weibo/bean/SimpleUser.java
@@ -9,7 +9,7 @@
* Created by Fan on 2018/7/31.
* Fighting!!!
*/
-public class SimpleUser implements Serializable {
+public final class SimpleUser implements Serializable {
private String idstr;
private String screen_name;
diff --git a/app/src/main/java/com/fy/weibo/bean/TokenInfo.java b/app/src/main/java/com/fy/weibo/bean/TokenInfo.java
new file mode 100644
index 0000000..2c0998f
--- /dev/null
+++ b/app/src/main/java/com/fy/weibo/bean/TokenInfo.java
@@ -0,0 +1,29 @@
+package com.fy.weibo.bean;
+
+/**
+ * Created by Fan on 2018/8/24.
+ * Fighting!!!
+ */
+public final class TokenInfo {
+
+
+
+ private String uid;
+ private String create_at;
+ private String expire_in;
+
+ public String getUid() {
+ return uid;
+ }
+
+
+ public String getCreate_at() {
+ return create_at;
+ }
+
+
+ public String getExpire_in() {
+ return expire_in;
+ }
+
+}
diff --git a/app/src/main/java/com/fy/weibo/bean/UserCounts.java b/app/src/main/java/com/fy/weibo/bean/UserCounts.java
new file mode 100644
index 0000000..581e0d4
--- /dev/null
+++ b/app/src/main/java/com/fy/weibo/bean/UserCounts.java
@@ -0,0 +1,35 @@
+package com.fy.weibo.bean;
+
+/**
+ * Created by Fan on 2018/8/24.
+ * Fighting!!!
+ */
+public final class UserCounts {
+
+
+
+ private String id;
+ private String followers_count;
+ private String friends_count;
+ private String statuses_count;
+
+ public String getId() {
+ return id;
+ }
+
+
+ public String getFollowers_count() {
+ return followers_count;
+ }
+
+
+ public String getFriends_count() {
+ return friends_count;
+ }
+
+
+ public String getStatuses_count() {
+ return statuses_count;
+ }
+
+}
diff --git a/app/src/main/java/com/fy/weibo/bean/UserInfo.java b/app/src/main/java/com/fy/weibo/bean/UserInfo.java
new file mode 100644
index 0000000..4a5d363
--- /dev/null
+++ b/app/src/main/java/com/fy/weibo/bean/UserInfo.java
@@ -0,0 +1,63 @@
+package com.fy.weibo.bean;
+
+import com.fy.weibo.util.TimeUtil;
+
+import java.io.Serializable;
+
+/**
+ * Created by Fan on 2018/8/21.
+ * Fighting!!!
+ */
+public final class UserInfo implements Serializable{
+
+ private String idstr;
+ private String screen_name;
+ private String location;
+ private String cover_image_phone;
+ private String created_at;
+ private boolean following;
+ private String city;
+ private String province;
+ private String profile_image_url;
+ private String gender;
+
+ public String getGender() {
+ return gender;
+ }
+
+ public String getProfile_image_url() {
+ return profile_image_url;
+ }
+
+ public String getIdstr() {
+ return idstr;
+ }
+
+ public String getScreen_name() {
+ return screen_name;
+ }
+
+ public String getLocation() {
+ return location;
+ }
+
+ public String getCover_image_phone() {
+ return cover_image_phone;
+ }
+
+ public String getCreated_at() {
+ return TimeUtil.GMTtoNormal(created_at);
+ }
+
+ public boolean isFollowing() {
+ return following;
+ }
+
+ public String getCity() {
+ return city;
+ }
+
+ public String getProvince() {
+ return province;
+ }
+}
diff --git a/app/src/main/java/com/fy/weibo/bean/WeiBo.java b/app/src/main/java/com/fy/weibo/bean/WeiBo.java
index 802532b..0e2415e 100644
--- a/app/src/main/java/com/fy/weibo/bean/WeiBo.java
+++ b/app/src/main/java/com/fy/weibo/bean/WeiBo.java
@@ -10,7 +10,7 @@
* Created by Fan on 2018/7/30.
* Fighting!!!
*/
-public class WeiBo implements Serializable {
+public final class WeiBo implements Serializable {
private String idstr;
private String created_at;
diff --git a/app/src/main/java/com/fy/weibo/comment.json b/app/src/main/java/com/fy/weibo/comment.json
index 2c2daf0..79e86d3 100644
--- a/app/src/main/java/com/fy/weibo/comment.json
+++ b/app/src/main/java/com/fy/weibo/comment.json
@@ -1,36 +1,36 @@
{
"comments": [
{
- "created_at": "Wed Aug 08 20:11:52 +0800 2018",
- "id": 4270836833644270,
- "rootid": 4270836833644270,
- "floor_number": 31,
- "text": "吾辈当自强",
"disable_reply": 0,
+ "created_at": "Tue Aug 21 01:54:24 +0800 2018",
+ "id": 4275271689328960,
+ "rootid": 4275042449638211,
+ "floor_number": 0,
+ "text": "回复@尼古拉斯潮能:易[允悲]",
"user": {
- "id": 1648501434,
- "idstr": "1648501434",
+ "id": 5816766564,
+ "idstr": "5816766564",
"class": 1,
- "screen_name": "匹神",
- "name": "匹神",
- "province": "45",
- "city": "1",
- "location": "广西 南宁",
- "description": "因为专一 所以专业",
- "url": "http://blog.sina.com.cn/chexiubibi",
- "profile_image_url": "http://tva4.sinaimg.cn/crop.0.0.180.180.50/624222bajw1e8qgp5bmzyj2050050aa8.jpg",
+ "screen_name": "光合F",
+ "name": "光合F",
+ "province": "15",
+ "city": "1000",
+ "location": "内蒙古",
+ "description": "",
+ "url": "",
+ "profile_image_url": "http://tvax2.sinaimg.cn/crop.0.0.996.996.50/006lEyHyly8fgjy9tr7t9j30ro0roq4v.jpg",
"cover_image_phone": "http://ww1.sinaimg.cn/crop.0.0.640.640.640/549d0121tw1egm1kjly3jj20hs0hsq4f.jpg",
- "profile_url": "yijiayixhehua",
- "domain": "yijiayixhehua",
+ "profile_url": "u/5816766564",
+ "domain": "",
"weihao": "",
"gender": "m",
- "followers_count": 302,
- "friends_count": 232,
- "pagefriends_count": 3,
- "statuses_count": 787,
+ "followers_count": 4,
+ "friends_count": 2,
+ "pagefriends_count": 0,
+ "statuses_count": 3,
"video_status_count": 0,
- "favourites_count": 12,
- "created_at": "Tue Sep 29 00:48:32 +0800 2009",
+ "favourites_count": 1,
+ "created_at": "Thu Dec 31 19:56:45 +0800 2015",
"following": false,
"allow_all_act_msg": false,
"geo_enabled": true,
@@ -42,8 +42,8 @@
},
"ptype": 0,
"allow_all_comment": true,
- "avatar_large": "http://tva4.sinaimg.cn/crop.0.0.180.180.180/624222bajw1e8qgp5bmzyj2050050aa8.jpg",
- "avatar_hd": "http://tva4.sinaimg.cn/crop.0.0.180.180.1024/624222bajw1e8qgp5bmzyj2050050aa8.jpg",
+ "avatar_large": "http://tvax2.sinaimg.cn/crop.0.0.996.996.180/006lEyHyly8fgjy9tr7t9j30ro0roq4v.jpg",
+ "avatar_hd": "http://tvax2.sinaimg.cn/crop.0.0.996.996.1024/006lEyHyly8fgjy9tr7t9j30ro0roq4v.jpg",
"verified_reason": "",
"verified_trade": "",
"verified_reason_url": "",
@@ -53,7 +53,7 @@
"like": false,
"like_me": false,
"online_status": 0,
- "bi_followers_count": 4,
+ "bi_followers_count": 0,
"lang": "zh-cn",
"star": 0,
"mbtype": 0,
@@ -61,21 +61,21 @@
"block_word": 0,
"block_app": 0,
"credit_score": 80,
- "user_ability": 33554432,
- "urank": 32,
+ "user_ability": 0,
+ "urank": 4,
"story_read_state": -1,
"vclub_member": 0
},
- "mid": "4270836833644270",
- "idstr": "4270836833644270",
+ "mid": "4275271689328960",
+ "idstr": "4275271689328960",
"status": {
- "created_at": "Wed Aug 08 20:09:51 +0800 2018",
- "id": 4270836326031924,
- "idstr": "4270836326031924",
- "mid": "4270836326031924",
+ "created_at": "Sun Aug 19 22:01:04 +0800 2018",
+ "id": 4274850581840484,
+ "idstr": "4274850581840484",
+ "mid": "4274850581840484",
"can_edit": false,
- "text": "【商务部新闻发言人就中方对160亿美元自美进口产品采取反制措施发表谈话】美方决定自8月23日起对160亿美元中国输美产品加征25%的关税,又一次将国内法凌驾于国际法之上,是十分无理的做法。中方为维护自身正当权益和多边贸易体制,不得不做出必要反制,决定对160亿美元自美进口产品加征25%的关税,并与",
- "textLength": 302,
+ "text": "汉语的强大岂是浪得虚名😉 http://t.cn/RkcwZeM",
+ "textLength": 46,
"source_allowclick": 0,
"source_type": 1,
"source": "微博 weibo.com",
@@ -84,65 +84,58 @@
"in_reply_to_status_id": "",
"in_reply_to_user_id": "",
"in_reply_to_screen_name": "",
- "pic_urls": [
- {
- "thumbnail_pic": "http://wx3.sinaimg.cn/thumbnail/a716fd45ly1fu2jvzgsy3j20c80c8tdp.jpg"
- }
- ],
- "thumbnail_pic": "http://wx3.sinaimg.cn/thumbnail/a716fd45ly1fu2jvzgsy3j20c80c8tdp.jpg",
- "bmiddle_pic": "http://wx3.sinaimg.cn/bmiddle/a716fd45ly1fu2jvzgsy3j20c80c8tdp.jpg",
- "original_pic": "http://wx3.sinaimg.cn/large/a716fd45ly1fu2jvzgsy3j20c80c8tdp.jpg",
+ "pic_urls": [],
"geo": null,
"is_paid": false,
"mblog_vip_type": 0,
"user": {
- "id": 2803301701,
- "idstr": "2803301701",
+ "id": 2614436545,
+ "idstr": "2614436545",
"class": 1,
- "screen_name": "人民日报",
- "name": "人民日报",
- "province": "11",
+ "screen_name": "不正常人类调研中心",
+ "name": "不正常人类调研中心",
+ "province": "33",
"city": "1000",
- "location": "北京",
- "description": "人民日报法人微博。参与、沟通、记录时代。",
- "url": "",
- "profile_image_url": "http://tva1.sinaimg.cn/crop.0.3.1018.1018.50/a716fd45gw1ev7q2k8japj20sg0sg779.jpg",
- "cover_image": "http://wx4.sinaimg.cn/crop.0.0.920.300/a716fd45ly1fpjoldh9kaj20pk08cal8.jpg",
- "cover_image_phone": "http://wx1.sinaimg.cn/crop.0.0.640.640.640/a716fd45ly1fpjoivacakj20yi0yiwkb.jpg;http://wx2.sinaimg.cn/crop.0.0.640.640.640/a716fd45ly1foyq0ha1vwj20e80e8wf7.jpg",
- "profile_url": "rmrb",
- "domain": "rmrb",
+ "location": "浙江",
+ "description": "别看了,你需要治疗。",
+ "url": "http://blog.sina.com.cn/hehe",
+ "profile_image_url": "http://tva1.sinaimg.cn/crop.0.0.300.300.50/9bd522c1jw8f11c33g8ztj208c08cmxs.jpg",
+ "cover_image": "http://wx4.sinaimg.cn/crop.0.0.920.300/9bd522c1gy1fn82v7fygjj20pk08cdom.jpg",
+ "cover_image_phone": "http://ww1.sinaimg.cn/crop.0.0.640.640.640/9d44112bjw1f1xl1c10tuj20hs0hs0tw.jpg",
+ "profile_url": "fc98",
+ "domain": "fc98",
"weihao": "",
"gender": "m",
- "followers_count": 60881286,
- "friends_count": 3027,
- "pagefriends_count": 2694,
- "statuses_count": 89351,
+ "followers_count": 1301735,
+ "friends_count": 149,
+ "pagefriends_count": 0,
+ "statuses_count": 102261,
"video_status_count": 0,
- "favourites_count": 1,
- "created_at": "Sun Jul 22 02:28:35 +0800 2012",
+ "favourites_count": 7,
+ "created_at": "Sun Feb 12 21:38:06 +0800 2012",
"following": false,
- "allow_all_act_msg": false,
+ "allow_all_act_msg": true,
"geo_enabled": false,
"verified": true,
- "verified_type": 3,
+ "verified_type": 0,
"remark": "",
"insecurity": {
"sexual_content": false
},
"ptype": 0,
"allow_all_comment": true,
- "avatar_large": "http://tva1.sinaimg.cn/crop.0.3.1018.1018.180/a716fd45gw1ev7q2k8japj20sg0sg779.jpg",
- "avatar_hd": "http://tva1.sinaimg.cn/crop.0.3.1018.1018.1024/a716fd45gw1ev7q2k8japj20sg0sg779.jpg",
- "verified_reason": "《人民日报》法人微博",
- "verified_trade": "",
+ "avatar_large": "http://tva1.sinaimg.cn/crop.0.0.300.300.180/9bd522c1jw8f11c33g8ztj208c08cmxs.jpg",
+ "avatar_hd": "http://tva1.sinaimg.cn/crop.0.0.300.300.1024/9bd522c1jw8f11c33g8ztj208c08cmxs.jpg",
+ "verified_reason": "知名搞笑幽默博主 搞笑视频自媒体",
+ "verified_trade": "3550",
"verified_reason_url": "",
"verified_source": "",
"verified_source_url": "",
- "verified_state": 2,
+ "verified_state": 0,
"verified_level": 3,
- "verified_type_ext": 0,
+ "verified_type_ext": 1,
"has_service_tel": false,
- "verified_reason_modified": "辽宁科技大学官方微博,教育官微联盟成员",
+ "verified_reason_modified": "",
"verified_contact_name": "",
"verified_contact_email": "",
"verified_contact_mobile": "",
@@ -150,32 +143,40 @@
"like": false,
"like_me": false,
"online_status": 0,
- "bi_followers_count": 305,
+ "bi_followers_count": 111,
"lang": "zh-cn",
"star": 0,
- "mbtype": 12,
+ "mbtype": 11,
"mbrank": 6,
"block_word": 0,
"block_app": 1,
- "credit_score": 80,
- "user_ability": 10814212,
- "cardid": "star_583",
+ "credit_score": 68,
+ "user_ability": 264712,
+ "cardid": "star_005",
"urank": 48,
"story_read_state": -1,
"vclub_member": 0
},
+ "annotations": [
+ {
+ "mapi_request": true
+ }
+ ],
"reposts_count": 0,
"comments_count": 0,
"attitudes_count": 0,
"pending_approval_count": 0,
- "isLongText": true,
+ "isLongText": false,
"hide_flag": 0,
"mlevel": 0,
"visible": {
"type": 0,
"list_id": 0
},
- "biz_feature": 0,
+ "biz_ids": [
+ 230444
+ ],
+ "biz_feature": 4294967304,
"hasActionTypeCard": 0,
"darwin_tags": [],
"hot_weibo_tags": [],
@@ -183,48 +184,117 @@
"mblogtype": 0,
"userType": 0,
"more_info_type": 0,
- "cardid": "star_583",
"positive_recom_flag": 0,
"content_auth": 0,
"gif_ids": "",
"is_show_bulletin": 2,
"comment_manage_info": {
"comment_permission_type": -1,
- "approval_comment_type": 1
+ "approval_comment_type": 0
}
- }
+ },
+ "reply_comment": {
+ "created_at": "Mon Aug 20 22:51:03 +0800 2018",
+ "id": 4275225543156116,
+ "rootid": 4275042449638211,
+ "floor_number": 0,
+ "text": "回复@wwerwsf:[允悲]兄弟 计算机专业的人告诉你是可以用汉语编程的",
+ "disable_reply": 0,
+ "user": {
+ "id": 6349530763,
+ "idstr": "6349530763",
+ "class": 1,
+ "screen_name": "尼古拉斯潮能",
+ "name": "尼古拉斯潮能",
+ "province": "61",
+ "city": "1",
+ "location": "陕西 西安",
+ "description": "",
+ "url": "",
+ "profile_image_url": "http://tvax3.sinaimg.cn/crop.0.0.1002.1002.50/006VHZ0vly8fip6hvo6arj30ru0ruq57.jpg",
+ "cover_image_phone": "http://ww2.sinaimg.cn/crop.0.0.640.640/68f96449jw1ergqx79rw4j20hs0hswh0.jpg",
+ "profile_url": "u/6349530763",
+ "domain": "",
+ "weihao": "",
+ "gender": "m",
+ "followers_count": 14,
+ "friends_count": 112,
+ "pagefriends_count": 0,
+ "statuses_count": 4,
+ "video_status_count": 0,
+ "favourites_count": 1,
+ "created_at": "Sat Aug 19 17:45:32 +0800 2017",
+ "following": false,
+ "allow_all_act_msg": false,
+ "geo_enabled": true,
+ "verified": false,
+ "verified_type": -1,
+ "remark": "",
+ "insecurity": {
+ "sexual_content": false
+ },
+ "ptype": 0,
+ "allow_all_comment": true,
+ "avatar_large": "http://tvax3.sinaimg.cn/crop.0.0.1002.1002.180/006VHZ0vly8fip6hvo6arj30ru0ruq57.jpg",
+ "avatar_hd": "http://tvax3.sinaimg.cn/crop.0.0.1002.1002.1024/006VHZ0vly8fip6hvo6arj30ru0ruq57.jpg",
+ "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": 1,
+ "lang": "zh-cn",
+ "star": 0,
+ "mbtype": 0,
+ "mbrank": 0,
+ "block_word": 0,
+ "block_app": 0,
+ "credit_score": 80,
+ "user_ability": 33554432,
+ "urank": 9,
+ "story_read_state": -1,
+ "vclub_member": 0
+ },
+ "mid": "4275225543156116",
+ "idstr": "4275225543156116"
+ },
+ "reply_original_text": "易[允悲]"
},
{
- "created_at": "Wed Aug 08 20:11:50 +0800 2018",
- "id": 4270836820733164,
- "rootid": 4270836820733164,
- "floor_number": 30,
- "text": "以其人之道还治其人之身",
"disable_reply": 0,
+ "created_at": "Tue Aug 21 01:51:00 +0800 2018",
+ "id": 4275270833804628,
+ "rootid": 4275042449638211,
+ "floor_number": 0,
+ "text": "回复@wwerwsf:你平时用程序跟别人说话?",
"user": {
- "id": 5771995352,
- "idstr": "5771995352",
+ "id": 5816766564,
+ "idstr": "5816766564",
"class": 1,
- "screen_name": "Desiderata1",
- "name": "Desiderata1",
- "province": "61",
- "city": "1",
- "location": "陕西 西安",
+ "screen_name": "光合F",
+ "name": "光合F",
+ "province": "15",
+ "city": "1000",
+ "location": "内蒙古",
"description": "",
"url": "",
- "profile_image_url": "http://tva3.sinaimg.cn/crop.0.0.996.996.50/006iCHFejw8f8t6b77vo9j30ro0rpq4y.jpg",
- "cover_image_phone": "http://ww1.sinaimg.cn/crop.0.0.640.640.640/9d44112bjw1f1xl1c10tuj20hs0hs0tw.jpg",
- "profile_url": "u/5771995352",
+ "profile_image_url": "http://tvax2.sinaimg.cn/crop.0.0.996.996.50/006lEyHyly8fgjy9tr7t9j30ro0roq4v.jpg",
+ "cover_image_phone": "http://ww1.sinaimg.cn/crop.0.0.640.640.640/549d0121tw1egm1kjly3jj20hs0hsq4f.jpg",
+ "profile_url": "u/5816766564",
"domain": "",
"weihao": "",
"gender": "m",
- "followers_count": 30,
- "friends_count": 30,
+ "followers_count": 4,
+ "friends_count": 2,
"pagefriends_count": 0,
- "statuses_count": 15,
+ "statuses_count": 3,
"video_status_count": 0,
- "favourites_count": 275,
- "created_at": "Wed Nov 25 23:11:58 +0800 2015",
+ "favourites_count": 1,
+ "created_at": "Thu Dec 31 19:56:45 +0800 2015",
"following": false,
"allow_all_act_msg": false,
"geo_enabled": true,
@@ -235,9 +305,9 @@
"sexual_content": false
},
"ptype": 0,
- "allow_all_comment": false,
- "avatar_large": "http://tva3.sinaimg.cn/crop.0.0.996.996.180/006iCHFejw8f8t6b77vo9j30ro0rpq4y.jpg",
- "avatar_hd": "http://tva3.sinaimg.cn/crop.0.0.996.996.1024/006iCHFejw8f8t6b77vo9j30ro0rpq4y.jpg",
+ "allow_all_comment": true,
+ "avatar_large": "http://tvax2.sinaimg.cn/crop.0.0.996.996.180/006lEyHyly8fgjy9tr7t9j30ro0roq4v.jpg",
+ "avatar_hd": "http://tvax2.sinaimg.cn/crop.0.0.996.996.1024/006lEyHyly8fgjy9tr7t9j30ro0roq4v.jpg",
"verified_reason": "",
"verified_trade": "",
"verified_reason_url": "",
@@ -247,31 +317,29 @@
"like": false,
"like_me": false,
"online_status": 0,
- "bi_followers_count": 1,
+ "bi_followers_count": 0,
"lang": "zh-cn",
"star": 0,
- "mbtype": 2,
- "mbrank": 1,
+ "mbtype": 0,
+ "mbrank": 0,
"block_word": 0,
"block_app": 0,
"credit_score": 80,
- "user_ability": 33555456,
- "cardid": "star_109",
- "avatargj_id": "gj_vip_064",
+ "user_ability": 0,
"urank": 4,
"story_read_state": -1,
"vclub_member": 0
},
- "mid": "4270836820733164",
- "idstr": "4270836820733164",
+ "mid": "4275270833804628",
+ "idstr": "4275270833804628",
"status": {
- "created_at": "Wed Aug 08 20:09:51 +0800 2018",
- "id": 4270836326031924,
- "idstr": "4270836326031924",
- "mid": "4270836326031924",
+ "created_at": "Sun Aug 19 22:01:04 +0800 2018",
+ "id": 4274850581840484,
+ "idstr": "4274850581840484",
+ "mid": "4274850581840484",
"can_edit": false,
- "text": "【商务部新闻发言人就中方对160亿美元自美进口产品采取反制措施发表谈话】美方决定自8月23日起对160亿美元中国输美产品加征25%的关税,又一次将国内法凌驾于国际法之上,是十分无理的做法。中方为维护自身正当权益和多边贸易体制,不得不做出必要反制,决定对160亿美元自美进口产品加征25%的关税,并与",
- "textLength": 302,
+ "text": "汉语的强大岂是浪得虚名😉 http://t.cn/RkcwZeM",
+ "textLength": 46,
"source_allowclick": 0,
"source_type": 1,
"source": "微博 weibo.com",
@@ -280,65 +348,58 @@
"in_reply_to_status_id": "",
"in_reply_to_user_id": "",
"in_reply_to_screen_name": "",
- "pic_urls": [
- {
- "thumbnail_pic": "http://wx3.sinaimg.cn/thumbnail/a716fd45ly1fu2jvzgsy3j20c80c8tdp.jpg"
- }
- ],
- "thumbnail_pic": "http://wx3.sinaimg.cn/thumbnail/a716fd45ly1fu2jvzgsy3j20c80c8tdp.jpg",
- "bmiddle_pic": "http://wx3.sinaimg.cn/bmiddle/a716fd45ly1fu2jvzgsy3j20c80c8tdp.jpg",
- "original_pic": "http://wx3.sinaimg.cn/large/a716fd45ly1fu2jvzgsy3j20c80c8tdp.jpg",
+ "pic_urls": [],
"geo": null,
"is_paid": false,
"mblog_vip_type": 0,
"user": {
- "id": 2803301701,
- "idstr": "2803301701",
+ "id": 2614436545,
+ "idstr": "2614436545",
"class": 1,
- "screen_name": "人民日报",
- "name": "人民日报",
- "province": "11",
+ "screen_name": "不正常人类调研中心",
+ "name": "不正常人类调研中心",
+ "province": "33",
"city": "1000",
- "location": "北京",
- "description": "人民日报法人微博。参与、沟通、记录时代。",
- "url": "",
- "profile_image_url": "http://tva1.sinaimg.cn/crop.0.3.1018.1018.50/a716fd45gw1ev7q2k8japj20sg0sg779.jpg",
- "cover_image": "http://wx4.sinaimg.cn/crop.0.0.920.300/a716fd45ly1fpjoldh9kaj20pk08cal8.jpg",
- "cover_image_phone": "http://wx1.sinaimg.cn/crop.0.0.640.640.640/a716fd45ly1fpjoivacakj20yi0yiwkb.jpg;http://wx2.sinaimg.cn/crop.0.0.640.640.640/a716fd45ly1foyq0ha1vwj20e80e8wf7.jpg",
- "profile_url": "rmrb",
- "domain": "rmrb",
+ "location": "浙江",
+ "description": "别看了,你需要治疗。",
+ "url": "http://blog.sina.com.cn/hehe",
+ "profile_image_url": "http://tva1.sinaimg.cn/crop.0.0.300.300.50/9bd522c1jw8f11c33g8ztj208c08cmxs.jpg",
+ "cover_image": "http://wx4.sinaimg.cn/crop.0.0.920.300/9bd522c1gy1fn82v7fygjj20pk08cdom.jpg",
+ "cover_image_phone": "http://ww1.sinaimg.cn/crop.0.0.640.640.640/9d44112bjw1f1xl1c10tuj20hs0hs0tw.jpg",
+ "profile_url": "fc98",
+ "domain": "fc98",
"weihao": "",
"gender": "m",
- "followers_count": 60881286,
- "friends_count": 3027,
- "pagefriends_count": 2694,
- "statuses_count": 89351,
+ "followers_count": 1301735,
+ "friends_count": 149,
+ "pagefriends_count": 0,
+ "statuses_count": 102261,
"video_status_count": 0,
- "favourites_count": 1,
- "created_at": "Sun Jul 22 02:28:35 +0800 2012",
+ "favourites_count": 7,
+ "created_at": "Sun Feb 12 21:38:06 +0800 2012",
"following": false,
- "allow_all_act_msg": false,
+ "allow_all_act_msg": true,
"geo_enabled": false,
"verified": true,
- "verified_type": 3,
+ "verified_type": 0,
"remark": "",
"insecurity": {
"sexual_content": false
},
"ptype": 0,
"allow_all_comment": true,
- "avatar_large": "http://tva1.sinaimg.cn/crop.0.3.1018.1018.180/a716fd45gw1ev7q2k8japj20sg0sg779.jpg",
- "avatar_hd": "http://tva1.sinaimg.cn/crop.0.3.1018.1018.1024/a716fd45gw1ev7q2k8japj20sg0sg779.jpg",
- "verified_reason": "《人民日报》法人微博",
- "verified_trade": "",
+ "avatar_large": "http://tva1.sinaimg.cn/crop.0.0.300.300.180/9bd522c1jw8f11c33g8ztj208c08cmxs.jpg",
+ "avatar_hd": "http://tva1.sinaimg.cn/crop.0.0.300.300.1024/9bd522c1jw8f11c33g8ztj208c08cmxs.jpg",
+ "verified_reason": "知名搞笑幽默博主 搞笑视频自媒体",
+ "verified_trade": "3550",
"verified_reason_url": "",
"verified_source": "",
"verified_source_url": "",
- "verified_state": 2,
+ "verified_state": 0,
"verified_level": 3,
- "verified_type_ext": 0,
+ "verified_type_ext": 1,
"has_service_tel": false,
- "verified_reason_modified": "辽宁科技大学官方微博,教育官微联盟成员",
+ "verified_reason_modified": "",
"verified_contact_name": "",
"verified_contact_email": "",
"verified_contact_mobile": "",
@@ -346,32 +407,40 @@
"like": false,
"like_me": false,
"online_status": 0,
- "bi_followers_count": 305,
+ "bi_followers_count": 111,
"lang": "zh-cn",
"star": 0,
- "mbtype": 12,
+ "mbtype": 11,
"mbrank": 6,
"block_word": 0,
"block_app": 1,
- "credit_score": 80,
- "user_ability": 10814212,
- "cardid": "star_583",
+ "credit_score": 68,
+ "user_ability": 264712,
+ "cardid": "star_005",
"urank": 48,
"story_read_state": -1,
"vclub_member": 0
},
+ "annotations": [
+ {
+ "mapi_request": true
+ }
+ ],
"reposts_count": 0,
"comments_count": 0,
"attitudes_count": 0,
"pending_approval_count": 0,
- "isLongText": true,
+ "isLongText": false,
"hide_flag": 0,
"mlevel": 0,
"visible": {
"type": 0,
"list_id": 0
},
- "biz_feature": 0,
+ "biz_ids": [
+ 230444
+ ],
+ "biz_feature": 4294967304,
"hasActionTypeCard": 0,
"darwin_tags": [],
"hot_weibo_tags": [],
@@ -379,48 +448,117 @@
"mblogtype": 0,
"userType": 0,
"more_info_type": 0,
- "cardid": "star_583",
"positive_recom_flag": 0,
"content_auth": 0,
"gif_ids": "",
"is_show_bulletin": 2,
"comment_manage_info": {
"comment_permission_type": -1,
- "approval_comment_type": 1
+ "approval_comment_type": 0
}
- }
+ },
+ "reply_comment": {
+ "created_at": "Mon Aug 20 10:43:29 +0800 2018",
+ "id": 4275042449638211,
+ "rootid": 4275042449638211,
+ "floor_number": 12,
+ "text": "别成天意淫这东西,有本事你用汉语编程试试",
+ "disable_reply": 0,
+ "user": {
+ "id": 1711646543,
+ "idstr": "1711646543",
+ "class": 1,
+ "screen_name": "wwerwsf",
+ "name": "wwerwsf",
+ "province": "11",
+ "city": "1",
+ "location": "北京 东城区",
+ "description": "",
+ "url": "",
+ "profile_image_url": "http://tva1.sinaimg.cn/crop.0.0.1080.1080.50/6605a74fjw8ewsbn3mrbyj20u00u0q4x.jpg",
+ "cover_image_phone": "http://ww1.sinaimg.cn/crop.0.0.640.640.640/549d0121tw1egm1kjly3jj20hs0hsq4f.jpg",
+ "profile_url": "u/1711646543",
+ "domain": "",
+ "weihao": "",
+ "gender": "m",
+ "followers_count": 42,
+ "friends_count": 89,
+ "pagefriends_count": 0,
+ "statuses_count": 106,
+ "video_status_count": 0,
+ "favourites_count": 0,
+ "created_at": "Wed Aug 14 16:34:11 +0800 2013",
+ "following": false,
+ "allow_all_act_msg": false,
+ "geo_enabled": true,
+ "verified": false,
+ "verified_type": -1,
+ "remark": "",
+ "insecurity": {
+ "sexual_content": false
+ },
+ "ptype": 0,
+ "allow_all_comment": true,
+ "avatar_large": "http://tva1.sinaimg.cn/crop.0.0.1080.1080.180/6605a74fjw8ewsbn3mrbyj20u00u0q4x.jpg",
+ "avatar_hd": "http://tva1.sinaimg.cn/crop.0.0.1080.1080.1024/6605a74fjw8ewsbn3mrbyj20u00u0q4x.jpg",
+ "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": 1,
+ "lang": "zh-cn",
+ "star": 0,
+ "mbtype": 0,
+ "mbrank": 0,
+ "block_word": 0,
+ "block_app": 0,
+ "credit_score": 80,
+ "user_ability": 1024,
+ "urank": 9,
+ "story_read_state": -1,
+ "vclub_member": 0
+ },
+ "mid": "4275042449638211",
+ "idstr": "4275042449638211"
+ },
+ "reply_original_text": "你平时用程序跟别人说话?"
},
{
- "created_at": "Wed Aug 08 20:11:36 +0800 2018",
- "id": 4270836767128018,
- "rootid": 4270836767128018,
- "floor_number": 25,
- "text": "美国真的是有毒",
"disable_reply": 0,
+ "created_at": "Sun Oct 01 17:40:36 +0800 2017",
+ "id": 4158096139490784,
+ "rootid": 4158096139490784,
+ "floor_number": 98,
+ "text": "阿尔山很久以前就下雪了",
"user": {
- "id": 5235802095,
- "idstr": "5235802095",
+ "id": 5816766564,
+ "idstr": "5816766564",
"class": 1,
- "screen_name": "M不是假发是桂M",
- "name": "M不是假发是桂M",
- "province": "53",
- "city": "4",
- "location": "云南 玉溪",
- "description": "我的爱豆是个金枝玉叶的贵人~ 上岸上岸~",
+ "screen_name": "光合F",
+ "name": "光合F",
+ "province": "15",
+ "city": "1000",
+ "location": "内蒙古",
+ "description": "",
"url": "",
- "profile_image_url": "http://tvax3.sinaimg.cn/crop.0.0.996.996.50/005IkTiTly8frwqhreshsj30ro0ro3zo.jpg",
- "cover_image_phone": "http://ww1.sinaimg.cn/crop.0.0.640.640.640/9d44112bjw1f1xl1c10tuj20hs0hs0tw.jpg",
- "profile_url": "u/5235802095",
+ "profile_image_url": "http://tvax2.sinaimg.cn/crop.0.0.996.996.50/006lEyHyly8fgjy9tr7t9j30ro0roq4v.jpg",
+ "cover_image_phone": "http://ww1.sinaimg.cn/crop.0.0.640.640.640/549d0121tw1egm1kjly3jj20hs0hsq4f.jpg",
+ "profile_url": "u/5816766564",
"domain": "",
"weihao": "",
- "gender": "f",
- "followers_count": 117,
- "friends_count": 76,
- "pagefriends_count": 7,
- "statuses_count": 2343,
+ "gender": "m",
+ "followers_count": 4,
+ "friends_count": 2,
+ "pagefriends_count": 0,
+ "statuses_count": 3,
"video_status_count": 0,
- "favourites_count": 3,
- "created_at": "Tue Jul 29 19:31:04 +0800 2014",
+ "favourites_count": 1,
+ "created_at": "Thu Dec 31 19:56:45 +0800 2015",
"following": false,
"allow_all_act_msg": false,
"geo_enabled": true,
@@ -432,8 +570,8 @@
},
"ptype": 0,
"allow_all_comment": true,
- "avatar_large": "http://tvax3.sinaimg.cn/crop.0.0.996.996.180/005IkTiTly8frwqhreshsj30ro0ro3zo.jpg",
- "avatar_hd": "http://tvax3.sinaimg.cn/crop.0.0.996.996.1024/005IkTiTly8frwqhreshsj30ro0ro3zo.jpg",
+ "avatar_large": "http://tvax2.sinaimg.cn/crop.0.0.996.996.180/006lEyHyly8fgjy9tr7t9j30ro0roq4v.jpg",
+ "avatar_hd": "http://tvax2.sinaimg.cn/crop.0.0.996.996.1024/006lEyHyly8fgjy9tr7t9j30ro0roq4v.jpg",
"verified_reason": "",
"verified_trade": "",
"verified_reason_url": "",
@@ -443,7 +581,7 @@
"like": false,
"like_me": false,
"online_status": 0,
- "bi_followers_count": 18,
+ "bi_followers_count": 0,
"lang": "zh-cn",
"star": 0,
"mbtype": 0,
@@ -451,23 +589,21 @@
"block_word": 0,
"block_app": 0,
"credit_score": 80,
- "user_ability": 2098176,
- "cardid": "star_330",
- "avatargj_id": "gj_vip_145",
- "urank": 9,
+ "user_ability": 0,
+ "urank": 4,
"story_read_state": -1,
"vclub_member": 0
},
- "mid": "4270836767128018",
- "idstr": "4270836767128018",
+ "mid": "4158096139490784",
+ "idstr": "4158096139490784",
"status": {
- "created_at": "Wed Aug 08 20:09:51 +0800 2018",
- "id": 4270836326031924,
- "idstr": "4270836326031924",
- "mid": "4270836326031924",
+ "created_at": "Sun Oct 01 14:02:03 +0800 2017",
+ "id": 4158041139821898,
+ "idstr": "4158041139821898",
+ "mid": "4158041139821898",
"can_edit": false,
- "text": "【商务部新闻发言人就中方对160亿美元自美进口产品采取反制措施发表谈话】美方决定自8月23日起对160亿美元中国输美产品加征25%的关税,又一次将国内法凌驾于国际法之上,是十分无理的做法。中方为维护自身正当权益和多边贸易体制,不得不做出必要反制,决定对160亿美元自美进口产品加征25%的关税,并与",
- "textLength": 302,
+ "text": "【下雪啦!新疆昭苏下起鹅毛大雪,零下3℃瞬间入冬成功[哆啦A梦吃惊]】9月30日,新疆昭苏迎来金秋第一场雪,最低气温降至-3℃。市民开始加衣,供暖部门也做好供暖保障,准备供暖。有南方网友惊呆:我们这里还是短袖大裤衩呢![允悲]你那里今天多少度? http://t.cn/R08uLoZ",
+ "textLength": 253,
"source_allowclick": 0,
"source_type": 1,
"source": "微博 weibo.com",
@@ -476,45 +612,38 @@
"in_reply_to_status_id": "",
"in_reply_to_user_id": "",
"in_reply_to_screen_name": "",
- "pic_urls": [
- {
- "thumbnail_pic": "http://wx3.sinaimg.cn/thumbnail/a716fd45ly1fu2jvzgsy3j20c80c8tdp.jpg"
- }
- ],
- "thumbnail_pic": "http://wx3.sinaimg.cn/thumbnail/a716fd45ly1fu2jvzgsy3j20c80c8tdp.jpg",
- "bmiddle_pic": "http://wx3.sinaimg.cn/bmiddle/a716fd45ly1fu2jvzgsy3j20c80c8tdp.jpg",
- "original_pic": "http://wx3.sinaimg.cn/large/a716fd45ly1fu2jvzgsy3j20c80c8tdp.jpg",
+ "pic_urls": [],
"geo": null,
"is_paid": false,
"mblog_vip_type": 0,
"user": {
- "id": 2803301701,
- "idstr": "2803301701",
+ "id": 1663072851,
+ "idstr": "1663072851",
"class": 1,
- "screen_name": "人民日报",
- "name": "人民日报",
+ "screen_name": "中国日报",
+ "name": "中国日报",
"province": "11",
"city": "1000",
"location": "北京",
- "description": "人民日报法人微博。参与、沟通、记录时代。",
- "url": "",
- "profile_image_url": "http://tva1.sinaimg.cn/crop.0.3.1018.1018.50/a716fd45gw1ev7q2k8japj20sg0sg779.jpg",
- "cover_image": "http://wx4.sinaimg.cn/crop.0.0.920.300/a716fd45ly1fpjoldh9kaj20pk08cal8.jpg",
- "cover_image_phone": "http://wx1.sinaimg.cn/crop.0.0.640.640.640/a716fd45ly1fpjoivacakj20yi0yiwkb.jpg;http://wx2.sinaimg.cn/crop.0.0.640.640.640/a716fd45ly1foyq0ha1vwj20e80e8wf7.jpg",
- "profile_url": "rmrb",
- "domain": "rmrb",
+ "description": "CHINA DAILY《中国日报》在新时代,与你一起记录中国,点评世界。",
+ "url": "http://www.chinadaily.com.cn",
+ "profile_image_url": "http://tva1.sinaimg.cn/crop.0.0.180.180.50/63207a53jw8f4tpyeyqouj2050050glo.jpg",
+ "cover_image": "http://ww1.sinaimg.cn/crop.0.0.920.300/63207a53jw1f4tpw3s57bj20pk08c40y.jpg",
+ "cover_image_phone": "http://ww4.sinaimg.cn/crop.0.0.640.640.640/63207a53jw1f4tqhwywb7j20hs0hsacb.jpg;http://ww1.sinaimg.cn/crop.0.0.640.640.640/63207a53jw1f4tqh05r0zj20hs0hsacb.jpg;http://ww3.sinaimg.cn/crop.0.0.640.640.640/63207a53jw1f4dg0ilctlj20u00u0aej.jpg",
+ "profile_url": "chinadailywebsite",
+ "domain": "chinadailywebsite",
"weihao": "",
"gender": "m",
- "followers_count": 60881286,
- "friends_count": 3027,
- "pagefriends_count": 2694,
- "statuses_count": 89351,
+ "followers_count": 35884421,
+ "friends_count": 865,
+ "pagefriends_count": 399,
+ "statuses_count": 92238,
"video_status_count": 0,
- "favourites_count": 1,
- "created_at": "Sun Jul 22 02:28:35 +0800 2012",
+ "favourites_count": 672,
+ "created_at": "Mon Nov 23 14:27:48 +0800 2009",
"following": false,
"allow_all_act_msg": false,
- "geo_enabled": false,
+ "geo_enabled": true,
"verified": true,
"verified_type": 3,
"remark": "",
@@ -523,26 +652,26 @@
},
"ptype": 0,
"allow_all_comment": true,
- "avatar_large": "http://tva1.sinaimg.cn/crop.0.3.1018.1018.180/a716fd45gw1ev7q2k8japj20sg0sg779.jpg",
- "avatar_hd": "http://tva1.sinaimg.cn/crop.0.3.1018.1018.1024/a716fd45gw1ev7q2k8japj20sg0sg779.jpg",
- "verified_reason": "《人民日报》法人微博",
+ "avatar_large": "http://tva1.sinaimg.cn/crop.0.0.180.180.180/63207a53jw8f4tpyeyqouj2050050glo.jpg",
+ "avatar_hd": "http://tva1.sinaimg.cn/crop.0.0.180.180.1024/63207a53jw8f4tpyeyqouj2050050glo.jpg",
+ "verified_reason": "China Daily 中国日报官方微博",
"verified_trade": "",
"verified_reason_url": "",
"verified_source": "",
"verified_source_url": "",
- "verified_state": 2,
+ "verified_state": 0,
"verified_level": 3,
"verified_type_ext": 0,
"has_service_tel": false,
- "verified_reason_modified": "辽宁科技大学官方微博,教育官微联盟成员",
- "verified_contact_name": "",
+ "verified_reason_modified": "China Daily 中国日报官方微博",
+ "verified_contact_name": "CHINADAILY",
"verified_contact_email": "",
- "verified_contact_mobile": "",
+ "verified_contact_mobile": "010-64995000",
"follow_me": false,
"like": false,
"like_me": false,
"online_status": 0,
- "bi_followers_count": 305,
+ "bi_followers_count": 197,
"lang": "zh-cn",
"star": 0,
"mbtype": 12,
@@ -550,7 +679,7 @@
"block_word": 0,
"block_app": 1,
"credit_score": 80,
- "user_ability": 10814212,
+ "user_ability": 11862788,
"cardid": "star_583",
"urank": 48,
"story_read_state": -1,
@@ -560,14 +689,17 @@
"comments_count": 0,
"attitudes_count": 0,
"pending_approval_count": 0,
- "isLongText": true,
+ "isLongText": false,
"hide_flag": 0,
"mlevel": 0,
"visible": {
"type": 0,
"list_id": 0
},
- "biz_feature": 0,
+ "biz_ids": [
+ 230442
+ ],
+ "biz_feature": 4294967552,
"hasActionTypeCard": 0,
"darwin_tags": [],
"hot_weibo_tags": [],
@@ -575,103 +707,92 @@
"mblogtype": 0,
"userType": 0,
"more_info_type": 0,
- "cardid": "star_583",
"positive_recom_flag": 0,
"content_auth": 0,
"gif_ids": "",
"is_show_bulletin": 2,
"comment_manage_info": {
"comment_permission_type": -1,
- "approval_comment_type": 1
+ "approval_comment_type": 0
}
}
},
{
- "created_at": "Wed Aug 08 20:11:36 +0800 2018",
- "id": 4270836766284315,
- "rootid": 4270836766284315,
- "floor_number": 26,
- "text": "强烈支持,不卑不亢,有礼有节。",
"disable_reply": 0,
+ "created_at": "Fri Sep 01 14:43:54 +0800 2017",
+ "id": 4147180036414576,
+ "rootid": 4147180036414576,
+ "floor_number": 100,
+ "text": "要什么自行车啊",
"user": {
- "id": 2201615977,
- "idstr": "2201615977",
+ "id": 5816766564,
+ "idstr": "5816766564",
"class": 1,
- "screen_name": "李万里FLEE",
- "name": "李万里FLEE",
- "province": "32",
- "city": "8",
- "location": "江苏 淮安",
- "description": "司法考试ing,想做一个离婚律师。",
+ "screen_name": "光合F",
+ "name": "光合F",
+ "province": "15",
+ "city": "1000",
+ "location": "内蒙古",
+ "description": "",
"url": "",
- "profile_image_url": "http://tvax2.sinaimg.cn/crop.0.0.996.996.50/8339fe69ly8fiqewcgmujj20ro0romz1.jpg",
+ "profile_image_url": "http://tvax2.sinaimg.cn/crop.0.0.996.996.50/006lEyHyly8fgjy9tr7t9j30ro0roq4v.jpg",
"cover_image_phone": "http://ww1.sinaimg.cn/crop.0.0.640.640.640/549d0121tw1egm1kjly3jj20hs0hsq4f.jpg",
- "profile_url": "213456866",
- "domain": "leeaandg",
- "weihao": "213456866",
+ "profile_url": "u/5816766564",
+ "domain": "",
+ "weihao": "",
"gender": "m",
- "followers_count": 20748,
- "friends_count": 175,
- "pagefriends_count": 2,
- "statuses_count": 4048,
+ "followers_count": 4,
+ "friends_count": 2,
+ "pagefriends_count": 0,
+ "statuses_count": 3,
"video_status_count": 0,
- "favourites_count": 15,
- "created_at": "Mon Jun 27 01:13:51 +0800 2011",
+ "favourites_count": 1,
+ "created_at": "Thu Dec 31 19:56:45 +0800 2015",
"following": false,
"allow_all_act_msg": false,
- "geo_enabled": false,
- "verified": true,
- "verified_type": 0,
+ "geo_enabled": true,
+ "verified": false,
+ "verified_type": -1,
"remark": "",
"insecurity": {
"sexual_content": false
},
- "ptype": 3,
+ "ptype": 0,
"allow_all_comment": true,
- "avatar_large": "http://tvax2.sinaimg.cn/crop.0.0.996.996.180/8339fe69ly8fiqewcgmujj20ro0romz1.jpg",
- "avatar_hd": "http://tvax2.sinaimg.cn/crop.0.0.996.996.1024/8339fe69ly8fiqewcgmujj20ro0romz1.jpg",
- "verified_reason": "北京天下书盟文化 签约作家 作品有《再见不期而遇的青春》",
- "verified_trade": "1447",
+ "avatar_large": "http://tvax2.sinaimg.cn/crop.0.0.996.996.180/006lEyHyly8fgjy9tr7t9j30ro0roq4v.jpg",
+ "avatar_hd": "http://tvax2.sinaimg.cn/crop.0.0.996.996.1024/006lEyHyly8fgjy9tr7t9j30ro0roq4v.jpg",
+ "verified_reason": "",
+ "verified_trade": "",
"verified_reason_url": "",
"verified_source": "",
"verified_source_url": "",
- "verified_state": 0,
- "verified_level": 3,
- "verified_type_ext": 0,
- "has_service_tel": false,
- "verified_reason_modified": "",
- "verified_contact_name": "",
- "verified_contact_email": "",
- "verified_contact_mobile": "",
"follow_me": false,
"like": false,
"like_me": false,
"online_status": 0,
- "bi_followers_count": 42,
+ "bi_followers_count": 0,
"lang": "zh-cn",
"star": 0,
- "mbtype": 2,
- "mbrank": 4,
+ "mbtype": 0,
+ "mbrank": 0,
"block_word": 0,
"block_app": 0,
- "ability_tags": "言情,民谣,影评,影视文学,青春文学,书评,小说,文学,惊悚推理,小吃",
"credit_score": 80,
- "user_ability": 2099212,
- "cardid": "star_002",
- "urank": 40,
+ "user_ability": 0,
+ "urank": 4,
"story_read_state": -1,
"vclub_member": 0
},
- "mid": "4270836766284315",
- "idstr": "4270836766284315",
+ "mid": "4147180036414576",
+ "idstr": "4147180036414576",
"status": {
- "created_at": "Wed Aug 08 20:09:51 +0800 2018",
- "id": 4270836326031924,
- "idstr": "4270836326031924",
- "mid": "4270836326031924",
+ "created_at": "Fri Sep 01 09:34:20 +0800 2017",
+ "id": 4147102126409591,
+ "idstr": "4147102126409591",
+ "mid": "4147102126409591",
"can_edit": false,
- "text": "【商务部新闻发言人就中方对160亿美元自美进口产品采取反制措施发表谈话】美方决定自8月23日起对160亿美元中国输美产品加征25%的关税,又一次将国内法凌驾于国际法之上,是十分无理的做法。中方为维护自身正当权益和多边贸易体制,不得不做出必要反制,决定对160亿美元自美进口产品加征25%的关税,并与",
- "textLength": 302,
+ "text": "【重庆公租房住户抱怨不建游泳池 官方:建议买高档小区】“中低收入群体都不怕热吗?中低收入群体的孩子们就该热吗?”市民在政府信箱里质问为何公租房小区不建游泳池。区政府:规划用地有限,无修建泳池先例,如对居住环境不满,建议购买带游泳池的高档小区住房。(北青报)http://t.cn/RNVLUDr",
+ "textLength": 274,
"source_allowclick": 0,
"source_type": 1,
"source": "微博 weibo.com",
@@ -682,43 +803,43 @@
"in_reply_to_screen_name": "",
"pic_urls": [
{
- "thumbnail_pic": "http://wx3.sinaimg.cn/thumbnail/a716fd45ly1fu2jvzgsy3j20c80c8tdp.jpg"
+ "thumbnail_pic": "http://wx1.sinaimg.cn/thumbnail/63207a53ly1fj3t7k8yqfj20c807w3zd.jpg"
}
],
- "thumbnail_pic": "http://wx3.sinaimg.cn/thumbnail/a716fd45ly1fu2jvzgsy3j20c80c8tdp.jpg",
- "bmiddle_pic": "http://wx3.sinaimg.cn/bmiddle/a716fd45ly1fu2jvzgsy3j20c80c8tdp.jpg",
- "original_pic": "http://wx3.sinaimg.cn/large/a716fd45ly1fu2jvzgsy3j20c80c8tdp.jpg",
+ "thumbnail_pic": "http://wx1.sinaimg.cn/thumbnail/63207a53ly1fj3t7k8yqfj20c807w3zd.jpg",
+ "bmiddle_pic": "http://wx1.sinaimg.cn/bmiddle/63207a53ly1fj3t7k8yqfj20c807w3zd.jpg",
+ "original_pic": "http://wx1.sinaimg.cn/large/63207a53ly1fj3t7k8yqfj20c807w3zd.jpg",
"geo": null,
"is_paid": false,
"mblog_vip_type": 0,
"user": {
- "id": 2803301701,
- "idstr": "2803301701",
+ "id": 1663072851,
+ "idstr": "1663072851",
"class": 1,
- "screen_name": "人民日报",
- "name": "人民日报",
+ "screen_name": "中国日报",
+ "name": "中国日报",
"province": "11",
"city": "1000",
"location": "北京",
- "description": "人民日报法人微博。参与、沟通、记录时代。",
- "url": "",
- "profile_image_url": "http://tva1.sinaimg.cn/crop.0.3.1018.1018.50/a716fd45gw1ev7q2k8japj20sg0sg779.jpg",
- "cover_image": "http://wx4.sinaimg.cn/crop.0.0.920.300/a716fd45ly1fpjoldh9kaj20pk08cal8.jpg",
- "cover_image_phone": "http://wx1.sinaimg.cn/crop.0.0.640.640.640/a716fd45ly1fpjoivacakj20yi0yiwkb.jpg;http://wx2.sinaimg.cn/crop.0.0.640.640.640/a716fd45ly1foyq0ha1vwj20e80e8wf7.jpg",
- "profile_url": "rmrb",
- "domain": "rmrb",
+ "description": "CHINA DAILY《中国日报》在新时代,与你一起记录中国,点评世界。",
+ "url": "http://www.chinadaily.com.cn",
+ "profile_image_url": "http://tva1.sinaimg.cn/crop.0.0.180.180.50/63207a53jw8f4tpyeyqouj2050050glo.jpg",
+ "cover_image": "http://ww1.sinaimg.cn/crop.0.0.920.300/63207a53jw1f4tpw3s57bj20pk08c40y.jpg",
+ "cover_image_phone": "http://ww4.sinaimg.cn/crop.0.0.640.640.640/63207a53jw1f4tqhwywb7j20hs0hsacb.jpg;http://ww1.sinaimg.cn/crop.0.0.640.640.640/63207a53jw1f4tqh05r0zj20hs0hsacb.jpg;http://ww3.sinaimg.cn/crop.0.0.640.640.640/63207a53jw1f4dg0ilctlj20u00u0aej.jpg",
+ "profile_url": "chinadailywebsite",
+ "domain": "chinadailywebsite",
"weihao": "",
"gender": "m",
- "followers_count": 60881286,
- "friends_count": 3027,
- "pagefriends_count": 2694,
- "statuses_count": 89351,
+ "followers_count": 35884421,
+ "friends_count": 865,
+ "pagefriends_count": 399,
+ "statuses_count": 92238,
"video_status_count": 0,
- "favourites_count": 1,
- "created_at": "Sun Jul 22 02:28:35 +0800 2012",
+ "favourites_count": 672,
+ "created_at": "Mon Nov 23 14:27:48 +0800 2009",
"following": false,
"allow_all_act_msg": false,
- "geo_enabled": false,
+ "geo_enabled": true,
"verified": true,
"verified_type": 3,
"remark": "",
@@ -727,26 +848,26 @@
},
"ptype": 0,
"allow_all_comment": true,
- "avatar_large": "http://tva1.sinaimg.cn/crop.0.3.1018.1018.180/a716fd45gw1ev7q2k8japj20sg0sg779.jpg",
- "avatar_hd": "http://tva1.sinaimg.cn/crop.0.3.1018.1018.1024/a716fd45gw1ev7q2k8japj20sg0sg779.jpg",
- "verified_reason": "《人民日报》法人微博",
+ "avatar_large": "http://tva1.sinaimg.cn/crop.0.0.180.180.180/63207a53jw8f4tpyeyqouj2050050glo.jpg",
+ "avatar_hd": "http://tva1.sinaimg.cn/crop.0.0.180.180.1024/63207a53jw8f4tpyeyqouj2050050glo.jpg",
+ "verified_reason": "China Daily 中国日报官方微博",
"verified_trade": "",
"verified_reason_url": "",
"verified_source": "",
"verified_source_url": "",
- "verified_state": 2,
+ "verified_state": 0,
"verified_level": 3,
"verified_type_ext": 0,
"has_service_tel": false,
- "verified_reason_modified": "辽宁科技大学官方微博,教育官微联盟成员",
- "verified_contact_name": "",
+ "verified_reason_modified": "China Daily 中国日报官方微博",
+ "verified_contact_name": "CHINADAILY",
"verified_contact_email": "",
- "verified_contact_mobile": "",
+ "verified_contact_mobile": "010-64995000",
"follow_me": false,
"like": false,
"like_me": false,
"online_status": 0,
- "bi_followers_count": 305,
+ "bi_followers_count": 197,
"lang": "zh-cn",
"star": 0,
"mbtype": 12,
@@ -754,7 +875,7 @@
"block_word": 0,
"block_app": 1,
"credit_score": 80,
- "user_ability": 10814212,
+ "user_ability": 11862788,
"cardid": "star_583",
"urank": 48,
"story_read_state": -1,
@@ -764,13 +885,16 @@
"comments_count": 0,
"attitudes_count": 0,
"pending_approval_count": 0,
- "isLongText": true,
+ "isLongText": false,
"hide_flag": 0,
"mlevel": 0,
"visible": {
"type": 0,
"list_id": 0
},
+ "biz_ids": [
+ 0
+ ],
"biz_feature": 0,
"hasActionTypeCard": 0,
"darwin_tags": [],
@@ -779,48 +903,47 @@
"mblogtype": 0,
"userType": 0,
"more_info_type": 0,
- "cardid": "star_583",
"positive_recom_flag": 0,
"content_auth": 0,
"gif_ids": "",
"is_show_bulletin": 2,
"comment_manage_info": {
"comment_permission_type": -1,
- "approval_comment_type": 1
+ "approval_comment_type": 0
}
}
},
{
- "created_at": "Wed Aug 08 20:11:27 +0800 2018",
- "id": 4270836729069898,
- "rootid": 4270836729069898,
- "floor_number": 24,
- "text": "美国真是个世界警察,烦人",
"disable_reply": 0,
+ "created_at": "Fri Aug 25 15:38:34 +0800 2017",
+ "id": 4144657077919809,
+ "rootid": 4144657077919809,
+ "floor_number": 116,
+ "text": "好的产品 都不需要这些 note6已经做得非常好了 还用这些干嘛",
"user": {
- "id": 6613614246,
- "idstr": "6613614246",
+ "id": 5816766564,
+ "idstr": "5816766564",
"class": 1,
- "screen_name": "dannylemon1990",
- "name": "dannylemon1990",
- "province": "100",
+ "screen_name": "光合F",
+ "name": "光合F",
+ "province": "15",
"city": "1000",
- "location": "其他",
- "description": "懒得编辑,日常点赞,评论,抽奖,偶尔文青",
+ "location": "内蒙古",
+ "description": "",
"url": "",
- "profile_image_url": "http://tvax1.sinaimg.cn/crop.0.0.996.996.50/007dA3bwly8fu2fnb0b3bj30ro0rowf7.jpg",
+ "profile_image_url": "http://tvax2.sinaimg.cn/crop.0.0.996.996.50/006lEyHyly8fgjy9tr7t9j30ro0roq4v.jpg",
"cover_image_phone": "http://ww1.sinaimg.cn/crop.0.0.640.640.640/549d0121tw1egm1kjly3jj20hs0hsq4f.jpg",
- "profile_url": "u/6613614246",
+ "profile_url": "u/5816766564",
"domain": "",
"weihao": "",
- "gender": "f",
- "followers_count": 39,
- "friends_count": 68,
- "pagefriends_count": 1,
- "statuses_count": 86,
+ "gender": "m",
+ "followers_count": 4,
+ "friends_count": 2,
+ "pagefriends_count": 0,
+ "statuses_count": 3,
"video_status_count": 0,
- "favourites_count": 2,
- "created_at": "Thu Jul 26 21:47:59 +0800 2018",
+ "favourites_count": 1,
+ "created_at": "Thu Dec 31 19:56:45 +0800 2015",
"following": false,
"allow_all_act_msg": false,
"geo_enabled": true,
@@ -832,8 +955,8 @@
},
"ptype": 0,
"allow_all_comment": true,
- "avatar_large": "http://tvax1.sinaimg.cn/crop.0.0.996.996.180/007dA3bwly8fu2fnb0b3bj30ro0rowf7.jpg",
- "avatar_hd": "http://tvax1.sinaimg.cn/crop.0.0.996.996.1024/007dA3bwly8fu2fnb0b3bj30ro0rowf7.jpg",
+ "avatar_large": "http://tvax2.sinaimg.cn/crop.0.0.996.996.180/006lEyHyly8fgjy9tr7t9j30ro0roq4v.jpg",
+ "avatar_hd": "http://tvax2.sinaimg.cn/crop.0.0.996.996.1024/006lEyHyly8fgjy9tr7t9j30ro0roq4v.jpg",
"verified_reason": "",
"verified_trade": "",
"verified_reason_url": "",
@@ -856,19 +979,19 @@
"story_read_state": -1,
"vclub_member": 0
},
- "mid": "4270836729069898",
- "idstr": "4270836729069898",
+ "mid": "4144657077919809",
+ "idstr": "4144657077919809",
"status": {
- "created_at": "Wed Aug 08 20:09:51 +0800 2018",
- "id": 4270836326031924,
- "idstr": "4270836326031924",
- "mid": "4270836326031924",
+ "created_at": "Wed Aug 23 14:27:13 +0800 2017",
+ "id": 4143914347394057,
+ "idstr": "4143914347394057",
+ "mid": "4143914347394057",
"can_edit": false,
- "text": "【商务部新闻发言人就中方对160亿美元自美进口产品采取反制措施发表谈话】美方决定自8月23日起对160亿美元中国输美产品加征25%的关税,又一次将国内法凌驾于国际法之上,是十分无理的做法。中方为维护自身正当权益和多边贸易体制,不得不做出必要反制,决定对160亿美元自美进口产品加征25%的关税,并与",
- "textLength": 302,
- "source_allowclick": 0,
+ "text": "魅蓝Note6发布会的美女模特质量好高啊,你们说是不是?魅族真会玩!6666666",
+ "textLength": 70,
+ "source_allowclick": 1,
"source_type": 1,
- "source": "微博 weibo.com",
+ "source": "窗 - 魅族 PRO 7",
"favorited": false,
"truncated": false,
"in_reply_to_status_id": "",
@@ -876,145 +999,178 @@
"in_reply_to_screen_name": "",
"pic_urls": [
{
- "thumbnail_pic": "http://wx3.sinaimg.cn/thumbnail/a716fd45ly1fu2jvzgsy3j20c80c8tdp.jpg"
+ "thumbnail_pic": "http://wx1.sinaimg.cn/thumbnail/6bc10898gy1fitn36scrwj20yd0j1q8s.jpg"
+ },
+ {
+ "thumbnail_pic": "http://wx3.sinaimg.cn/thumbnail/6bc10898gy1fitn385ipkj211a0oq7da.jpg"
+ },
+ {
+ "thumbnail_pic": "http://wx3.sinaimg.cn/thumbnail/6bc10898gy1fitn39pigxj21100oiqc4.jpg"
+ },
+ {
+ "thumbnail_pic": "http://wx1.sinaimg.cn/thumbnail/6bc10898gy1fitn3b4x2zj210j0osdp1.jpg"
+ },
+ {
+ "thumbnail_pic": "http://wx2.sinaimg.cn/thumbnail/6bc10898gy1fitn3bxdn7j20ov0f3n0w.jpg"
+ },
+ {
+ "thumbnail_pic": "http://wx2.sinaimg.cn/thumbnail/6bc10898gy1fitn3d70n0j210f0mm46m.jpg"
}
],
- "thumbnail_pic": "http://wx3.sinaimg.cn/thumbnail/a716fd45ly1fu2jvzgsy3j20c80c8tdp.jpg",
- "bmiddle_pic": "http://wx3.sinaimg.cn/bmiddle/a716fd45ly1fu2jvzgsy3j20c80c8tdp.jpg",
- "original_pic": "http://wx3.sinaimg.cn/large/a716fd45ly1fu2jvzgsy3j20c80c8tdp.jpg",
+ "thumbnail_pic": "http://wx1.sinaimg.cn/thumbnail/6bc10898gy1fitn36scrwj20yd0j1q8s.jpg",
+ "bmiddle_pic": "http://wx1.sinaimg.cn/bmiddle/6bc10898gy1fitn36scrwj20yd0j1q8s.jpg",
+ "original_pic": "http://wx1.sinaimg.cn/large/6bc10898gy1fitn36scrwj20yd0j1q8s.jpg",
"geo": null,
"is_paid": false,
"mblog_vip_type": 0,
"user": {
- "id": 2803301701,
- "idstr": "2803301701",
+ "id": 1807812760,
+ "idstr": "1807812760",
"class": 1,
- "screen_name": "人民日报",
- "name": "人民日报",
- "province": "11",
- "city": "1000",
- "location": "北京",
- "description": "人民日报法人微博。参与、沟通、记录时代。",
- "url": "",
- "profile_image_url": "http://tva1.sinaimg.cn/crop.0.3.1018.1018.50/a716fd45gw1ev7q2k8japj20sg0sg779.jpg",
- "cover_image": "http://wx4.sinaimg.cn/crop.0.0.920.300/a716fd45ly1fpjoldh9kaj20pk08cal8.jpg",
- "cover_image_phone": "http://wx1.sinaimg.cn/crop.0.0.640.640.640/a716fd45ly1fpjoivacakj20yi0yiwkb.jpg;http://wx2.sinaimg.cn/crop.0.0.640.640.640/a716fd45ly1foyq0ha1vwj20e80e8wf7.jpg",
- "profile_url": "rmrb",
- "domain": "rmrb",
- "weihao": "",
+ "screen_name": "移动叔叔",
+ "name": "移动叔叔",
+ "province": "44",
+ "city": "4",
+ "location": "广东 珠海",
+ "description": "移动叔叔智能手机论坛官微 商务助理QQ:2579349049",
+ "url": "http://www.ydss.cn",
+ "profile_image_url": "http://tva4.sinaimg.cn/crop.0.0.1209.1209.50/6bc10898gw1en8jayd44jj20xo0xogob.jpg",
+ "cover_image_phone": "http://wx4.sinaimg.cn/crop.0.0.640.640.640/6bc10898gy1fph6j3lizlj20u00u0wla.jpg",
+ "profile_url": "210129707",
+ "domain": "mobileuncle",
+ "weihao": "210129707",
"gender": "m",
- "followers_count": 60881286,
- "friends_count": 3027,
- "pagefriends_count": 2694,
- "statuses_count": 89351,
+ "followers_count": 738194,
+ "friends_count": 574,
+ "pagefriends_count": 4,
+ "statuses_count": 23824,
"video_status_count": 0,
- "favourites_count": 1,
- "created_at": "Sun Jul 22 02:28:35 +0800 2012",
+ "favourites_count": 39,
+ "created_at": "Mon Sep 06 21:19:05 +0800 2010",
"following": false,
"allow_all_act_msg": false,
"geo_enabled": false,
"verified": true,
- "verified_type": 3,
+ "verified_type": 0,
"remark": "",
"insecurity": {
"sexual_content": false
},
"ptype": 0,
"allow_all_comment": true,
- "avatar_large": "http://tva1.sinaimg.cn/crop.0.3.1018.1018.180/a716fd45gw1ev7q2k8japj20sg0sg779.jpg",
- "avatar_hd": "http://tva1.sinaimg.cn/crop.0.3.1018.1018.1024/a716fd45gw1ev7q2k8japj20sg0sg779.jpg",
- "verified_reason": "《人民日报》法人微博",
- "verified_trade": "",
+ "avatar_large": "http://tva4.sinaimg.cn/crop.0.0.1209.1209.180/6bc10898gw1en8jayd44jj20xo0xogob.jpg",
+ "avatar_hd": "http://tva4.sinaimg.cn/crop.0.0.1209.1209.1024/6bc10898gw1en8jayd44jj20xo0xogob.jpg",
+ "verified_reason": "微博知名数码帐号 微博签约自媒体",
+ "verified_trade": "2547",
"verified_reason_url": "",
"verified_source": "",
"verified_source_url": "",
"verified_state": 2,
"verified_level": 3,
- "verified_type_ext": 0,
+ "verified_type_ext": 1,
"has_service_tel": false,
- "verified_reason_modified": "辽宁科技大学官方微博,教育官微联盟成员",
- "verified_contact_name": "",
- "verified_contact_email": "",
+ "verified_reason_modified": "取消蓝V认证,是这样取消吗?",
+ "verified_contact_name": "黎先生",
+ "verified_contact_email": "yl@mobileuncle.com",
"verified_contact_mobile": "",
"follow_me": false,
"like": false,
"like_me": false,
"online_status": 0,
- "bi_followers_count": 305,
+ "bi_followers_count": 437,
"lang": "zh-cn",
"star": 0,
"mbtype": 12,
"mbrank": 6,
- "block_word": 0,
+ "block_word": 1,
"block_app": 1,
- "credit_score": 80,
- "user_ability": 10814212,
- "cardid": "star_583",
+ "ability_tags": "手机,数码测评,可穿戴设备,内容资讯,互联网人物,社交媒体,新闻趣事,段子手,幽默艺术,运营商",
+ "location_rights": 1,
+ "credit_score": 78,
+ "user_ability": 11807508,
+ "cardid": "star_676",
+ "avatargj_id": "gj_vip_242",
"urank": 48,
"story_read_state": -1,
"vclub_member": 0
},
+ "annotations": [
+ {
+ "client_mblogid": "cae58a4c-3bce-41cc-baca-75eb9b955e49"
+ },
+ {
+ "mapi_request": true
+ }
+ ],
+ "picStatus": "0:1,1:1,2:1,3:1,4:1,5:1",
"reposts_count": 0,
"comments_count": 0,
"attitudes_count": 0,
"pending_approval_count": 0,
- "isLongText": true,
+ "isLongText": false,
"hide_flag": 0,
"mlevel": 0,
"visible": {
"type": 0,
"list_id": 0
},
- "biz_feature": 0,
+ "biz_feature": 4294967300,
"hasActionTypeCard": 0,
"darwin_tags": [],
"hot_weibo_tags": [],
"text_tag_tips": [],
"mblogtype": 0,
"userType": 0,
+ "extend_info": {
+ "weibo_camera": {
+ "c": [
+ "27268369_27431891"
+ ]
+ }
+ },
"more_info_type": 0,
- "cardid": "star_583",
+ "cardid": "star_200",
"positive_recom_flag": 0,
"content_auth": 0,
"gif_ids": "",
"is_show_bulletin": 2,
"comment_manage_info": {
"comment_permission_type": -1,
- "approval_comment_type": 1
+ "approval_comment_type": 0
}
}
},
{
- "created_at": "Wed Aug 08 20:11:24 +0800 2018",
- "id": 4270836716110493,
- "rootid": 4270836716110493,
- "floor_number": 23,
- "text": "支持国家",
"disable_reply": 0,
+ "created_at": "Wed Aug 23 17:15:45 +0800 2017",
+ "id": 4143956763966195,
+ "rootid": 4143956763966195,
+ "floor_number": 140,
+ "text": "这猫成精了",
"user": {
- "id": 2545030840,
- "idstr": "2545030840",
+ "id": 5816766564,
+ "idstr": "5816766564",
"class": 1,
- "screen_name": "知行合一他大爷",
- "name": "知行合一他大爷",
- "province": "37",
+ "screen_name": "光合F",
+ "name": "光合F",
+ "province": "15",
"city": "1000",
- "location": "山东",
- "description": "股市放牛娃儿 他大爷——养牛专业户 梦想 再战10年 1024倍",
+ "location": "内蒙古",
+ "description": "",
"url": "",
- "profile_image_url": "http://tva3.sinaimg.cn/crop.49.43.147.147.50/97b216b8tw1e7ixhcgceyj206u06j3z6.jpg",
- "cover_image_phone": "http://ww3.sinaimg.cn/crop.0.0.640.640.640/6ce2240djw1e9odcin216j20hs0hstd8.jpg;http://ww1.sinaimg.cn/crop.0.0.640.640.640/549d0121tw1egm1kjly3jj20hs0hsq4f.jpg",
- "profile_url": "Gavin8ZF",
- "domain": "Gavin8ZF",
+ "profile_image_url": "http://tvax2.sinaimg.cn/crop.0.0.996.996.50/006lEyHyly8fgjy9tr7t9j30ro0roq4v.jpg",
+ "cover_image_phone": "http://ww1.sinaimg.cn/crop.0.0.640.640.640/549d0121tw1egm1kjly3jj20hs0hsq4f.jpg",
+ "profile_url": "u/5816766564",
+ "domain": "",
"weihao": "",
"gender": "m",
- "followers_count": 10782,
- "friends_count": 272,
+ "followers_count": 4,
+ "friends_count": 2,
"pagefriends_count": 0,
- "statuses_count": 9236,
+ "statuses_count": 3,
"video_status_count": 0,
- "favourites_count": 16,
- "created_at": "Sat Nov 19 08:56:36 +0800 2011",
+ "favourites_count": 1,
+ "created_at": "Thu Dec 31 19:56:45 +0800 2015",
"following": false,
"allow_all_act_msg": false,
"geo_enabled": true,
@@ -1026,8 +1182,8 @@
},
"ptype": 0,
"allow_all_comment": true,
- "avatar_large": "http://tva3.sinaimg.cn/crop.49.43.147.147.180/97b216b8tw1e7ixhcgceyj206u06j3z6.jpg",
- "avatar_hd": "http://tva3.sinaimg.cn/crop.49.43.147.147.1024/97b216b8tw1e7ixhcgceyj206u06j3z6.jpg",
+ "avatar_large": "http://tvax2.sinaimg.cn/crop.0.0.996.996.180/006lEyHyly8fgjy9tr7t9j30ro0roq4v.jpg",
+ "avatar_hd": "http://tvax2.sinaimg.cn/crop.0.0.996.996.1024/006lEyHyly8fgjy9tr7t9j30ro0roq4v.jpg",
"verified_reason": "",
"verified_trade": "",
"verified_reason_url": "",
@@ -1037,30 +1193,29 @@
"like": false,
"like_me": false,
"online_status": 0,
- "bi_followers_count": 57,
+ "bi_followers_count": 0,
"lang": "zh-cn",
"star": 0,
- "mbtype": 11,
- "mbrank": 6,
+ "mbtype": 0,
+ "mbrank": 0,
"block_word": 0,
- "block_app": 1,
- "dianping": "stock",
+ "block_app": 0,
"credit_score": 80,
- "user_ability": 1024,
- "urank": 44,
+ "user_ability": 0,
+ "urank": 4,
"story_read_state": -1,
"vclub_member": 0
},
- "mid": "4270836716110493",
- "idstr": "4270836716110493",
+ "mid": "4143956763966195",
+ "idstr": "4143956763966195",
"status": {
- "created_at": "Wed Aug 08 20:09:51 +0800 2018",
- "id": 4270836326031924,
- "idstr": "4270836326031924",
- "mid": "4270836326031924",
+ "created_at": "Wed Aug 23 13:22:03 +0800 2017",
+ "id": 4143897946812637,
+ "idstr": "4143897946812637",
+ "mid": "4143897946812637",
"can_edit": false,
- "text": "【商务部新闻发言人就中方对160亿美元自美进口产品采取反制措施发表谈话】美方决定自8月23日起对160亿美元中国输美产品加征25%的关税,又一次将国内法凌驾于国际法之上,是十分无理的做法。中方为维护自身正当权益和多边贸易体制,不得不做出必要反制,决定对160亿美元自美进口产品加征25%的关税,并与",
- "textLength": 302,
+ "text": "【主人未带钥匙被锁门外 猫咪跳上把手帮其开门】19日,宜昌高阿姨在楼下聊天,一阵大风把门关上了,未带钥匙的她门外焦急呼喊,家中猫咪竟机灵地跳上门把手,用自己的重量打开门锁!高阿姨又让猫咪演示了一次开门过程→http://t.cn/RC61IsA网友:又想骗我养猫[喵喵]",
+ "textLength": 246,
"source_allowclick": 0,
"source_type": 1,
"source": "微博 weibo.com",
@@ -1069,45 +1224,38 @@
"in_reply_to_status_id": "",
"in_reply_to_user_id": "",
"in_reply_to_screen_name": "",
- "pic_urls": [
- {
- "thumbnail_pic": "http://wx3.sinaimg.cn/thumbnail/a716fd45ly1fu2jvzgsy3j20c80c8tdp.jpg"
- }
- ],
- "thumbnail_pic": "http://wx3.sinaimg.cn/thumbnail/a716fd45ly1fu2jvzgsy3j20c80c8tdp.jpg",
- "bmiddle_pic": "http://wx3.sinaimg.cn/bmiddle/a716fd45ly1fu2jvzgsy3j20c80c8tdp.jpg",
- "original_pic": "http://wx3.sinaimg.cn/large/a716fd45ly1fu2jvzgsy3j20c80c8tdp.jpg",
+ "pic_urls": [],
"geo": null,
"is_paid": false,
"mblog_vip_type": 0,
"user": {
- "id": 2803301701,
- "idstr": "2803301701",
+ "id": 1663072851,
+ "idstr": "1663072851",
"class": 1,
- "screen_name": "人民日报",
- "name": "人民日报",
+ "screen_name": "中国日报",
+ "name": "中国日报",
"province": "11",
"city": "1000",
"location": "北京",
- "description": "人民日报法人微博。参与、沟通、记录时代。",
- "url": "",
- "profile_image_url": "http://tva1.sinaimg.cn/crop.0.3.1018.1018.50/a716fd45gw1ev7q2k8japj20sg0sg779.jpg",
- "cover_image": "http://wx4.sinaimg.cn/crop.0.0.920.300/a716fd45ly1fpjoldh9kaj20pk08cal8.jpg",
- "cover_image_phone": "http://wx1.sinaimg.cn/crop.0.0.640.640.640/a716fd45ly1fpjoivacakj20yi0yiwkb.jpg;http://wx2.sinaimg.cn/crop.0.0.640.640.640/a716fd45ly1foyq0ha1vwj20e80e8wf7.jpg",
- "profile_url": "rmrb",
- "domain": "rmrb",
+ "description": "CHINA DAILY《中国日报》在新时代,与你一起记录中国,点评世界。",
+ "url": "http://www.chinadaily.com.cn",
+ "profile_image_url": "http://tva1.sinaimg.cn/crop.0.0.180.180.50/63207a53jw8f4tpyeyqouj2050050glo.jpg",
+ "cover_image": "http://ww1.sinaimg.cn/crop.0.0.920.300/63207a53jw1f4tpw3s57bj20pk08c40y.jpg",
+ "cover_image_phone": "http://ww4.sinaimg.cn/crop.0.0.640.640.640/63207a53jw1f4tqhwywb7j20hs0hsacb.jpg;http://ww1.sinaimg.cn/crop.0.0.640.640.640/63207a53jw1f4tqh05r0zj20hs0hsacb.jpg;http://ww3.sinaimg.cn/crop.0.0.640.640.640/63207a53jw1f4dg0ilctlj20u00u0aej.jpg",
+ "profile_url": "chinadailywebsite",
+ "domain": "chinadailywebsite",
"weihao": "",
"gender": "m",
- "followers_count": 60881286,
- "friends_count": 3027,
- "pagefriends_count": 2694,
- "statuses_count": 89351,
+ "followers_count": 35884421,
+ "friends_count": 865,
+ "pagefriends_count": 399,
+ "statuses_count": 92238,
"video_status_count": 0,
- "favourites_count": 1,
- "created_at": "Sun Jul 22 02:28:35 +0800 2012",
+ "favourites_count": 672,
+ "created_at": "Mon Nov 23 14:27:48 +0800 2009",
"following": false,
"allow_all_act_msg": false,
- "geo_enabled": false,
+ "geo_enabled": true,
"verified": true,
"verified_type": 3,
"remark": "",
@@ -1116,26 +1264,26 @@
},
"ptype": 0,
"allow_all_comment": true,
- "avatar_large": "http://tva1.sinaimg.cn/crop.0.3.1018.1018.180/a716fd45gw1ev7q2k8japj20sg0sg779.jpg",
- "avatar_hd": "http://tva1.sinaimg.cn/crop.0.3.1018.1018.1024/a716fd45gw1ev7q2k8japj20sg0sg779.jpg",
- "verified_reason": "《人民日报》法人微博",
+ "avatar_large": "http://tva1.sinaimg.cn/crop.0.0.180.180.180/63207a53jw8f4tpyeyqouj2050050glo.jpg",
+ "avatar_hd": "http://tva1.sinaimg.cn/crop.0.0.180.180.1024/63207a53jw8f4tpyeyqouj2050050glo.jpg",
+ "verified_reason": "China Daily 中国日报官方微博",
"verified_trade": "",
"verified_reason_url": "",
"verified_source": "",
"verified_source_url": "",
- "verified_state": 2,
+ "verified_state": 0,
"verified_level": 3,
"verified_type_ext": 0,
"has_service_tel": false,
- "verified_reason_modified": "辽宁科技大学官方微博,教育官微联盟成员",
- "verified_contact_name": "",
+ "verified_reason_modified": "China Daily 中国日报官方微博",
+ "verified_contact_name": "CHINADAILY",
"verified_contact_email": "",
- "verified_contact_mobile": "",
+ "verified_contact_mobile": "010-64995000",
"follow_me": false,
"like": false,
"like_me": false,
"online_status": 0,
- "bi_followers_count": 305,
+ "bi_followers_count": 197,
"lang": "zh-cn",
"star": 0,
"mbtype": 12,
@@ -1143,7 +1291,7 @@
"block_word": 0,
"block_app": 1,
"credit_score": 80,
- "user_ability": 10814212,
+ "user_ability": 11862788,
"cardid": "star_583",
"urank": 48,
"story_read_state": -1,
@@ -1153,14 +1301,17 @@
"comments_count": 0,
"attitudes_count": 0,
"pending_approval_count": 0,
- "isLongText": true,
+ "isLongText": false,
"hide_flag": 0,
"mlevel": 0,
"visible": {
"type": 0,
"list_id": 0
},
- "biz_feature": 0,
+ "biz_ids": [
+ 230444
+ ],
+ "biz_feature": 4294967552,
"hasActionTypeCard": 0,
"darwin_tags": [],
"hot_weibo_tags": [],
@@ -1168,47 +1319,47 @@
"mblogtype": 0,
"userType": 0,
"more_info_type": 0,
- "cardid": "star_583",
"positive_recom_flag": 0,
"content_auth": 0,
"gif_ids": "",
"is_show_bulletin": 2,
"comment_manage_info": {
"comment_permission_type": -1,
- "approval_comment_type": 1
+ "approval_comment_type": 0
}
}
},
{
- "created_at": "Wed Aug 08 20:11:16 +0800 2018",
- "id": 4270836682487901,
- "rootid": 4270836682487901,
- "floor_number": 20,
- "text": "来而不往非礼也",
"disable_reply": 0,
+ "created_at": "Wed Aug 23 17:13:17 +0800 2017",
+ "id": 4143956138398487,
+ "rootid": 4143956138398487,
+ "floor_number": 107,
+ "text": "这些老人真可爱",
"user": {
- "id": 3293324825,
- "idstr": "3293324825",
+ "id": 5816766564,
+ "idstr": "5816766564",
"class": 1,
- "screen_name": "南极下下冻雨",
- "name": "南极下下冻雨",
- "province": "36",
- "city": "7",
- "location": "江西 赣州",
+ "screen_name": "光合F",
+ "name": "光合F",
+ "province": "15",
+ "city": "1000",
+ "location": "内蒙古",
"description": "",
"url": "",
- "profile_image_url": "http://tvax3.sinaimg.cn/crop.0.0.1080.1080.50/c44c2619ly8fu0buxats1j20u00u0tca.jpg",
- "profile_url": "127015032",
- "domain": "jiqingfu6043",
- "weihao": "127015032",
+ "profile_image_url": "http://tvax2.sinaimg.cn/crop.0.0.996.996.50/006lEyHyly8fgjy9tr7t9j30ro0roq4v.jpg",
+ "cover_image_phone": "http://ww1.sinaimg.cn/crop.0.0.640.640.640/549d0121tw1egm1kjly3jj20hs0hsq4f.jpg",
+ "profile_url": "u/5816766564",
+ "domain": "",
+ "weihao": "",
"gender": "m",
- "followers_count": 23,
- "friends_count": 483,
+ "followers_count": 4,
+ "friends_count": 2,
"pagefriends_count": 0,
"statuses_count": 3,
"video_status_count": 0,
- "favourites_count": 0,
- "created_at": "Sun Jun 02 18:32:34 +0800 2013",
+ "favourites_count": 1,
+ "created_at": "Thu Dec 31 19:56:45 +0800 2015",
"following": false,
"allow_all_act_msg": false,
"geo_enabled": true,
@@ -1220,8 +1371,8 @@
},
"ptype": 0,
"allow_all_comment": true,
- "avatar_large": "http://tvax3.sinaimg.cn/crop.0.0.1080.1080.180/c44c2619ly8fu0buxats1j20u00u0tca.jpg",
- "avatar_hd": "http://tvax3.sinaimg.cn/crop.0.0.1080.1080.1024/c44c2619ly8fu0buxats1j20u00u0tca.jpg",
+ "avatar_large": "http://tvax2.sinaimg.cn/crop.0.0.996.996.180/006lEyHyly8fgjy9tr7t9j30ro0roq4v.jpg",
+ "avatar_hd": "http://tvax2.sinaimg.cn/crop.0.0.996.996.1024/006lEyHyly8fgjy9tr7t9j30ro0roq4v.jpg",
"verified_reason": "",
"verified_trade": "",
"verified_reason_url": "",
@@ -1231,7 +1382,7 @@
"like": false,
"like_me": false,
"online_status": 0,
- "bi_followers_count": 1,
+ "bi_followers_count": 0,
"lang": "zh-cn",
"star": 0,
"mbtype": 0,
@@ -1240,20 +1391,20 @@
"block_app": 0,
"credit_score": 80,
"user_ability": 0,
- "urank": 7,
+ "urank": 4,
"story_read_state": -1,
"vclub_member": 0
},
- "mid": "4270836682487901",
- "idstr": "4270836682487901",
+ "mid": "4143956138398487",
+ "idstr": "4143956138398487",
"status": {
- "created_at": "Wed Aug 08 20:09:51 +0800 2018",
- "id": 4270836326031924,
- "idstr": "4270836326031924",
- "mid": "4270836326031924",
+ "created_at": "Wed Aug 23 12:07:03 +0800 2017",
+ "id": 4143879072308161,
+ "idstr": "4143879072308161",
+ "mid": "4143879072308161",
"can_edit": false,
- "text": "【商务部新闻发言人就中方对160亿美元自美进口产品采取反制措施发表谈话】美方决定自8月23日起对160亿美元中国输美产品加征25%的关税,又一次将国内法凌驾于国际法之上,是十分无理的做法。中方为维护自身正当权益和多边贸易体制,不得不做出必要反制,决定对160亿美元自美进口产品加征25%的关税,并与",
- "textLength": 302,
+ "text": "【大爷大妈表演“杀鬼子”广场舞:这样觉得不再被社会抛弃】每天傍晚,北京来福士广场,一群大爷大妈都会表演“杀鬼子”广场舞,高潮时“鬼子”被围住举手投降。很多市民慕名来观看。有老人称,舞跳了8年了,还去外地演出。“每天盼着这一刻,会觉得不再被社会抛弃。”@北京时间 http://t.cn/RCafHnU",
+ "textLength": 278,
"source_allowclick": 0,
"source_type": 1,
"source": "微博 weibo.com",
@@ -1262,45 +1413,2517 @@
"in_reply_to_status_id": "",
"in_reply_to_user_id": "",
"in_reply_to_screen_name": "",
- "pic_urls": [
- {
- "thumbnail_pic": "http://wx3.sinaimg.cn/thumbnail/a716fd45ly1fu2jvzgsy3j20c80c8tdp.jpg"
- }
- ],
- "thumbnail_pic": "http://wx3.sinaimg.cn/thumbnail/a716fd45ly1fu2jvzgsy3j20c80c8tdp.jpg",
- "bmiddle_pic": "http://wx3.sinaimg.cn/bmiddle/a716fd45ly1fu2jvzgsy3j20c80c8tdp.jpg",
- "original_pic": "http://wx3.sinaimg.cn/large/a716fd45ly1fu2jvzgsy3j20c80c8tdp.jpg",
+ "pic_urls": [],
"geo": null,
"is_paid": false,
"mblog_vip_type": 0,
"user": {
- "id": 2803301701,
- "idstr": "2803301701",
+ "id": 1663072851,
+ "idstr": "1663072851",
"class": 1,
- "screen_name": "人民日报",
- "name": "人民日报",
+ "screen_name": "中国日报",
+ "name": "中国日报",
"province": "11",
"city": "1000",
"location": "北京",
- "description": "人民日报法人微博。参与、沟通、记录时代。",
- "url": "",
- "profile_image_url": "http://tva1.sinaimg.cn/crop.0.3.1018.1018.50/a716fd45gw1ev7q2k8japj20sg0sg779.jpg",
- "cover_image": "http://wx4.sinaimg.cn/crop.0.0.920.300/a716fd45ly1fpjoldh9kaj20pk08cal8.jpg",
- "cover_image_phone": "http://wx1.sinaimg.cn/crop.0.0.640.640.640/a716fd45ly1fpjoivacakj20yi0yiwkb.jpg;http://wx2.sinaimg.cn/crop.0.0.640.640.640/a716fd45ly1foyq0ha1vwj20e80e8wf7.jpg",
- "profile_url": "rmrb",
- "domain": "rmrb",
+ "description": "CHINA DAILY《中国日报》在新时代,与你一起记录中国,点评世界。",
+ "url": "http://www.chinadaily.com.cn",
+ "profile_image_url": "http://tva1.sinaimg.cn/crop.0.0.180.180.50/63207a53jw8f4tpyeyqouj2050050glo.jpg",
+ "cover_image": "http://ww1.sinaimg.cn/crop.0.0.920.300/63207a53jw1f4tpw3s57bj20pk08c40y.jpg",
+ "cover_image_phone": "http://ww4.sinaimg.cn/crop.0.0.640.640.640/63207a53jw1f4tqhwywb7j20hs0hsacb.jpg;http://ww1.sinaimg.cn/crop.0.0.640.640.640/63207a53jw1f4tqh05r0zj20hs0hsacb.jpg;http://ww3.sinaimg.cn/crop.0.0.640.640.640/63207a53jw1f4dg0ilctlj20u00u0aej.jpg",
+ "profile_url": "chinadailywebsite",
+ "domain": "chinadailywebsite",
+ "weihao": "",
+ "gender": "m",
+ "followers_count": 35884421,
+ "friends_count": 865,
+ "pagefriends_count": 399,
+ "statuses_count": 92238,
+ "video_status_count": 0,
+ "favourites_count": 672,
+ "created_at": "Mon Nov 23 14:27:48 +0800 2009",
+ "following": false,
+ "allow_all_act_msg": false,
+ "geo_enabled": true,
+ "verified": true,
+ "verified_type": 3,
+ "remark": "",
+ "insecurity": {
+ "sexual_content": false
+ },
+ "ptype": 0,
+ "allow_all_comment": true,
+ "avatar_large": "http://tva1.sinaimg.cn/crop.0.0.180.180.180/63207a53jw8f4tpyeyqouj2050050glo.jpg",
+ "avatar_hd": "http://tva1.sinaimg.cn/crop.0.0.180.180.1024/63207a53jw8f4tpyeyqouj2050050glo.jpg",
+ "verified_reason": "China Daily 中国日报官方微博",
+ "verified_trade": "",
+ "verified_reason_url": "",
+ "verified_source": "",
+ "verified_source_url": "",
+ "verified_state": 0,
+ "verified_level": 3,
+ "verified_type_ext": 0,
+ "has_service_tel": false,
+ "verified_reason_modified": "China Daily 中国日报官方微博",
+ "verified_contact_name": "CHINADAILY",
+ "verified_contact_email": "",
+ "verified_contact_mobile": "010-64995000",
+ "follow_me": false,
+ "like": false,
+ "like_me": false,
+ "online_status": 0,
+ "bi_followers_count": 197,
+ "lang": "zh-cn",
+ "star": 0,
+ "mbtype": 12,
+ "mbrank": 6,
+ "block_word": 0,
+ "block_app": 1,
+ "credit_score": 80,
+ "user_ability": 11862788,
+ "cardid": "star_583",
+ "urank": 48,
+ "story_read_state": -1,
+ "vclub_member": 0
+ },
+ "reposts_count": 0,
+ "comments_count": 0,
+ "attitudes_count": 0,
+ "pending_approval_count": 0,
+ "isLongText": false,
+ "hide_flag": 0,
+ "mlevel": 0,
+ "visible": {
+ "type": 0,
+ "list_id": 0
+ },
+ "biz_ids": [
+ 230442
+ ],
+ "biz_feature": 4294967552,
+ "hasActionTypeCard": 0,
+ "darwin_tags": [],
+ "hot_weibo_tags": [],
+ "text_tag_tips": [],
+ "mblogtype": 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
+ }
+ }
+ },
+ {
+ "disable_reply": 0,
+ "created_at": "Wed Aug 23 17:11:42 +0800 2017",
+ "id": 4143955740948070,
+ "rootid": 4143955740948070,
+ "floor_number": 554,
+ "text": "薛某不是说想和她一起死么 那现在薛某怎么样呢",
+ "user": {
+ "id": 5816766564,
+ "idstr": "5816766564",
+ "class": 1,
+ "screen_name": "光合F",
+ "name": "光合F",
+ "province": "15",
+ "city": "1000",
+ "location": "内蒙古",
+ "description": "",
+ "url": "",
+ "profile_image_url": "http://tvax2.sinaimg.cn/crop.0.0.996.996.50/006lEyHyly8fgjy9tr7t9j30ro0roq4v.jpg",
+ "cover_image_phone": "http://ww1.sinaimg.cn/crop.0.0.640.640.640/549d0121tw1egm1kjly3jj20hs0hsq4f.jpg",
+ "profile_url": "u/5816766564",
+ "domain": "",
+ "weihao": "",
+ "gender": "m",
+ "followers_count": 4,
+ "friends_count": 2,
+ "pagefriends_count": 0,
+ "statuses_count": 3,
+ "video_status_count": 0,
+ "favourites_count": 1,
+ "created_at": "Thu Dec 31 19:56:45 +0800 2015",
+ "following": false,
+ "allow_all_act_msg": false,
+ "geo_enabled": true,
+ "verified": false,
+ "verified_type": -1,
+ "remark": "",
+ "insecurity": {
+ "sexual_content": false
+ },
+ "ptype": 0,
+ "allow_all_comment": true,
+ "avatar_large": "http://tvax2.sinaimg.cn/crop.0.0.996.996.180/006lEyHyly8fgjy9tr7t9j30ro0roq4v.jpg",
+ "avatar_hd": "http://tvax2.sinaimg.cn/crop.0.0.996.996.1024/006lEyHyly8fgjy9tr7t9j30ro0roq4v.jpg",
+ "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": 0,
+ "lang": "zh-cn",
+ "star": 0,
+ "mbtype": 0,
+ "mbrank": 0,
+ "block_word": 0,
+ "block_app": 0,
+ "credit_score": 80,
+ "user_ability": 0,
+ "urank": 4,
+ "story_read_state": -1,
+ "vclub_member": 0
+ },
+ "mid": "4143955740948070",
+ "idstr": "4143955740948070",
+ "status": {
+ "created_at": "Wed Aug 23 15:43:38 +0800 2017",
+ "id": 4143933577655130,
+ "idstr": "4143933577655130",
+ "mid": "4143933577655130",
+ "can_edit": false,
+ "text": "【女孩拒绝富二代男同学示爱 被对方从19楼扔下死亡】薛某是河南林州人,与被害人姗姗系高中同学。2015年,两人本科毕业后,薛某出国深造,姗姗到杭州工作。姗姗和另两个女同事合租一套三室一厅的房子,今年2月,薛某从国外回来到杭州,当时姗姗的一位室友正好退租,在薛某的再三要求下,他加入合租。薛",
+ "textLength": 1102,
+ "source_allowclick": 0,
+ "source_type": 1,
+ "source": "UC浏览器电脑版",
+ "favorited": false,
+ "truncated": false,
+ "in_reply_to_status_id": "",
+ "in_reply_to_user_id": "",
+ "in_reply_to_screen_name": "",
+ "pic_urls": [
+ {
+ "thumbnail_pic": "http://wx4.sinaimg.cn/thumbnail/61e04755ly1fitpa6r9tej20890ah74a.jpg"
+ },
+ {
+ "thumbnail_pic": "http://wx3.sinaimg.cn/thumbnail/61e04755ly1fitpa7cydwj20hs09t74d.jpg"
+ },
+ {
+ "thumbnail_pic": "http://wx3.sinaimg.cn/thumbnail/61e04755ly1fitpa7zsg2j20hs0aqgmf.jpg"
+ },
+ {
+ "thumbnail_pic": "http://wx1.sinaimg.cn/thumbnail/61e04755ly1fitpa8nlxcj20hs0np0u7.jpg"
+ }
+ ],
+ "thumbnail_pic": "http://wx4.sinaimg.cn/thumbnail/61e04755ly1fitpa6r9tej20890ah74a.jpg",
+ "bmiddle_pic": "http://wx4.sinaimg.cn/bmiddle/61e04755ly1fitpa6r9tej20890ah74a.jpg",
+ "original_pic": "http://wx4.sinaimg.cn/large/61e04755ly1fitpa6r9tej20890ah74a.jpg",
+ "geo": null,
+ "is_paid": false,
+ "mblog_vip_type": 0,
+ "user": {
+ "id": 1642088277,
+ "idstr": "1642088277",
+ "class": 1,
+ "screen_name": "财经网",
+ "name": "财经网",
+ "province": "11",
+ "city": "5",
+ "location": "北京 朝阳区",
+ "description": "商务合作: 廖先生 QQ :3196598336 邮箱:kailiao@caijing.com.cn",
+ "url": "http://www.caijing.com.cn/",
+ "profile_image_url": "http://tva4.sinaimg.cn/crop.0.0.360.360.50/61e04755jw8ev8618io3bj20a00a00t9.jpg",
+ "cover_image_phone": "http://ww1.sinaimg.cn/crop.0.0.640.640.640/549d0121tw1egm1kjly3jj20hs0hsq4f.jpg",
+ "profile_url": "caijing",
+ "domain": "caijing",
+ "weihao": "",
+ "gender": "m",
+ "followers_count": 26523042,
+ "friends_count": 909,
+ "pagefriends_count": 62,
+ "statuses_count": 143338,
+ "video_status_count": 0,
+ "favourites_count": 662,
+ "created_at": "Fri Aug 28 16:35:47 +0800 2009",
+ "following": false,
+ "allow_all_act_msg": false,
+ "geo_enabled": false,
+ "verified": true,
+ "verified_type": 3,
+ "remark": "",
+ "insecurity": {
+ "sexual_content": false
+ },
+ "ptype": 0,
+ "allow_all_comment": true,
+ "avatar_large": "http://tva4.sinaimg.cn/crop.0.0.360.360.180/61e04755jw8ev8618io3bj20a00a00t9.jpg",
+ "avatar_hd": "http://tva4.sinaimg.cn/crop.0.0.360.360.1024/61e04755jw8ev8618io3bj20a00a00t9.jpg",
+ "verified_reason": "财经网官方微博",
+ "verified_trade": "",
+ "verified_reason_url": "",
+ "verified_source": "",
+ "verified_source_url": "",
+ "verified_state": 0,
+ "verified_level": 3,
+ "verified_type_ext": 0,
+ "has_service_tel": false,
+ "verified_reason_modified": "",
+ "verified_contact_name": "商务合作",
+ "verified_contact_email": "kailiao@caijing.com.cn",
+ "verified_contact_mobile": "",
+ "follow_me": false,
+ "like": false,
+ "like_me": false,
+ "online_status": 0,
+ "bi_followers_count": 553,
+ "lang": "zh-cn",
+ "star": 0,
+ "mbtype": 12,
+ "mbrank": 6,
+ "block_word": 0,
+ "block_app": 1,
+ "dianping": "stock",
+ "credit_score": 80,
+ "user_ability": 330500,
+ "cardid": "star_583",
+ "urank": 48,
+ "story_read_state": -1,
+ "vclub_member": 0
+ },
+ "reposts_count": 0,
+ "comments_count": 0,
+ "attitudes_count": 0,
+ "pending_approval_count": 0,
+ "isLongText": true,
+ "hide_flag": 0,
+ "mlevel": 0,
+ "visible": {
+ "type": 0,
+ "list_id": 0
+ },
+ "biz_ids": [
+ 0
+ ],
+ "biz_feature": 0,
+ "hasActionTypeCard": 0,
+ "darwin_tags": [],
+ "hot_weibo_tags": [],
+ "text_tag_tips": [],
+ "mblogtype": 0,
+ "userType": 0,
+ "more_info_type": 0,
+ "cardid": "star_005",
+ "positive_recom_flag": 0,
+ "content_auth": 0,
+ "gif_ids": "",
+ "is_show_bulletin": 2,
+ "comment_manage_info": {
+ "comment_permission_type": -1,
+ "approval_comment_type": 0
+ }
+ }
+ },
+ {
+ "disable_reply": 0,
+ "created_at": "Tue Aug 22 14:00:46 +0800 2017",
+ "id": 4143545302246886,
+ "rootid": 4143545302246886,
+ "floor_number": 385,
+ "text": "中国要发展成共享主义社会[允悲]",
+ "user": {
+ "id": 5816766564,
+ "idstr": "5816766564",
+ "class": 1,
+ "screen_name": "光合F",
+ "name": "光合F",
+ "province": "15",
+ "city": "1000",
+ "location": "内蒙古",
+ "description": "",
+ "url": "",
+ "profile_image_url": "http://tvax2.sinaimg.cn/crop.0.0.996.996.50/006lEyHyly8fgjy9tr7t9j30ro0roq4v.jpg",
+ "cover_image_phone": "http://ww1.sinaimg.cn/crop.0.0.640.640.640/549d0121tw1egm1kjly3jj20hs0hsq4f.jpg",
+ "profile_url": "u/5816766564",
+ "domain": "",
+ "weihao": "",
+ "gender": "m",
+ "followers_count": 4,
+ "friends_count": 2,
+ "pagefriends_count": 0,
+ "statuses_count": 3,
+ "video_status_count": 0,
+ "favourites_count": 1,
+ "created_at": "Thu Dec 31 19:56:45 +0800 2015",
+ "following": false,
+ "allow_all_act_msg": false,
+ "geo_enabled": true,
+ "verified": false,
+ "verified_type": -1,
+ "remark": "",
+ "insecurity": {
+ "sexual_content": false
+ },
+ "ptype": 0,
+ "allow_all_comment": true,
+ "avatar_large": "http://tvax2.sinaimg.cn/crop.0.0.996.996.180/006lEyHyly8fgjy9tr7t9j30ro0roq4v.jpg",
+ "avatar_hd": "http://tvax2.sinaimg.cn/crop.0.0.996.996.1024/006lEyHyly8fgjy9tr7t9j30ro0roq4v.jpg",
+ "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": 0,
+ "lang": "zh-cn",
+ "star": 0,
+ "mbtype": 0,
+ "mbrank": 0,
+ "block_word": 0,
+ "block_app": 0,
+ "credit_score": 80,
+ "user_ability": 0,
+ "urank": 4,
+ "story_read_state": -1,
+ "vclub_member": 0
+ },
+ "mid": "4143545302246886",
+ "idstr": "4143545302246886",
+ "status": {
+ "created_at": "Tue Aug 22 11:38:14 +0800 2017",
+ "id": 4143509428023875,
+ "idstr": "4143509428023875",
+ "mid": "4143509428023875",
+ "can_edit": false,
+ "text": "【“共享空调”现身广州 网友吐槽:不如自己买一台】共享经济可能是真被“玩坏”了。8月初,广东一企业推出了“共享空调”,采用“押金+按时收费”模式,每台押金3000元,每小时1元价格收费,电费自理。按照一年用5个月,每个月20天每天6小时来计算,一台空调回本需要5年的时间。网友:三千块租金为什",
+ "textLength": 318,
+ "source_allowclick": 0,
+ "source_type": 1,
+ "source": "微博 weibo.com",
+ "favorited": false,
+ "truncated": false,
+ "in_reply_to_status_id": "",
+ "in_reply_to_user_id": "",
+ "in_reply_to_screen_name": "",
+ "pic_urls": [
+ {
+ "thumbnail_pic": "http://wx1.sinaimg.cn/thumbnail/61e04755gy1fisckp8uc8j20dw0dxt8o.jpg"
+ }
+ ],
+ "thumbnail_pic": "http://wx1.sinaimg.cn/thumbnail/61e04755gy1fisckp8uc8j20dw0dxt8o.jpg",
+ "bmiddle_pic": "http://wx1.sinaimg.cn/bmiddle/61e04755gy1fisckp8uc8j20dw0dxt8o.jpg",
+ "original_pic": "http://wx1.sinaimg.cn/large/61e04755gy1fisckp8uc8j20dw0dxt8o.jpg",
+ "geo": null,
+ "is_paid": false,
+ "mblog_vip_type": 0,
+ "user": {
+ "id": 1642088277,
+ "idstr": "1642088277",
+ "class": 1,
+ "screen_name": "财经网",
+ "name": "财经网",
+ "province": "11",
+ "city": "5",
+ "location": "北京 朝阳区",
+ "description": "商务合作: 廖先生 QQ :3196598336 邮箱:kailiao@caijing.com.cn",
+ "url": "http://www.caijing.com.cn/",
+ "profile_image_url": "http://tva4.sinaimg.cn/crop.0.0.360.360.50/61e04755jw8ev8618io3bj20a00a00t9.jpg",
+ "cover_image_phone": "http://ww1.sinaimg.cn/crop.0.0.640.640.640/549d0121tw1egm1kjly3jj20hs0hsq4f.jpg",
+ "profile_url": "caijing",
+ "domain": "caijing",
+ "weihao": "",
+ "gender": "m",
+ "followers_count": 26523042,
+ "friends_count": 909,
+ "pagefriends_count": 62,
+ "statuses_count": 143338,
+ "video_status_count": 0,
+ "favourites_count": 662,
+ "created_at": "Fri Aug 28 16:35:47 +0800 2009",
+ "following": false,
+ "allow_all_act_msg": false,
+ "geo_enabled": false,
+ "verified": true,
+ "verified_type": 3,
+ "remark": "",
+ "insecurity": {
+ "sexual_content": false
+ },
+ "ptype": 0,
+ "allow_all_comment": true,
+ "avatar_large": "http://tva4.sinaimg.cn/crop.0.0.360.360.180/61e04755jw8ev8618io3bj20a00a00t9.jpg",
+ "avatar_hd": "http://tva4.sinaimg.cn/crop.0.0.360.360.1024/61e04755jw8ev8618io3bj20a00a00t9.jpg",
+ "verified_reason": "财经网官方微博",
+ "verified_trade": "",
+ "verified_reason_url": "",
+ "verified_source": "",
+ "verified_source_url": "",
+ "verified_state": 0,
+ "verified_level": 3,
+ "verified_type_ext": 0,
+ "has_service_tel": false,
+ "verified_reason_modified": "",
+ "verified_contact_name": "商务合作",
+ "verified_contact_email": "kailiao@caijing.com.cn",
+ "verified_contact_mobile": "",
+ "follow_me": false,
+ "like": false,
+ "like_me": false,
+ "online_status": 0,
+ "bi_followers_count": 553,
+ "lang": "zh-cn",
+ "star": 0,
+ "mbtype": 12,
+ "mbrank": 6,
+ "block_word": 0,
+ "block_app": 1,
+ "dianping": "stock",
+ "credit_score": 80,
+ "user_ability": 330500,
+ "cardid": "star_583",
+ "urank": 48,
+ "story_read_state": -1,
+ "vclub_member": 0
+ },
+ "reposts_count": 0,
+ "comments_count": 0,
+ "attitudes_count": 0,
+ "pending_approval_count": 0,
+ "isLongText": true,
+ "hide_flag": 0,
+ "mlevel": 0,
+ "visible": {
+ "type": 0,
+ "list_id": 0
+ },
+ "biz_ids": [
+ 230961
+ ],
+ "biz_feature": 0,
+ "hasActionTypeCard": 0,
+ "darwin_tags": [],
+ "hot_weibo_tags": [],
+ "text_tag_tips": [],
+ "mblogtype": 0,
+ "userType": 0,
+ "more_info_type": 0,
+ "cardid": "star_005",
+ "positive_recom_flag": 0,
+ "content_auth": 0,
+ "gif_ids": "",
+ "is_show_bulletin": 2,
+ "comment_manage_info": {
+ "comment_permission_type": -1,
+ "approval_comment_type": 0
+ }
+ }
+ },
+ {
+ "disable_reply": 0,
+ "created_at": "Tue Aug 22 13:54:44 +0800 2017",
+ "id": 4143543788153745,
+ "rootid": 4143543788153745,
+ "floor_number": 270,
+ "text": "不管老罗做什么产品 只要不忘初心就好",
+ "user": {
+ "id": 5816766564,
+ "idstr": "5816766564",
+ "class": 1,
+ "screen_name": "光合F",
+ "name": "光合F",
+ "province": "15",
+ "city": "1000",
+ "location": "内蒙古",
+ "description": "",
+ "url": "",
+ "profile_image_url": "http://tvax2.sinaimg.cn/crop.0.0.996.996.50/006lEyHyly8fgjy9tr7t9j30ro0roq4v.jpg",
+ "cover_image_phone": "http://ww1.sinaimg.cn/crop.0.0.640.640.640/549d0121tw1egm1kjly3jj20hs0hsq4f.jpg",
+ "profile_url": "u/5816766564",
+ "domain": "",
+ "weihao": "",
+ "gender": "m",
+ "followers_count": 4,
+ "friends_count": 2,
+ "pagefriends_count": 0,
+ "statuses_count": 3,
+ "video_status_count": 0,
+ "favourites_count": 1,
+ "created_at": "Thu Dec 31 19:56:45 +0800 2015",
+ "following": false,
+ "allow_all_act_msg": false,
+ "geo_enabled": true,
+ "verified": false,
+ "verified_type": -1,
+ "remark": "",
+ "insecurity": {
+ "sexual_content": false
+ },
+ "ptype": 0,
+ "allow_all_comment": true,
+ "avatar_large": "http://tvax2.sinaimg.cn/crop.0.0.996.996.180/006lEyHyly8fgjy9tr7t9j30ro0roq4v.jpg",
+ "avatar_hd": "http://tvax2.sinaimg.cn/crop.0.0.996.996.1024/006lEyHyly8fgjy9tr7t9j30ro0roq4v.jpg",
+ "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": 0,
+ "lang": "zh-cn",
+ "star": 0,
+ "mbtype": 0,
+ "mbrank": 0,
+ "block_word": 0,
+ "block_app": 0,
+ "credit_score": 80,
+ "user_ability": 0,
+ "urank": 4,
+ "story_read_state": -1,
+ "vclub_member": 0
+ },
+ "mid": "4143543788153745",
+ "idstr": "4143543788153745",
+ "status": {
+ "created_at": "Tue Aug 22 10:11:41 +0800 2017",
+ "id": 4143487656440344,
+ "idstr": "4143487656440344",
+ "mid": "4143487656440344",
+ "can_edit": false,
+ "text": "不是。是 Smartisan OS 和 YunOS 的嫁接版本...你知道锤子科技首先是一家优秀得异乎寻常的软件公司...",
+ "source_allowclick": 0,
+ "source_type": 1,
+ "source": "微博搜索",
+ "favorited": false,
+ "truncated": false,
+ "in_reply_to_status_id": "",
+ "in_reply_to_user_id": "",
+ "in_reply_to_screen_name": "",
+ "pic_urls": [],
+ "geo": null,
+ "is_paid": false,
+ "mblog_vip_type": 0,
+ "user": {
+ "id": 1640571365,
+ "idstr": "1640571365",
+ "class": 1,
+ "screen_name": "罗永浩",
+ "name": "罗永浩",
+ "province": "11",
+ "city": "1",
+ "location": "北京 东城区",
+ "description": "Smartisan,智能机时代的工匠",
+ "url": "http://www.t.tt",
+ "profile_image_url": "http://tvax1.sinaimg.cn/crop.0.0.1010.1010.50/61c921e5ly8fuhr3eywbnj20s20s2wgo.jpg",
+ "cover_image": "http://wx2.sinaimg.cn/crop.0.0.920.300/61c921e5ly1fughtl9m14j20pk08c0yj.jpg",
+ "cover_image_phone": "http://wx1.sinaimg.cn/crop.0.0.640.640.640/61c921e5ly1fughveoyygj20u00u048j.jpg",
+ "profile_url": "laoluoyonghao",
+ "domain": "laoluoyonghao",
+ "weihao": "",
+ "gender": "m",
+ "followers_count": 15178843,
+ "friends_count": 2470,
+ "pagefriends_count": 6,
+ "statuses_count": 31295,
+ "video_status_count": 0,
+ "favourites_count": 6080,
+ "created_at": "Fri Aug 28 16:35:10 +0800 2009",
+ "following": false,
+ "allow_all_act_msg": false,
+ "geo_enabled": true,
+ "verified": true,
+ "verified_type": 0,
+ "remark": "",
+ "insecurity": {
+ "sexual_content": false
+ },
+ "ptype": 3,
+ "allow_all_comment": true,
+ "avatar_large": "http://tvax1.sinaimg.cn/crop.0.0.1010.1010.180/61c921e5ly8fuhr3eywbnj20s20s2wgo.jpg",
+ "avatar_hd": "http://tvax1.sinaimg.cn/crop.0.0.1010.1010.1024/61c921e5ly8fuhr3eywbnj20s20s2wgo.jpg",
+ "verified_reason": "锤子科技 CEO",
+ "verified_trade": "1203",
+ "verified_reason_url": "",
+ "verified_source": "",
+ "verified_source_url": "",
+ "verified_state": 0,
+ "verified_level": 3,
+ "verified_type_ext": 1,
+ "has_service_tel": false,
+ "verified_reason_modified": "",
+ "verified_contact_name": "",
+ "verified_contact_email": "",
+ "verified_contact_mobile": "",
+ "follow_me": false,
+ "like": false,
+ "like_me": false,
+ "online_status": 0,
+ "bi_followers_count": 1933,
+ "lang": "zh-cn",
+ "star": 0,
+ "mbtype": 13,
+ "mbrank": 7,
+ "block_word": 0,
+ "block_app": 1,
+ "credit_score": 80,
+ "user_ability": 2100748,
+ "cardid": "vip_012",
+ "urank": 48,
+ "story_read_state": -1,
+ "vclub_member": 0
+ },
+ "retweeted_status": {
+ "created_at": "Tue Aug 22 01:56:37 +0800 2017",
+ "id": 4143363063828078,
+ "idstr": "4143363063828078",
+ "mid": "4143363063828078",
+ "can_edit": false,
+ "text": "罗永浩微博承认锤子科技正在研发YunOS手机 || 详:http://t.cn/RCiI2Ap",
+ "textLength": 66,
+ "source_allowclick": 0,
+ "source_type": 1,
+ "source": "微博 weibo.com",
+ "favorited": false,
+ "truncated": false,
+ "in_reply_to_status_id": "",
+ "in_reply_to_user_id": "",
+ "in_reply_to_screen_name": "",
+ "pic_urls": [
+ {
+ "thumbnail_pic": "http://wx1.sinaimg.cn/thumbnail/a4c10a14ly1firvrfxqxxj20gh0c50tx.jpg"
+ },
+ {
+ "thumbnail_pic": "http://wx2.sinaimg.cn/thumbnail/a4c10a14ly1firvr9cd28j20sg1ek7av.jpg"
+ }
+ ],
+ "thumbnail_pic": "http://wx1.sinaimg.cn/thumbnail/a4c10a14ly1firvrfxqxxj20gh0c50tx.jpg",
+ "bmiddle_pic": "http://wx1.sinaimg.cn/bmiddle/a4c10a14ly1firvrfxqxxj20gh0c50tx.jpg",
+ "original_pic": "http://wx1.sinaimg.cn/large/a4c10a14ly1firvrfxqxxj20gh0c50tx.jpg",
+ "geo": null,
+ "is_paid": false,
+ "mblog_vip_type": 0,
+ "user": {
+ "id": 2764114452,
+ "idstr": "2764114452",
+ "class": 1,
+ "screen_name": "数码窝",
+ "name": "数码窝",
+ "province": "100",
+ "city": "1000",
+ "location": "其他",
+ "description": "数码窝www.digi-wo.com官方微博。",
+ "url": "http://www.digi-wo.com",
+ "profile_image_url": "http://tva3.sinaimg.cn/crop.0.0.479.479.50/a4c10a14jw1ett2j4mk5sj20dc0dcq3r.jpg",
+ "cover_image_phone": "http://ww2.sinaimg.cn/crop.0.0.640.640.640/a1d3feabjw1ecat8op0e1j20hs0hswgu.jpg",
+ "profile_url": "digiwo",
+ "domain": "digiwo",
+ "weihao": "",
+ "gender": "m",
+ "followers_count": 60475,
+ "friends_count": 75,
+ "pagefriends_count": 0,
+ "statuses_count": 23419,
+ "video_status_count": 0,
+ "favourites_count": 0,
+ "created_at": "Tue May 01 12:36:42 +0800 2012",
+ "following": false,
+ "allow_all_act_msg": false,
+ "geo_enabled": false,
+ "verified": true,
+ "verified_type": 2,
+ "remark": "",
+ "insecurity": {
+ "sexual_content": false
+ },
+ "ptype": 0,
+ "allow_all_comment": false,
+ "avatar_large": "http://tva3.sinaimg.cn/crop.0.0.479.479.180/a4c10a14jw1ett2j4mk5sj20dc0dcq3r.jpg",
+ "avatar_hd": "http://tva3.sinaimg.cn/crop.0.0.479.479.1024/a4c10a14jw1ett2j4mk5sj20dc0dcq3r.jpg",
+ "verified_reason": "数码窝 www.digi-wo.com 官方微博",
+ "verified_trade": "",
+ "verified_reason_url": "",
+ "verified_source": "",
+ "verified_source_url": "",
+ "verified_state": 0,
+ "verified_level": 3,
+ "verified_type_ext": 50,
+ "pay_remind": 0,
+ "pay_date": "20171204",
+ "has_service_tel": false,
+ "verified_reason_modified": "数码窝 www.digi-wo.com 官方微博",
+ "verified_contact_name": "",
+ "verified_contact_email": "",
+ "verified_contact_mobile": "",
+ "follow_me": false,
+ "like": false,
+ "like_me": false,
+ "online_status": 0,
+ "bi_followers_count": 68,
+ "lang": "zh-cn",
+ "star": 0,
+ "mbtype": 12,
+ "mbrank": 4,
+ "block_word": 0,
+ "block_app": 1,
+ "credit_score": 80,
+ "user_ability": 262660,
+ "urank": 44,
+ "story_read_state": -1,
+ "vclub_member": 0
+ },
+ "reposts_count": 0,
+ "comments_count": 0,
+ "attitudes_count": 0,
+ "pending_approval_count": 0,
+ "isLongText": false,
+ "hide_flag": 0,
+ "mlevel": 0,
+ "visible": {
+ "type": 0,
+ "list_id": 0
+ },
+ "biz_feature": 0,
+ "hasActionTypeCard": 0,
+ "darwin_tags": [],
+ "hot_weibo_tags": [],
+ "text_tag_tips": [],
+ "mblogtype": 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
+ }
+ },
+ "reposts_count": 0,
+ "comments_count": 0,
+ "attitudes_count": 0,
+ "pending_approval_count": 0,
+ "isLongText": false,
+ "hide_flag": 0,
+ "mlevel": 0,
+ "visible": {
+ "type": 0,
+ "list_id": 0
+ },
+ "biz_feature": 0,
+ "hasActionTypeCard": 0,
+ "darwin_tags": [],
+ "hot_weibo_tags": [],
+ "text_tag_tips": [],
+ "mblogtype": 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
+ }
+ }
+ },
+ {
+ "disable_reply": 0,
+ "created_at": "Tue Aug 15 20:59:06 +0800 2017",
+ "id": 4141113869278593,
+ "rootid": 4141113869278593,
+ "floor_number": 262,
+ "text": "这种人就应该让他去慰安",
+ "user": {
+ "id": 5816766564,
+ "idstr": "5816766564",
+ "class": 1,
+ "screen_name": "光合F",
+ "name": "光合F",
+ "province": "15",
+ "city": "1000",
+ "location": "内蒙古",
+ "description": "",
+ "url": "",
+ "profile_image_url": "http://tvax2.sinaimg.cn/crop.0.0.996.996.50/006lEyHyly8fgjy9tr7t9j30ro0roq4v.jpg",
+ "cover_image_phone": "http://ww1.sinaimg.cn/crop.0.0.640.640.640/549d0121tw1egm1kjly3jj20hs0hsq4f.jpg",
+ "profile_url": "u/5816766564",
+ "domain": "",
+ "weihao": "",
+ "gender": "m",
+ "followers_count": 4,
+ "friends_count": 2,
+ "pagefriends_count": 0,
+ "statuses_count": 3,
+ "video_status_count": 0,
+ "favourites_count": 1,
+ "created_at": "Thu Dec 31 19:56:45 +0800 2015",
+ "following": false,
+ "allow_all_act_msg": false,
+ "geo_enabled": true,
+ "verified": false,
+ "verified_type": -1,
+ "remark": "",
+ "insecurity": {
+ "sexual_content": false
+ },
+ "ptype": 0,
+ "allow_all_comment": true,
+ "avatar_large": "http://tvax2.sinaimg.cn/crop.0.0.996.996.180/006lEyHyly8fgjy9tr7t9j30ro0roq4v.jpg",
+ "avatar_hd": "http://tvax2.sinaimg.cn/crop.0.0.996.996.1024/006lEyHyly8fgjy9tr7t9j30ro0roq4v.jpg",
+ "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": 0,
+ "lang": "zh-cn",
+ "star": 0,
+ "mbtype": 0,
+ "mbrank": 0,
+ "block_word": 0,
+ "block_app": 0,
+ "credit_score": 80,
+ "user_ability": 0,
+ "urank": 4,
+ "story_read_state": -1,
+ "vclub_member": 0
+ },
+ "mid": "4141113869278593",
+ "idstr": "4141113869278593",
+ "status": {
+ "created_at": "Tue Aug 15 20:15:03 +0800 2017",
+ "id": 4141102779067141,
+ "idstr": "4141102779067141",
+ "mid": "4141102779067141",
+ "can_edit": false,
+ "text": "【男子看“慰安妇”纪录片《二十二》笑场 被劝反回怼:关你什么事】14日,上海一影城放映“慰安妇”题材纪录片《二十二》时,一男子竟笑场,观众劝阻后,他反回怼“关你什么事?”直至有人骂了他一句,引其瞬间爆发,将爆米花、饮料扔向出口观众……对此你想说___? http://t.cn/R9s94Rm",
+ "textLength": 265,
+ "source_allowclick": 0,
+ "source_type": 1,
+ "source": "微博 weibo.com",
+ "favorited": false,
+ "truncated": false,
+ "in_reply_to_status_id": "",
+ "in_reply_to_user_id": "",
+ "in_reply_to_screen_name": "",
+ "pic_urls": [],
+ "geo": null,
+ "is_paid": false,
+ "mblog_vip_type": 0,
+ "user": {
+ "id": 1663072851,
+ "idstr": "1663072851",
+ "class": 1,
+ "screen_name": "中国日报",
+ "name": "中国日报",
+ "province": "11",
+ "city": "1000",
+ "location": "北京",
+ "description": "CHINA DAILY《中国日报》在新时代,与你一起记录中国,点评世界。",
+ "url": "http://www.chinadaily.com.cn",
+ "profile_image_url": "http://tva1.sinaimg.cn/crop.0.0.180.180.50/63207a53jw8f4tpyeyqouj2050050glo.jpg",
+ "cover_image": "http://ww1.sinaimg.cn/crop.0.0.920.300/63207a53jw1f4tpw3s57bj20pk08c40y.jpg",
+ "cover_image_phone": "http://ww4.sinaimg.cn/crop.0.0.640.640.640/63207a53jw1f4tqhwywb7j20hs0hsacb.jpg;http://ww1.sinaimg.cn/crop.0.0.640.640.640/63207a53jw1f4tqh05r0zj20hs0hsacb.jpg;http://ww3.sinaimg.cn/crop.0.0.640.640.640/63207a53jw1f4dg0ilctlj20u00u0aej.jpg",
+ "profile_url": "chinadailywebsite",
+ "domain": "chinadailywebsite",
+ "weihao": "",
+ "gender": "m",
+ "followers_count": 35884421,
+ "friends_count": 865,
+ "pagefriends_count": 399,
+ "statuses_count": 92238,
+ "video_status_count": 0,
+ "favourites_count": 672,
+ "created_at": "Mon Nov 23 14:27:48 +0800 2009",
+ "following": false,
+ "allow_all_act_msg": false,
+ "geo_enabled": true,
+ "verified": true,
+ "verified_type": 3,
+ "remark": "",
+ "insecurity": {
+ "sexual_content": false
+ },
+ "ptype": 0,
+ "allow_all_comment": true,
+ "avatar_large": "http://tva1.sinaimg.cn/crop.0.0.180.180.180/63207a53jw8f4tpyeyqouj2050050glo.jpg",
+ "avatar_hd": "http://tva1.sinaimg.cn/crop.0.0.180.180.1024/63207a53jw8f4tpyeyqouj2050050glo.jpg",
+ "verified_reason": "China Daily 中国日报官方微博",
+ "verified_trade": "",
+ "verified_reason_url": "",
+ "verified_source": "",
+ "verified_source_url": "",
+ "verified_state": 0,
+ "verified_level": 3,
+ "verified_type_ext": 0,
+ "has_service_tel": false,
+ "verified_reason_modified": "China Daily 中国日报官方微博",
+ "verified_contact_name": "CHINADAILY",
+ "verified_contact_email": "",
+ "verified_contact_mobile": "010-64995000",
+ "follow_me": false,
+ "like": false,
+ "like_me": false,
+ "online_status": 0,
+ "bi_followers_count": 197,
+ "lang": "zh-cn",
+ "star": 0,
+ "mbtype": 12,
+ "mbrank": 6,
+ "block_word": 0,
+ "block_app": 1,
+ "credit_score": 80,
+ "user_ability": 11862788,
+ "cardid": "star_583",
+ "urank": 48,
+ "story_read_state": -1,
+ "vclub_member": 0
+ },
+ "reposts_count": 0,
+ "comments_count": 0,
+ "attitudes_count": 0,
+ "pending_approval_count": 0,
+ "isLongText": false,
+ "hide_flag": 0,
+ "mlevel": 0,
+ "visible": {
+ "type": 0,
+ "list_id": 0
+ },
+ "biz_ids": [
+ 230442
+ ],
+ "biz_feature": 0,
+ "hasActionTypeCard": 0,
+ "darwin_tags": [],
+ "hot_weibo_tags": [],
+ "text_tag_tips": [],
+ "mblogtype": 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
+ }
+ }
+ },
+ {
+ "disable_reply": 0,
+ "created_at": "Thu Aug 10 08:55:25 +0800 2017",
+ "id": 4139119804146474,
+ "rootid": 4139119804146474,
+ "floor_number": 29,
+ "text": "人们往往在制造一个麻烦后就立刻想出解决的办法",
+ "user": {
+ "id": 5816766564,
+ "idstr": "5816766564",
+ "class": 1,
+ "screen_name": "光合F",
+ "name": "光合F",
+ "province": "15",
+ "city": "1000",
+ "location": "内蒙古",
+ "description": "",
+ "url": "",
+ "profile_image_url": "http://tvax2.sinaimg.cn/crop.0.0.996.996.50/006lEyHyly8fgjy9tr7t9j30ro0roq4v.jpg",
+ "cover_image_phone": "http://ww1.sinaimg.cn/crop.0.0.640.640.640/549d0121tw1egm1kjly3jj20hs0hsq4f.jpg",
+ "profile_url": "u/5816766564",
+ "domain": "",
+ "weihao": "",
+ "gender": "m",
+ "followers_count": 4,
+ "friends_count": 2,
+ "pagefriends_count": 0,
+ "statuses_count": 3,
+ "video_status_count": 0,
+ "favourites_count": 1,
+ "created_at": "Thu Dec 31 19:56:45 +0800 2015",
+ "following": false,
+ "allow_all_act_msg": false,
+ "geo_enabled": true,
+ "verified": false,
+ "verified_type": -1,
+ "remark": "",
+ "insecurity": {
+ "sexual_content": false
+ },
+ "ptype": 0,
+ "allow_all_comment": true,
+ "avatar_large": "http://tvax2.sinaimg.cn/crop.0.0.996.996.180/006lEyHyly8fgjy9tr7t9j30ro0roq4v.jpg",
+ "avatar_hd": "http://tvax2.sinaimg.cn/crop.0.0.996.996.1024/006lEyHyly8fgjy9tr7t9j30ro0roq4v.jpg",
+ "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": 0,
+ "lang": "zh-cn",
+ "star": 0,
+ "mbtype": 0,
+ "mbrank": 0,
+ "block_word": 0,
+ "block_app": 0,
+ "credit_score": 80,
+ "user_ability": 0,
+ "urank": 4,
+ "story_read_state": -1,
+ "vclub_member": 0
+ },
+ "mid": "4139119804146474",
+ "idstr": "4139119804146474",
+ "status": {
+ "created_at": "Wed Aug 09 16:04:04 +0800 2017",
+ "id": 4138865289631559,
+ "idstr": "4138865289631559",
+ "mid": "4138865289631559",
+ "can_edit": false,
+ "text": "这是一条来自我们小卖部的广告。现在越来越多的小伙伴变成“低头族”,这次推荐的是攀高智能脊椎按摩理疗仪,采用低频电脉冲技术能模拟六种中医按摩手法。另外这个颈椎智能仪还能进行热灸。内置多颗磁石能消除肌肉疲劳,减缓颈椎疼痛。不论送礼还是自用,都是最好的选择!有兴趣的可以点这里:",
+ "textLength": 291,
+ "source_allowclick": 0,
+ "source_type": 1,
+ "source": "搜狗高速浏览器",
+ "favorited": false,
+ "truncated": false,
+ "in_reply_to_status_id": "",
+ "in_reply_to_user_id": "",
+ "in_reply_to_screen_name": "",
+ "pic_urls": [
+ {
+ "thumbnail_pic": "http://wx1.sinaimg.cn/thumbnail/41399761ly1fidiulztrxj20fd0aswek.jpg"
+ },
+ {
+ "thumbnail_pic": "http://wx1.sinaimg.cn/thumbnail/41399761ly1fidiunctm4j20fe0bmjrr.jpg"
+ },
+ {
+ "thumbnail_pic": "http://wx4.sinaimg.cn/thumbnail/41399761ly1fidiuoxrapg20ku0a9abp.gif"
+ },
+ {
+ "thumbnail_pic": "http://wx2.sinaimg.cn/thumbnail/41399761ly1fidius826kg20ku0e8n7q.gif"
+ },
+ {
+ "thumbnail_pic": "http://wx2.sinaimg.cn/thumbnail/41399761ly1fidiutaum9g20ku0dwaiq.gif"
+ },
+ {
+ "thumbnail_pic": "http://wx2.sinaimg.cn/thumbnail/41399761ly1fidiuuga2qg20h8083jsb.gif"
+ },
+ {
+ "thumbnail_pic": "http://wx4.sinaimg.cn/thumbnail/41399761ly1fidiuvyx90j20fe0a8dfv.jpg"
+ },
+ {
+ "thumbnail_pic": "http://wx4.sinaimg.cn/thumbnail/41399761ly1fidiv0i32yj20fe0a83yv.jpg"
+ },
+ {
+ "thumbnail_pic": "http://wx1.sinaimg.cn/thumbnail/41399761ly1fidiuy2wctj20fd0920su.jpg"
+ }
+ ],
+ "thumbnail_pic": "http://wx1.sinaimg.cn/thumbnail/41399761ly1fidiulztrxj20fd0aswek.jpg",
+ "bmiddle_pic": "http://wx1.sinaimg.cn/bmiddle/41399761ly1fidiulztrxj20fd0aswek.jpg",
+ "original_pic": "http://wx1.sinaimg.cn/large/41399761ly1fidiulztrxj20fd0aswek.jpg",
+ "geo": null,
+ "is_paid": false,
+ "mblog_vip_type": 0,
+ "user": {
+ "id": 1094293345,
+ "idstr": "1094293345",
+ "class": 1,
+ "screen_name": "科技美学",
+ "name": "科技美学",
+ "province": "11",
+ "city": "2",
+ "location": "北京 西城区",
+ "description": "每周六晚18点斗鱼“科技美学中国”直播间 那岩和你聊科技",
+ "url": "",
+ "profile_image_url": "http://tva4.sinaimg.cn/crop.0.0.1002.1002.50/41399761jw8eyfdeu75vtj20ru0rutae.jpg",
+ "cover_image": "http://ww1.sinaimg.cn/crop.0.0.980.300/41399761tw1egp6fg8jntj20r808c42c.jpg",
+ "cover_image_phone": "http://ww1.sinaimg.cn/crop.0.0.640.640.640/549d0121tw1egm1kjly3jj20hs0hsq4f.jpg",
+ "profile_url": "703723424",
+ "domain": "benlu2002",
+ "weihao": "703723424",
+ "gender": "m",
+ "followers_count": 863493,
+ "friends_count": 2394,
+ "pagefriends_count": 3,
+ "statuses_count": 5671,
+ "video_status_count": 0,
+ "favourites_count": 2371,
+ "created_at": "Fri Nov 06 21:55:56 +0800 2009",
+ "following": false,
+ "allow_all_act_msg": false,
+ "geo_enabled": false,
+ "verified": true,
+ "verified_type": 2,
+ "remark": "",
+ "insecurity": {
+ "sexual_content": false
+ },
+ "ptype": 0,
+ "allow_all_comment": true,
+ "avatar_large": "http://tva4.sinaimg.cn/crop.0.0.1002.1002.180/41399761jw8eyfdeu75vtj20ru0rutae.jpg",
+ "avatar_hd": "http://tva4.sinaimg.cn/crop.0.0.1002.1002.1024/41399761jw8eyfdeu75vtj20ru0rutae.jpg",
+ "verified_reason": "科技美学官方微博",
+ "verified_trade": "1022",
+ "verified_reason_url": "",
+ "verified_source": "",
+ "verified_source_url": "",
+ "verified_state": 0,
+ "verified_level": 3,
+ "verified_type_ext": 50,
+ "pay_remind": 0,
+ "pay_date": "20180323",
+ "has_service_tel": false,
+ "verified_reason_modified": "",
+ "verified_contact_name": "",
+ "verified_contact_email": "",
+ "verified_contact_mobile": "",
+ "follow_me": false,
+ "like": false,
+ "like_me": false,
+ "online_status": 0,
+ "bi_followers_count": 1199,
+ "lang": "zh-cn",
+ "star": 0,
+ "mbtype": 12,
+ "mbrank": 7,
+ "block_word": 1,
+ "block_app": 1,
+ "credit_score": 80,
+ "user_ability": 8651276,
+ "urank": 48,
+ "story_read_state": -1,
+ "vclub_member": 0
+ },
+ "reposts_count": 0,
+ "comments_count": 0,
+ "attitudes_count": 0,
+ "pending_approval_count": 0,
+ "isLongText": true,
+ "hide_flag": 0,
+ "mlevel": 0,
+ "visible": {
+ "type": 0,
+ "list_id": 0
+ },
+ "biz_feature": 0,
+ "hasActionTypeCard": 0,
+ "darwin_tags": [],
+ "hot_weibo_tags": [],
+ "text_tag_tips": [],
+ "mblogtype": 0,
+ "userType": 0,
+ "more_info_type": 0,
+ "positive_recom_flag": 0,
+ "content_auth": 0,
+ "gif_ids": "41399761ly1fidius826kg20ku0e8n7q|003uijZhjx07diYSOrvW010f11000lkY0k01|1022:23112859e4921f81f21a0104f2cd5929ad6d86,41399761ly1fidiuuga2qg20h8083jsb|002Y7PBxjx07diYSOsys010f110003tM0k01|1022:2311285aba17c087d2ceb9cdfc79e8a43769c4,41399761ly1fidiutaum9g20ku0dwaiq|004jKxg5jx07diYSOzjO010f11000dVt0k01|1022:231128ee8cd9600e4d333196b18ce97ae210ef,41399761ly1fidiuoxrapg20ku0a9abp|00227bR7jx07diYSOiFx010f110005N30k01|1022:231128aa6d108123adb597d38c85e9ed09d793",
+ "is_show_bulletin": 2,
+ "comment_manage_info": {
+ "comment_permission_type": -1,
+ "approval_comment_type": 0
+ }
+ }
+ },
+ {
+ "disable_reply": 0,
+ "created_at": "Thu Aug 10 08:52:44 +0800 2017",
+ "id": 4139119124368114,
+ "rootid": 4139119124368114,
+ "floor_number": 214,
+ "text": "这才是一个企业应该做的",
+ "user": {
+ "id": 5816766564,
+ "idstr": "5816766564",
+ "class": 1,
+ "screen_name": "光合F",
+ "name": "光合F",
+ "province": "15",
+ "city": "1000",
+ "location": "内蒙古",
+ "description": "",
+ "url": "",
+ "profile_image_url": "http://tvax2.sinaimg.cn/crop.0.0.996.996.50/006lEyHyly8fgjy9tr7t9j30ro0roq4v.jpg",
+ "cover_image_phone": "http://ww1.sinaimg.cn/crop.0.0.640.640.640/549d0121tw1egm1kjly3jj20hs0hsq4f.jpg",
+ "profile_url": "u/5816766564",
+ "domain": "",
+ "weihao": "",
+ "gender": "m",
+ "followers_count": 4,
+ "friends_count": 2,
+ "pagefriends_count": 0,
+ "statuses_count": 3,
+ "video_status_count": 0,
+ "favourites_count": 1,
+ "created_at": "Thu Dec 31 19:56:45 +0800 2015",
+ "following": false,
+ "allow_all_act_msg": false,
+ "geo_enabled": true,
+ "verified": false,
+ "verified_type": -1,
+ "remark": "",
+ "insecurity": {
+ "sexual_content": false
+ },
+ "ptype": 0,
+ "allow_all_comment": true,
+ "avatar_large": "http://tvax2.sinaimg.cn/crop.0.0.996.996.180/006lEyHyly8fgjy9tr7t9j30ro0roq4v.jpg",
+ "avatar_hd": "http://tvax2.sinaimg.cn/crop.0.0.996.996.1024/006lEyHyly8fgjy9tr7t9j30ro0roq4v.jpg",
+ "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": 0,
+ "lang": "zh-cn",
+ "star": 0,
+ "mbtype": 0,
+ "mbrank": 0,
+ "block_word": 0,
+ "block_app": 0,
+ "credit_score": 80,
+ "user_ability": 0,
+ "urank": 4,
+ "story_read_state": -1,
+ "vclub_member": 0
+ },
+ "mid": "4139119124368114",
+ "idstr": "4139119124368114",
+ "status": {
+ "created_at": "Wed Aug 09 15:11:52 +0800 2017",
+ "id": 4138852153569167,
+ "idstr": "4138852153569167",
+ "mid": "4138852153569167",
+ "can_edit": false,
+ "text": "灾难面前,绝不退缩!同事们回传的照片,华为人用生命保障通讯畅通,用行动履行社会责任!愿九寨平安!🙏",
+ "textLength": 100,
+ "source_allowclick": 1,
+ "source_type": 1,
+ "source": "HUAWEI P10",
+ "favorited": false,
+ "truncated": false,
+ "in_reply_to_status_id": "",
+ "in_reply_to_user_id": "",
+ "in_reply_to_screen_name": "",
+ "pic_urls": [
+ {
+ "thumbnail_pic": "http://wx2.sinaimg.cn/thumbnail/419dbd80gy1fidhdwf9arj20gg0ibdlk.jpg"
+ },
+ {
+ "thumbnail_pic": "http://wx1.sinaimg.cn/thumbnail/419dbd80gy1fidgvlbhnkj20hs0dcdgj.jpg"
+ },
+ {
+ "thumbnail_pic": "http://wx4.sinaimg.cn/thumbnail/419dbd80gy1fidgvlfpkrj20hs0dcdg8.jpg"
+ },
+ {
+ "thumbnail_pic": "http://wx4.sinaimg.cn/thumbnail/419dbd80gy1fidgvljaquj20hs0dcgm9.jpg"
+ },
+ {
+ "thumbnail_pic": "http://wx2.sinaimg.cn/thumbnail/419dbd80gy1fidgvllwi9j20hs0a20tj.jpg"
+ },
+ {
+ "thumbnail_pic": "http://wx4.sinaimg.cn/thumbnail/419dbd80gy1fidgvuuwoaj20hs0dcjs4.jpg"
+ },
+ {
+ "thumbnail_pic": "http://wx1.sinaimg.cn/thumbnail/419dbd80gy1fidgvl87q6j20hs0dcab1.jpg"
+ }
+ ],
+ "thumbnail_pic": "http://wx2.sinaimg.cn/thumbnail/419dbd80gy1fidhdwf9arj20gg0ibdlk.jpg",
+ "bmiddle_pic": "http://wx2.sinaimg.cn/bmiddle/419dbd80gy1fidhdwf9arj20gg0ibdlk.jpg",
+ "original_pic": "http://wx2.sinaimg.cn/large/419dbd80gy1fidhdwf9arj20gg0ibdlk.jpg",
+ "geo": null,
+ "is_paid": false,
+ "mblog_vip_type": 0,
+ "user": {
+ "id": 1100856704,
+ "idstr": "1100856704",
+ "class": 1,
+ "screen_name": "余承东",
+ "name": "余承东",
+ "province": "44",
+ "city": "1",
+ "location": "广东 广州",
+ "description": "定位决定地位,眼界决定境界",
+ "url": "",
+ "profile_image_url": "http://tva4.sinaimg.cn/crop.576.0.344.344.50/419dbd80gw1f35b9sr06pj20xc0m8434.jpg",
+ "cover_image": "http://wx3.sinaimg.cn/crop.0.0.920.300/419dbd80gy1fprrm3octaj20pk08cgrq.jpg",
+ "cover_image_phone": "http://wx2.sinaimg.cn/crop.0.0.640.640.640/419dbd80gy1fprrx90d0jj20u00u0100.jpg",
+ "profile_url": "hwrichardyu",
+ "domain": "hwrichardyu",
+ "weihao": "",
+ "gender": "m",
+ "followers_count": 6427574,
+ "friends_count": 276,
+ "pagefriends_count": 4,
+ "statuses_count": 6015,
+ "video_status_count": 0,
+ "favourites_count": 183,
+ "created_at": "Wed Jan 19 19:16:54 +0800 2011",
+ "following": false,
+ "allow_all_act_msg": false,
+ "geo_enabled": true,
+ "verified": true,
+ "verified_type": 0,
+ "remark": "",
+ "insecurity": {
+ "sexual_content": false
+ },
+ "ptype": 1,
+ "allow_all_comment": true,
+ "avatar_large": "http://tva4.sinaimg.cn/crop.576.0.344.344.180/419dbd80gw1f35b9sr06pj20xc0m8434.jpg",
+ "avatar_hd": "http://tva4.sinaimg.cn/crop.576.0.344.344.1024/419dbd80gw1f35b9sr06pj20xc0m8434.jpg",
+ "verified_reason": "华为技术有限公司高级副总裁余承东",
+ "verified_trade": "1189",
+ "verified_reason_url": "",
+ "verified_source": "",
+ "verified_source_url": "",
+ "verified_state": 0,
+ "verified_level": 3,
+ "verified_type_ext": 1,
+ "has_service_tel": false,
+ "verified_reason_modified": "",
+ "verified_contact_name": "",
+ "verified_contact_email": "",
+ "verified_contact_mobile": "",
+ "follow_me": false,
+ "like": false,
+ "like_me": false,
+ "online_status": 0,
+ "bi_followers_count": 196,
+ "lang": "zh-cn",
+ "star": 0,
+ "mbtype": 12,
+ "mbrank": 6,
+ "block_word": 1,
+ "block_app": 1,
+ "credit_score": 80,
+ "user_ability": 2097676,
+ "urank": 45,
+ "story_read_state": -1,
+ "vclub_member": 0
+ },
+ "annotations": [
+ {
+ "client_mblogid": "41b1c521-167c-4130-898b-7eaaf04b7950"
+ },
+ {
+ "mapi_request": true
+ }
+ ],
+ "picStatus": "0:1,1:1,2:1,3:1,4:1,5:1,6:1",
+ "reposts_count": 0,
+ "comments_count": 0,
+ "attitudes_count": 0,
+ "pending_approval_count": 0,
+ "isLongText": false,
+ "hide_flag": 0,
+ "mlevel": 0,
+ "visible": {
+ "type": 0,
+ "list_id": 0
+ },
+ "biz_feature": 4294967300,
+ "hasActionTypeCard": 0,
+ "darwin_tags": [],
+ "hot_weibo_tags": [],
+ "text_tag_tips": [],
+ "mblogtype": 0,
+ "userType": 0,
+ "extend_info": {
+ "weibo_camera": {
+ "c": [
+ "28676017_28676019_25598708_28676021"
+ ]
+ }
+ },
+ "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
+ }
+ }
+ },
+ {
+ "disable_reply": 0,
+ "created_at": "Mon Aug 07 19:51:53 +0800 2017",
+ "id": 4138197846136080,
+ "rootid": 4138197846136080,
+ "floor_number": 233,
+ "text": "他懂什么是UI么",
+ "user": {
+ "id": 5816766564,
+ "idstr": "5816766564",
+ "class": 1,
+ "screen_name": "光合F",
+ "name": "光合F",
+ "province": "15",
+ "city": "1000",
+ "location": "内蒙古",
+ "description": "",
+ "url": "",
+ "profile_image_url": "http://tvax2.sinaimg.cn/crop.0.0.996.996.50/006lEyHyly8fgjy9tr7t9j30ro0roq4v.jpg",
+ "cover_image_phone": "http://ww1.sinaimg.cn/crop.0.0.640.640.640/549d0121tw1egm1kjly3jj20hs0hsq4f.jpg",
+ "profile_url": "u/5816766564",
+ "domain": "",
+ "weihao": "",
+ "gender": "m",
+ "followers_count": 4,
+ "friends_count": 2,
+ "pagefriends_count": 0,
+ "statuses_count": 3,
+ "video_status_count": 0,
+ "favourites_count": 1,
+ "created_at": "Thu Dec 31 19:56:45 +0800 2015",
+ "following": false,
+ "allow_all_act_msg": false,
+ "geo_enabled": true,
+ "verified": false,
+ "verified_type": -1,
+ "remark": "",
+ "insecurity": {
+ "sexual_content": false
+ },
+ "ptype": 0,
+ "allow_all_comment": true,
+ "avatar_large": "http://tvax2.sinaimg.cn/crop.0.0.996.996.180/006lEyHyly8fgjy9tr7t9j30ro0roq4v.jpg",
+ "avatar_hd": "http://tvax2.sinaimg.cn/crop.0.0.996.996.1024/006lEyHyly8fgjy9tr7t9j30ro0roq4v.jpg",
+ "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": 0,
+ "lang": "zh-cn",
+ "star": 0,
+ "mbtype": 0,
+ "mbrank": 0,
+ "block_word": 0,
+ "block_app": 0,
+ "credit_score": 80,
+ "user_ability": 0,
+ "urank": 4,
+ "story_read_state": -1,
+ "vclub_member": 0
+ },
+ "mid": "4138197846136080",
+ "idstr": "4138197846136080",
+ "status": {
+ "created_at": "Mon Aug 07 15:34:36 +0800 2017",
+ "id": 4138133098887775,
+ "idstr": "4138133098887775",
+ "mid": "4138133098887775",
+ "can_edit": false,
+ "text": "日前,京东手机发起并主办了首届2017京东手机金机奖,联合网友和100家权威媒体分别选出“设计美学奖”、“UI设计奖”、“产品创新奖”共计15款机型。要是让你说一款你认为最美、设计最好的手机,你觉得是谁呢?",
+ "textLength": 195,
+ "source_allowclick": 0,
+ "source_type": 1,
+ "source": "搜狗高速浏览器",
+ "favorited": false,
+ "truncated": false,
+ "in_reply_to_status_id": "",
+ "in_reply_to_user_id": "",
+ "in_reply_to_screen_name": "",
+ "pic_urls": [
+ {
+ "thumbnail_pic": "http://wx2.sinaimg.cn/thumbnail/41399761ly1fib7477p78j20go1j747j.jpg"
+ },
+ {
+ "thumbnail_pic": "http://wx4.sinaimg.cn/thumbnail/41399761ly1fib748bojij20go1j3qbp.jpg"
+ },
+ {
+ "thumbnail_pic": "http://wx1.sinaimg.cn/thumbnail/41399761ly1fib749owhbj20go1j647d.jpg"
+ }
+ ],
+ "thumbnail_pic": "http://wx2.sinaimg.cn/thumbnail/41399761ly1fib7477p78j20go1j747j.jpg",
+ "bmiddle_pic": "http://wx2.sinaimg.cn/bmiddle/41399761ly1fib7477p78j20go1j747j.jpg",
+ "original_pic": "http://wx2.sinaimg.cn/large/41399761ly1fib7477p78j20go1j747j.jpg",
+ "geo": null,
+ "is_paid": false,
+ "mblog_vip_type": 0,
+ "user": {
+ "id": 1094293345,
+ "idstr": "1094293345",
+ "class": 1,
+ "screen_name": "科技美学",
+ "name": "科技美学",
+ "province": "11",
+ "city": "2",
+ "location": "北京 西城区",
+ "description": "每周六晚18点斗鱼“科技美学中国”直播间 那岩和你聊科技",
+ "url": "",
+ "profile_image_url": "http://tva4.sinaimg.cn/crop.0.0.1002.1002.50/41399761jw8eyfdeu75vtj20ru0rutae.jpg",
+ "cover_image": "http://ww1.sinaimg.cn/crop.0.0.980.300/41399761tw1egp6fg8jntj20r808c42c.jpg",
+ "cover_image_phone": "http://ww1.sinaimg.cn/crop.0.0.640.640.640/549d0121tw1egm1kjly3jj20hs0hsq4f.jpg",
+ "profile_url": "703723424",
+ "domain": "benlu2002",
+ "weihao": "703723424",
+ "gender": "m",
+ "followers_count": 863493,
+ "friends_count": 2394,
+ "pagefriends_count": 3,
+ "statuses_count": 5671,
+ "video_status_count": 0,
+ "favourites_count": 2371,
+ "created_at": "Fri Nov 06 21:55:56 +0800 2009",
+ "following": false,
+ "allow_all_act_msg": false,
+ "geo_enabled": false,
+ "verified": true,
+ "verified_type": 2,
+ "remark": "",
+ "insecurity": {
+ "sexual_content": false
+ },
+ "ptype": 0,
+ "allow_all_comment": true,
+ "avatar_large": "http://tva4.sinaimg.cn/crop.0.0.1002.1002.180/41399761jw8eyfdeu75vtj20ru0rutae.jpg",
+ "avatar_hd": "http://tva4.sinaimg.cn/crop.0.0.1002.1002.1024/41399761jw8eyfdeu75vtj20ru0rutae.jpg",
+ "verified_reason": "科技美学官方微博",
+ "verified_trade": "1022",
+ "verified_reason_url": "",
+ "verified_source": "",
+ "verified_source_url": "",
+ "verified_state": 0,
+ "verified_level": 3,
+ "verified_type_ext": 50,
+ "pay_remind": 0,
+ "pay_date": "20180323",
+ "has_service_tel": false,
+ "verified_reason_modified": "",
+ "verified_contact_name": "",
+ "verified_contact_email": "",
+ "verified_contact_mobile": "",
+ "follow_me": false,
+ "like": false,
+ "like_me": false,
+ "online_status": 0,
+ "bi_followers_count": 1199,
+ "lang": "zh-cn",
+ "star": 0,
+ "mbtype": 12,
+ "mbrank": 7,
+ "block_word": 1,
+ "block_app": 1,
+ "credit_score": 80,
+ "user_ability": 8651276,
+ "urank": 48,
+ "story_read_state": -1,
+ "vclub_member": 0
+ },
+ "reposts_count": 0,
+ "comments_count": 0,
+ "attitudes_count": 0,
+ "pending_approval_count": 0,
+ "isLongText": false,
+ "hide_flag": 0,
+ "mlevel": 0,
+ "visible": {
+ "type": 0,
+ "list_id": 0
+ },
+ "biz_feature": 0,
+ "hasActionTypeCard": 0,
+ "darwin_tags": [],
+ "hot_weibo_tags": [],
+ "text_tag_tips": [],
+ "mblogtype": 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
+ }
+ }
+ },
+ {
+ "disable_reply": 0,
+ "created_at": "Wed Aug 02 18:31:05 +0800 2017",
+ "id": 4136365572677274,
+ "rootid": 4136365572677274,
+ "floor_number": 243,
+ "text": "全屏幕 屏幕下指纹就已经很好了 为什么还要再加一个摄像头 难道摄像头越多拍照越好",
+ "user": {
+ "id": 5816766564,
+ "idstr": "5816766564",
+ "class": 1,
+ "screen_name": "光合F",
+ "name": "光合F",
+ "province": "15",
+ "city": "1000",
+ "location": "内蒙古",
+ "description": "",
+ "url": "",
+ "profile_image_url": "http://tvax2.sinaimg.cn/crop.0.0.996.996.50/006lEyHyly8fgjy9tr7t9j30ro0roq4v.jpg",
+ "cover_image_phone": "http://ww1.sinaimg.cn/crop.0.0.640.640.640/549d0121tw1egm1kjly3jj20hs0hsq4f.jpg",
+ "profile_url": "u/5816766564",
+ "domain": "",
+ "weihao": "",
+ "gender": "m",
+ "followers_count": 4,
+ "friends_count": 2,
+ "pagefriends_count": 0,
+ "statuses_count": 3,
+ "video_status_count": 0,
+ "favourites_count": 1,
+ "created_at": "Thu Dec 31 19:56:45 +0800 2015",
+ "following": false,
+ "allow_all_act_msg": false,
+ "geo_enabled": true,
+ "verified": false,
+ "verified_type": -1,
+ "remark": "",
+ "insecurity": {
+ "sexual_content": false
+ },
+ "ptype": 0,
+ "allow_all_comment": true,
+ "avatar_large": "http://tvax2.sinaimg.cn/crop.0.0.996.996.180/006lEyHyly8fgjy9tr7t9j30ro0roq4v.jpg",
+ "avatar_hd": "http://tvax2.sinaimg.cn/crop.0.0.996.996.1024/006lEyHyly8fgjy9tr7t9j30ro0roq4v.jpg",
+ "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": 0,
+ "lang": "zh-cn",
+ "star": 0,
+ "mbtype": 0,
+ "mbrank": 0,
+ "block_word": 0,
+ "block_app": 0,
+ "credit_score": 80,
+ "user_ability": 0,
+ "urank": 4,
+ "story_read_state": -1,
+ "vclub_member": 0
+ },
+ "mid": "4136365572677274",
+ "idstr": "4136365572677274",
+ "status": {
+ "created_at": "Wed Aug 02 11:54:57 +0800 2017",
+ "id": 4136265882656068,
+ "idstr": "4136265882656068",
+ "mid": "4136265882656068",
+ "can_edit": false,
+ "text": "【vivo全面屏新机Xplay7曝光】:一个劲爆消息,vivo全面屏新机要来了!Xplay7,内部代号X20,全面屏设计,前置双摄+后置三摄像头,首次搭载屏幕内指纹识别技术![色][色]vivo这是要一鸣惊人呀!",
+ "textLength": 180,
+ "source_allowclick": 1,
+ "source_type": 2,
+ "source": "",
+ "favorited": false,
+ "truncated": false,
+ "in_reply_to_status_id": "",
+ "in_reply_to_user_id": "",
+ "in_reply_to_screen_name": "",
+ "pic_urls": [
+ {
+ "thumbnail_pic": "http://wx3.sinaimg.cn/thumbnail/75b0b312gy1fi58oivr48j20go0m8q3d.jpg"
+ },
+ {
+ "thumbnail_pic": "http://wx1.sinaimg.cn/thumbnail/75b0b312gy1fi58odbio4j20zh0od1kx.jpg"
+ },
+ {
+ "thumbnail_pic": "http://wx2.sinaimg.cn/thumbnail/75b0b312gy1fi58ocp0gwj20qo0zkq5h.jpg"
+ },
+ {
+ "thumbnail_pic": "http://wx2.sinaimg.cn/thumbnail/75b0b312gy1fi58odlrnbj20zk0qoq5n.jpg"
+ }
+ ],
+ "thumbnail_pic": "http://wx3.sinaimg.cn/thumbnail/75b0b312gy1fi58oivr48j20go0m8q3d.jpg",
+ "bmiddle_pic": "http://wx3.sinaimg.cn/bmiddle/75b0b312gy1fi58oivr48j20go0m8q3d.jpg",
+ "original_pic": "http://wx3.sinaimg.cn/large/75b0b312gy1fi58oivr48j20go0m8q3d.jpg",
+ "geo": null,
+ "is_paid": false,
+ "mblog_vip_type": 0,
+ "user": {
+ "id": 1974514450,
+ "idstr": "1974514450",
+ "class": 1,
+ "screen_name": "一枚搞机的原子弹",
+ "name": "一枚搞机的原子弹",
+ "province": "44",
+ "city": "4",
+ "location": "广东 珠海",
+ "description": "手机测评、资讯达人。巨蟹座,爱充满设计感的手机。怀一颗敬畏欣赏之心,待每款用心之产品。I'm Joe the Great.",
+ "url": "",
+ "profile_image_url": "http://tva1.sinaimg.cn/crop.19.0.1203.1203.50/75b0b312jw8f92jzuuvlij20yi0xfacb.jpg",
+ "cover_image_phone": "http://ww1.sinaimg.cn/crop.0.0.640.640.640/549d0121tw1egm1kjly3jj20hs0hsq4f.jpg",
+ "profile_url": "273822119",
+ "domain": "",
+ "weihao": "273822119",
+ "gender": "m",
+ "followers_count": 500880,
+ "friends_count": 1552,
+ "pagefriends_count": 1,
+ "statuses_count": 4869,
+ "video_status_count": 0,
+ "favourites_count": 3,
+ "created_at": "Mon Mar 07 19:09:46 +0800 2011",
+ "following": false,
+ "allow_all_act_msg": false,
+ "geo_enabled": true,
+ "verified": true,
+ "verified_type": 0,
+ "remark": "",
+ "insecurity": {
+ "sexual_content": false
+ },
+ "ptype": 8,
+ "allow_all_comment": true,
+ "avatar_large": "http://tva1.sinaimg.cn/crop.19.0.1203.1203.180/75b0b312jw8f92jzuuvlij20yi0xfacb.jpg",
+ "avatar_hd": "http://tva1.sinaimg.cn/crop.19.0.1203.1203.1024/75b0b312jw8f92jzuuvlij20yi0xfacb.jpg",
+ "verified_reason": "高级中学教师 微博签约自媒体",
+ "verified_trade": "885",
+ "verified_reason_url": "",
+ "verified_source": "",
+ "verified_source_url": "",
+ "verified_state": 0,
+ "verified_level": 3,
+ "verified_type_ext": 1,
+ "has_service_tel": false,
+ "verified_reason_modified": "",
+ "verified_contact_name": "",
+ "verified_contact_email": "",
+ "verified_contact_mobile": "",
+ "follow_me": false,
+ "like": false,
+ "like_me": false,
+ "online_status": 0,
+ "bi_followers_count": 1536,
+ "lang": "zh-cn",
+ "star": 0,
+ "mbtype": 12,
+ "mbrank": 7,
+ "block_word": 1,
+ "block_app": 1,
+ "ability_tags": "英语口语,中小学",
+ "credit_score": 80,
+ "user_ability": 3418652,
+ "cardid": "star_005",
+ "urank": 48,
+ "story_read_state": -1,
+ "vclub_member": 0
+ },
+ "annotations": [
+ {
+ "client_mblogid": "941d9675-d140-49e4-9c63-0e44b216cbd2"
+ },
+ {
+ "mapi_request": true
+ }
+ ],
+ "picStatus": "0:1,1:1,2:1,3:1",
+ "reposts_count": 0,
+ "comments_count": 0,
+ "attitudes_count": 0,
+ "pending_approval_count": 0,
+ "isLongText": false,
+ "hide_flag": 0,
+ "mlevel": 0,
+ "visible": {
+ "type": 0,
+ "list_id": 0
+ },
+ "biz_feature": 4294967300,
+ "expire_time": 1501732804,
+ "hasActionTypeCard": 0,
+ "darwin_tags": [],
+ "hot_weibo_tags": [],
+ "text_tag_tips": [],
+ "mblogtype": 0,
+ "userType": 0,
+ "extend_info": {
+ "weibo_camera": {
+ "c": [
+ "27661201_31956002"
+ ]
+ },
+ "ad": {
+ "url_marked": "true"
+ }
+ },
+ "more_info_type": 0,
+ "cardid": "star_005",
+ "positive_recom_flag": 0,
+ "content_auth": 0,
+ "gif_ids": "",
+ "is_show_bulletin": 2,
+ "comment_manage_info": {
+ "comment_permission_type": -1,
+ "approval_comment_type": 0
+ }
+ }
+ },
+ {
+ "disable_reply": 0,
+ "created_at": "Wed Aug 02 18:26:13 +0800 2017",
+ "id": 4136364347840144,
+ "rootid": 4136364347840144,
+ "floor_number": 100,
+ "text": "做手机的真不容易 不管好不好都会被人骂",
+ "user": {
+ "id": 5816766564,
+ "idstr": "5816766564",
+ "class": 1,
+ "screen_name": "光合F",
+ "name": "光合F",
+ "province": "15",
+ "city": "1000",
+ "location": "内蒙古",
+ "description": "",
+ "url": "",
+ "profile_image_url": "http://tvax2.sinaimg.cn/crop.0.0.996.996.50/006lEyHyly8fgjy9tr7t9j30ro0roq4v.jpg",
+ "cover_image_phone": "http://ww1.sinaimg.cn/crop.0.0.640.640.640/549d0121tw1egm1kjly3jj20hs0hsq4f.jpg",
+ "profile_url": "u/5816766564",
+ "domain": "",
+ "weihao": "",
+ "gender": "m",
+ "followers_count": 4,
+ "friends_count": 2,
+ "pagefriends_count": 0,
+ "statuses_count": 3,
+ "video_status_count": 0,
+ "favourites_count": 1,
+ "created_at": "Thu Dec 31 19:56:45 +0800 2015",
+ "following": false,
+ "allow_all_act_msg": false,
+ "geo_enabled": true,
+ "verified": false,
+ "verified_type": -1,
+ "remark": "",
+ "insecurity": {
+ "sexual_content": false
+ },
+ "ptype": 0,
+ "allow_all_comment": true,
+ "avatar_large": "http://tvax2.sinaimg.cn/crop.0.0.996.996.180/006lEyHyly8fgjy9tr7t9j30ro0roq4v.jpg",
+ "avatar_hd": "http://tvax2.sinaimg.cn/crop.0.0.996.996.1024/006lEyHyly8fgjy9tr7t9j30ro0roq4v.jpg",
+ "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": 0,
+ "lang": "zh-cn",
+ "star": 0,
+ "mbtype": 0,
+ "mbrank": 0,
+ "block_word": 0,
+ "block_app": 0,
+ "credit_score": 80,
+ "user_ability": 0,
+ "urank": 4,
+ "story_read_state": -1,
+ "vclub_member": 0
+ },
+ "mid": "4136364347840144",
+ "idstr": "4136364347840144",
+ "status": {
+ "created_at": "Tue Aug 01 15:13:57 +0800 2017",
+ "id": 4135953578580037,
+ "idstr": "4135953578580037",
+ "mid": "4135953578580037",
+ "can_edit": false,
+ "text": "[鲜花]//@锤子科技营销帐号:这是锤子科技在贵州的第一家线下授权门店,也是我们的第 74 家线下门店。欢迎前往店内体验及购买坚果 Pro。",
+ "source_allowclick": 1,
+ "source_type": 1,
+ "source": "坚果手机 Pro",
+ "favorited": false,
+ "truncated": false,
+ "in_reply_to_status_id": "",
+ "in_reply_to_user_id": "",
+ "in_reply_to_screen_name": "",
+ "pic_urls": [],
+ "geo": null,
+ "is_paid": false,
+ "mblog_vip_type": 0,
+ "user": {
+ "id": 1640571365,
+ "idstr": "1640571365",
+ "class": 1,
+ "screen_name": "罗永浩",
+ "name": "罗永浩",
+ "province": "11",
+ "city": "1",
+ "location": "北京 东城区",
+ "description": "Smartisan,智能机时代的工匠",
+ "url": "http://www.t.tt",
+ "profile_image_url": "http://tvax1.sinaimg.cn/crop.0.0.1010.1010.50/61c921e5ly8fuhr3eywbnj20s20s2wgo.jpg",
+ "cover_image": "http://wx2.sinaimg.cn/crop.0.0.920.300/61c921e5ly1fughtl9m14j20pk08c0yj.jpg",
+ "cover_image_phone": "http://wx1.sinaimg.cn/crop.0.0.640.640.640/61c921e5ly1fughveoyygj20u00u048j.jpg",
+ "profile_url": "laoluoyonghao",
+ "domain": "laoluoyonghao",
+ "weihao": "",
+ "gender": "m",
+ "followers_count": 15178843,
+ "friends_count": 2470,
+ "pagefriends_count": 6,
+ "statuses_count": 31295,
+ "video_status_count": 0,
+ "favourites_count": 6080,
+ "created_at": "Fri Aug 28 16:35:10 +0800 2009",
+ "following": false,
+ "allow_all_act_msg": false,
+ "geo_enabled": true,
+ "verified": true,
+ "verified_type": 0,
+ "remark": "",
+ "insecurity": {
+ "sexual_content": false
+ },
+ "ptype": 3,
+ "allow_all_comment": true,
+ "avatar_large": "http://tvax1.sinaimg.cn/crop.0.0.1010.1010.180/61c921e5ly8fuhr3eywbnj20s20s2wgo.jpg",
+ "avatar_hd": "http://tvax1.sinaimg.cn/crop.0.0.1010.1010.1024/61c921e5ly8fuhr3eywbnj20s20s2wgo.jpg",
+ "verified_reason": "锤子科技 CEO",
+ "verified_trade": "1203",
+ "verified_reason_url": "",
+ "verified_source": "",
+ "verified_source_url": "",
+ "verified_state": 0,
+ "verified_level": 3,
+ "verified_type_ext": 1,
+ "has_service_tel": false,
+ "verified_reason_modified": "",
+ "verified_contact_name": "",
+ "verified_contact_email": "",
+ "verified_contact_mobile": "",
+ "follow_me": false,
+ "like": false,
+ "like_me": false,
+ "online_status": 0,
+ "bi_followers_count": 1933,
+ "lang": "zh-cn",
+ "star": 0,
+ "mbtype": 13,
+ "mbrank": 7,
+ "block_word": 0,
+ "block_app": 1,
+ "credit_score": 80,
+ "user_ability": 2100748,
+ "cardid": "vip_012",
+ "urank": 48,
+ "story_read_state": -1,
+ "vclub_member": 0
+ },
+ "pid": 4135929322823498,
+ "retweeted_status": {
+ "created_at": "Thu Jul 27 16:35:46 +0800 2017",
+ "id": 4134162225018081,
+ "idstr": "4134162225018081",
+ "mid": "4134162225018081",
+ "can_edit": false,
+ "text": "分享图片\n贵州第一家\"锤子\"线下体验店,贵阳九机网世纪城店,开业啦!\n你想购买smartisan手机吗?\n你还在为线上购买smartisan手机,抢不到发愁吗?\n你是锤子的忠实粉丝吗?\n你想来真实体验smartisan手机的快感吗?\n贵州的朋友们,不用烦恼,它(smartisan手机)来了,\n地址:贵阳市观山湖区北京西路20",
+ "textLength": 399,
+ "source_allowclick": 0,
+ "source_type": 1,
+ "source": "微博 weibo.com",
+ "favorited": false,
+ "truncated": false,
+ "in_reply_to_status_id": "",
+ "in_reply_to_user_id": "",
+ "in_reply_to_screen_name": "",
+ "pic_urls": [
+ {
+ "thumbnail_pic": "http://wx3.sinaimg.cn/thumbnail/006NWTb5gy1fhyj01maefj30qo0k0ta3.jpg"
+ },
+ {
+ "thumbnail_pic": "http://wx4.sinaimg.cn/thumbnail/006NWTb5gy1fhyj0dozfuj30zk0qodh9.jpg"
+ },
+ {
+ "thumbnail_pic": "http://wx2.sinaimg.cn/thumbnail/006NWTb5gy1fhyj16vsfcj30qo0zkwfj.jpg"
+ },
+ {
+ "thumbnail_pic": "http://wx4.sinaimg.cn/thumbnail/006NWTb5gy1fhyj1c46rej30qo0k0wfw.jpg"
+ },
+ {
+ "thumbnail_pic": "http://wx4.sinaimg.cn/thumbnail/006NWTb5gy1fhyj1hw8urj30qo0k0dhh.jpg"
+ },
+ {
+ "thumbnail_pic": "http://wx4.sinaimg.cn/thumbnail/006NWTb5gy1fhyj1mizkej30qo0zk75c.jpg"
+ },
+ {
+ "thumbnail_pic": "http://wx2.sinaimg.cn/thumbnail/006NWTb5gy1fhyj1qz8f7j30zk0qot9w.jpg"
+ },
+ {
+ "thumbnail_pic": "http://wx1.sinaimg.cn/thumbnail/006NWTb5gy1fhyj1syw1qj30zk0qodi3.jpg"
+ }
+ ],
+ "thumbnail_pic": "http://wx3.sinaimg.cn/thumbnail/006NWTb5gy1fhyj01maefj30qo0k0ta3.jpg",
+ "bmiddle_pic": "http://wx3.sinaimg.cn/bmiddle/006NWTb5gy1fhyj01maefj30qo0k0ta3.jpg",
+ "original_pic": "http://wx3.sinaimg.cn/large/006NWTb5gy1fhyj01maefj30qo0k0ta3.jpg",
+ "geo": null,
+ "is_paid": false,
+ "mblog_vip_type": 0,
+ "user": {
+ "id": 6234872587,
+ "idstr": "6234872587",
+ "class": 1,
+ "screen_name": "云南锤砧",
+ "name": "云南锤砧",
+ "province": "53",
+ "city": "1000",
+ "location": "云南",
+ "description": "我们不是为了输赢,我们就是认真!",
+ "url": "",
+ "profile_image_url": "http://tvax2.sinaimg.cn/crop.824.108.1137.1137.50/006NWTb5ly8ff9evhupvcj31kw16o180.jpg",
+ "cover_image_phone": "http://ww1.sinaimg.cn/crop.0.0.640.640.640/549d0121tw1egm1kjly3jj20hs0hsq4f.jpg",
+ "profile_url": "u/6234872587",
+ "domain": "",
+ "weihao": "",
+ "gender": "m",
+ "followers_count": 147,
+ "friends_count": 63,
+ "pagefriends_count": 0,
+ "statuses_count": 38,
+ "video_status_count": 0,
+ "favourites_count": 0,
+ "created_at": "Thu May 04 16:23:55 +0800 2017",
+ "following": false,
+ "allow_all_act_msg": false,
+ "geo_enabled": true,
+ "verified": false,
+ "verified_type": -1,
+ "remark": "",
+ "insecurity": {
+ "sexual_content": false
+ },
+ "ptype": 0,
+ "allow_all_comment": true,
+ "avatar_large": "http://tvax2.sinaimg.cn/crop.824.108.1137.1137.180/006NWTb5ly8ff9evhupvcj31kw16o180.jpg",
+ "avatar_hd": "http://tvax2.sinaimg.cn/crop.824.108.1137.1137.1024/006NWTb5ly8ff9evhupvcj31kw16o180.jpg",
+ "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": 3,
+ "lang": "zh-cn",
+ "star": 0,
+ "mbtype": 2,
+ "mbrank": 1,
+ "block_word": 0,
+ "block_app": 0,
+ "credit_score": 80,
+ "user_ability": 0,
+ "urank": 7,
+ "story_read_state": -1,
+ "vclub_member": 0
+ },
+ "reposts_count": 0,
+ "comments_count": 0,
+ "attitudes_count": 0,
+ "pending_approval_count": 0,
+ "isLongText": true,
+ "hide_flag": 0,
+ "mlevel": 0,
+ "visible": {
+ "type": 0,
+ "list_id": 0
+ },
+ "biz_feature": 0,
+ "hasActionTypeCard": 0,
+ "darwin_tags": [],
+ "hot_weibo_tags": [],
+ "text_tag_tips": [],
+ "mblogtype": 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
+ }
+ },
+ "annotations": [
+ {
+ "client_mblogid": "f8eb5ae1-2dbb-4b99-b088-bc766b619400"
+ },
+ {
+ "mapi_request": true
+ }
+ ],
+ "reposts_count": 0,
+ "comments_count": 0,
+ "attitudes_count": 0,
+ "pending_approval_count": 0,
+ "isLongText": false,
+ "hide_flag": 0,
+ "mlevel": 0,
+ "visible": {
+ "type": 0,
+ "list_id": 0
+ },
+ "biz_feature": 0,
+ "hasActionTypeCard": 0,
+ "darwin_tags": [],
+ "hot_weibo_tags": [],
+ "text_tag_tips": [],
+ "mblogtype": 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
+ }
+ }
+ },
+ {
+ "disable_reply": 0,
+ "created_at": "Fri Jul 28 16:48:35 +0800 2017",
+ "id": 4134527838943632,
+ "rootid": 4134527838943632,
+ "floor_number": 182,
+ "text": "这让我以后去重庆上学的怎么办😱",
+ "user": {
+ "id": 5816766564,
+ "idstr": "5816766564",
+ "class": 1,
+ "screen_name": "光合F",
+ "name": "光合F",
+ "province": "15",
+ "city": "1000",
+ "location": "内蒙古",
+ "description": "",
+ "url": "",
+ "profile_image_url": "http://tvax2.sinaimg.cn/crop.0.0.996.996.50/006lEyHyly8fgjy9tr7t9j30ro0roq4v.jpg",
+ "cover_image_phone": "http://ww1.sinaimg.cn/crop.0.0.640.640.640/549d0121tw1egm1kjly3jj20hs0hsq4f.jpg",
+ "profile_url": "u/5816766564",
+ "domain": "",
+ "weihao": "",
+ "gender": "m",
+ "followers_count": 4,
+ "friends_count": 2,
+ "pagefriends_count": 0,
+ "statuses_count": 3,
+ "video_status_count": 0,
+ "favourites_count": 1,
+ "created_at": "Thu Dec 31 19:56:45 +0800 2015",
+ "following": false,
+ "allow_all_act_msg": false,
+ "geo_enabled": true,
+ "verified": false,
+ "verified_type": -1,
+ "remark": "",
+ "insecurity": {
+ "sexual_content": false
+ },
+ "ptype": 0,
+ "allow_all_comment": true,
+ "avatar_large": "http://tvax2.sinaimg.cn/crop.0.0.996.996.180/006lEyHyly8fgjy9tr7t9j30ro0roq4v.jpg",
+ "avatar_hd": "http://tvax2.sinaimg.cn/crop.0.0.996.996.1024/006lEyHyly8fgjy9tr7t9j30ro0roq4v.jpg",
+ "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": 0,
+ "lang": "zh-cn",
+ "star": 0,
+ "mbtype": 0,
+ "mbrank": 0,
+ "block_word": 0,
+ "block_app": 0,
+ "credit_score": 80,
+ "user_ability": 0,
+ "urank": 4,
+ "story_read_state": -1,
+ "vclub_member": 0
+ },
+ "mid": "4134527838943632",
+ "idstr": "4134527838943632",
+ "status": {
+ "created_at": "Fri Jul 28 15:00:03 +0800 2017",
+ "id": 4134500524936048,
+ "idstr": "4134500524936048",
+ "mid": "4134500524936048",
+ "can_edit": false,
+ "text": "【在40℃的重庆开敞篷车是怎样的感受?】日前,一个视频道出了真相~\n敞篷车主:兄弟,开过敞篷没得? \n普通车主:你开个敞篷不得了了?\n敞篷车主:不是,车是我借的,不会关这个,给我热遭了!http://t.cn/R9UhD08",
+ "textLength": 198,
+ "source_allowclick": 0,
+ "source_type": 1,
+ "source": "微博 weibo.com",
+ "favorited": false,
+ "truncated": false,
+ "in_reply_to_status_id": "",
+ "in_reply_to_user_id": "",
+ "in_reply_to_screen_name": "",
+ "pic_urls": [],
+ "geo": null,
+ "is_paid": false,
+ "mblog_vip_type": 0,
+ "user": {
+ "id": 1642088277,
+ "idstr": "1642088277",
+ "class": 1,
+ "screen_name": "财经网",
+ "name": "财经网",
+ "province": "11",
+ "city": "5",
+ "location": "北京 朝阳区",
+ "description": "商务合作: 廖先生 QQ :3196598336 邮箱:kailiao@caijing.com.cn",
+ "url": "http://www.caijing.com.cn/",
+ "profile_image_url": "http://tva4.sinaimg.cn/crop.0.0.360.360.50/61e04755jw8ev8618io3bj20a00a00t9.jpg",
+ "cover_image_phone": "http://ww1.sinaimg.cn/crop.0.0.640.640.640/549d0121tw1egm1kjly3jj20hs0hsq4f.jpg",
+ "profile_url": "caijing",
+ "domain": "caijing",
+ "weihao": "",
+ "gender": "m",
+ "followers_count": 26523042,
+ "friends_count": 909,
+ "pagefriends_count": 62,
+ "statuses_count": 143338,
+ "video_status_count": 0,
+ "favourites_count": 662,
+ "created_at": "Fri Aug 28 16:35:47 +0800 2009",
+ "following": false,
+ "allow_all_act_msg": false,
+ "geo_enabled": false,
+ "verified": true,
+ "verified_type": 3,
+ "remark": "",
+ "insecurity": {
+ "sexual_content": false
+ },
+ "ptype": 0,
+ "allow_all_comment": true,
+ "avatar_large": "http://tva4.sinaimg.cn/crop.0.0.360.360.180/61e04755jw8ev8618io3bj20a00a00t9.jpg",
+ "avatar_hd": "http://tva4.sinaimg.cn/crop.0.0.360.360.1024/61e04755jw8ev8618io3bj20a00a00t9.jpg",
+ "verified_reason": "财经网官方微博",
+ "verified_trade": "",
+ "verified_reason_url": "",
+ "verified_source": "",
+ "verified_source_url": "",
+ "verified_state": 0,
+ "verified_level": 3,
+ "verified_type_ext": 0,
+ "has_service_tel": false,
+ "verified_reason_modified": "",
+ "verified_contact_name": "商务合作",
+ "verified_contact_email": "kailiao@caijing.com.cn",
+ "verified_contact_mobile": "",
+ "follow_me": false,
+ "like": false,
+ "like_me": false,
+ "online_status": 0,
+ "bi_followers_count": 553,
+ "lang": "zh-cn",
+ "star": 0,
+ "mbtype": 12,
+ "mbrank": 6,
+ "block_word": 0,
+ "block_app": 1,
+ "dianping": "stock",
+ "credit_score": 80,
+ "user_ability": 330500,
+ "cardid": "star_583",
+ "urank": 48,
+ "story_read_state": -1,
+ "vclub_member": 0
+ },
+ "reposts_count": 0,
+ "comments_count": 0,
+ "attitudes_count": 0,
+ "pending_approval_count": 0,
+ "isLongText": false,
+ "hide_flag": 0,
+ "mlevel": 0,
+ "visible": {
+ "type": 0,
+ "list_id": 0
+ },
+ "biz_ids": [
+ 230442
+ ],
+ "biz_feature": 0,
+ "hasActionTypeCard": 0,
+ "darwin_tags": [],
+ "hot_weibo_tags": [],
+ "text_tag_tips": [],
+ "mblogtype": 0,
+ "userType": 0,
+ "more_info_type": 0,
+ "cardid": "star_005",
+ "positive_recom_flag": 0,
+ "content_auth": 0,
+ "gif_ids": "",
+ "is_show_bulletin": 2,
+ "comment_manage_info": {
+ "comment_permission_type": -1,
+ "approval_comment_type": 0
+ }
+ }
+ },
+ {
+ "disable_reply": 0,
+ "created_at": "Wed Jul 26 15:41:45 +0800 2017",
+ "id": 4133786243014807,
+ "rootid": 4133786243014807,
+ "floor_number": 87,
+ "text": "以前就有小孩模仿灰太狼煮羊的情节",
+ "user": {
+ "id": 5816766564,
+ "idstr": "5816766564",
+ "class": 1,
+ "screen_name": "光合F",
+ "name": "光合F",
+ "province": "15",
+ "city": "1000",
+ "location": "内蒙古",
+ "description": "",
+ "url": "",
+ "profile_image_url": "http://tvax2.sinaimg.cn/crop.0.0.996.996.50/006lEyHyly8fgjy9tr7t9j30ro0roq4v.jpg",
+ "cover_image_phone": "http://ww1.sinaimg.cn/crop.0.0.640.640.640/549d0121tw1egm1kjly3jj20hs0hsq4f.jpg",
+ "profile_url": "u/5816766564",
+ "domain": "",
+ "weihao": "",
+ "gender": "m",
+ "followers_count": 4,
+ "friends_count": 2,
+ "pagefriends_count": 0,
+ "statuses_count": 3,
+ "video_status_count": 0,
+ "favourites_count": 1,
+ "created_at": "Thu Dec 31 19:56:45 +0800 2015",
+ "following": false,
+ "allow_all_act_msg": false,
+ "geo_enabled": true,
+ "verified": false,
+ "verified_type": -1,
+ "remark": "",
+ "insecurity": {
+ "sexual_content": false
+ },
+ "ptype": 0,
+ "allow_all_comment": true,
+ "avatar_large": "http://tvax2.sinaimg.cn/crop.0.0.996.996.180/006lEyHyly8fgjy9tr7t9j30ro0roq4v.jpg",
+ "avatar_hd": "http://tvax2.sinaimg.cn/crop.0.0.996.996.1024/006lEyHyly8fgjy9tr7t9j30ro0roq4v.jpg",
+ "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": 0,
+ "lang": "zh-cn",
+ "star": 0,
+ "mbtype": 0,
+ "mbrank": 0,
+ "block_word": 0,
+ "block_app": 0,
+ "credit_score": 80,
+ "user_ability": 0,
+ "urank": 4,
+ "story_read_state": -1,
+ "vclub_member": 0
+ },
+ "mid": "4133786243014807",
+ "idstr": "4133786243014807",
+ "status": {
+ "created_at": "Wed Jul 26 10:42:03 +0800 2017",
+ "id": 4133710821362978,
+ "idstr": "4133710821362978",
+ "mid": "4133710821362978",
+ "can_edit": false,
+ "text": "【双胞胎模仿熊出没 哥哥用打火机将弟弟烧成重伤[衰]】日前,重庆兄弟俩模仿《熊出没》中,“熊大发现光头强诡计后掀火炉,火花溅到光头强身上”的情节,用打火机互相给对方衣服烫洞,不料弟弟的衣服燃烧起来,大面积烧伤。暑期在家,家长可要看好孩子!http://t.cn/R9hBOFS @看看新闻KNEWS ",
+ "textLength": 278,
+ "source_allowclick": 0,
+ "source_type": 1,
+ "source": "微博 weibo.com",
+ "favorited": false,
+ "truncated": false,
+ "in_reply_to_status_id": "",
+ "in_reply_to_user_id": "",
+ "in_reply_to_screen_name": "",
+ "pic_urls": [],
+ "geo": null,
+ "is_paid": false,
+ "mblog_vip_type": 0,
+ "user": {
+ "id": 1663072851,
+ "idstr": "1663072851",
+ "class": 1,
+ "screen_name": "中国日报",
+ "name": "中国日报",
+ "province": "11",
+ "city": "1000",
+ "location": "北京",
+ "description": "CHINA DAILY《中国日报》在新时代,与你一起记录中国,点评世界。",
+ "url": "http://www.chinadaily.com.cn",
+ "profile_image_url": "http://tva1.sinaimg.cn/crop.0.0.180.180.50/63207a53jw8f4tpyeyqouj2050050glo.jpg",
+ "cover_image": "http://ww1.sinaimg.cn/crop.0.0.920.300/63207a53jw1f4tpw3s57bj20pk08c40y.jpg",
+ "cover_image_phone": "http://ww4.sinaimg.cn/crop.0.0.640.640.640/63207a53jw1f4tqhwywb7j20hs0hsacb.jpg;http://ww1.sinaimg.cn/crop.0.0.640.640.640/63207a53jw1f4tqh05r0zj20hs0hsacb.jpg;http://ww3.sinaimg.cn/crop.0.0.640.640.640/63207a53jw1f4dg0ilctlj20u00u0aej.jpg",
+ "profile_url": "chinadailywebsite",
+ "domain": "chinadailywebsite",
"weihao": "",
"gender": "m",
- "followers_count": 60881286,
- "friends_count": 3027,
- "pagefriends_count": 2694,
- "statuses_count": 89351,
+ "followers_count": 35884421,
+ "friends_count": 865,
+ "pagefriends_count": 399,
+ "statuses_count": 92238,
"video_status_count": 0,
- "favourites_count": 1,
- "created_at": "Sun Jul 22 02:28:35 +0800 2012",
+ "favourites_count": 672,
+ "created_at": "Mon Nov 23 14:27:48 +0800 2009",
"following": false,
"allow_all_act_msg": false,
- "geo_enabled": false,
+ "geo_enabled": true,
"verified": true,
"verified_type": 3,
"remark": "",
@@ -1309,26 +3932,26 @@
},
"ptype": 0,
"allow_all_comment": true,
- "avatar_large": "http://tva1.sinaimg.cn/crop.0.3.1018.1018.180/a716fd45gw1ev7q2k8japj20sg0sg779.jpg",
- "avatar_hd": "http://tva1.sinaimg.cn/crop.0.3.1018.1018.1024/a716fd45gw1ev7q2k8japj20sg0sg779.jpg",
- "verified_reason": "《人民日报》法人微博",
+ "avatar_large": "http://tva1.sinaimg.cn/crop.0.0.180.180.180/63207a53jw8f4tpyeyqouj2050050glo.jpg",
+ "avatar_hd": "http://tva1.sinaimg.cn/crop.0.0.180.180.1024/63207a53jw8f4tpyeyqouj2050050glo.jpg",
+ "verified_reason": "China Daily 中国日报官方微博",
"verified_trade": "",
"verified_reason_url": "",
"verified_source": "",
"verified_source_url": "",
- "verified_state": 2,
+ "verified_state": 0,
"verified_level": 3,
"verified_type_ext": 0,
"has_service_tel": false,
- "verified_reason_modified": "辽宁科技大学官方微博,教育官微联盟成员",
- "verified_contact_name": "",
+ "verified_reason_modified": "China Daily 中国日报官方微博",
+ "verified_contact_name": "CHINADAILY",
"verified_contact_email": "",
- "verified_contact_mobile": "",
+ "verified_contact_mobile": "010-64995000",
"follow_me": false,
"like": false,
"like_me": false,
"online_status": 0,
- "bi_followers_count": 305,
+ "bi_followers_count": 197,
"lang": "zh-cn",
"star": 0,
"mbtype": 12,
@@ -1336,7 +3959,7 @@
"block_word": 0,
"block_app": 1,
"credit_score": 80,
- "user_ability": 10814212,
+ "user_ability": 11862788,
"cardid": "star_583",
"urank": 48,
"story_read_state": -1,
@@ -1346,13 +3969,16 @@
"comments_count": 0,
"attitudes_count": 0,
"pending_approval_count": 0,
- "isLongText": true,
+ "isLongText": false,
"hide_flag": 0,
"mlevel": 0,
"visible": {
"type": 0,
"list_id": 0
},
+ "biz_ids": [
+ 230442
+ ],
"biz_feature": 0,
"hasActionTypeCard": 0,
"darwin_tags": [],
@@ -1361,106 +3987,95 @@
"mblogtype": 0,
"userType": 0,
"more_info_type": 0,
- "cardid": "star_583",
"positive_recom_flag": 0,
"content_auth": 0,
"gif_ids": "",
"is_show_bulletin": 2,
"comment_manage_info": {
"comment_permission_type": -1,
- "approval_comment_type": 1
+ "approval_comment_type": 0
}
}
},
{
- "created_at": "Wed Aug 08 20:10:53 +0800 2018",
- "id": 4270836586457315,
- "rootid": 4270836586457315,
- "floor_number": 15,
- "text": "可以的,老铁",
"disable_reply": 0,
+ "created_at": "Tue Jul 25 23:57:16 +0800 2017",
+ "id": 4133548556067210,
+ "rootid": 4133548556067210,
+ "floor_number": 174,
+ "text": "毫无悬念pro7",
"user": {
- "id": 6205472912,
- "idstr": "6205472912",
+ "id": 5816766564,
+ "idstr": "5816766564",
"class": 1,
- "screen_name": "土木四班彭某某",
- "name": "土木四班彭某某",
- "province": "42",
+ "screen_name": "光合F",
+ "name": "光合F",
+ "province": "15",
"city": "1000",
- "location": "湖北",
+ "location": "内蒙古",
"description": "",
"url": "",
- "profile_image_url": "http://tvax1.sinaimg.cn/crop.0.0.996.996.50/006LXwYMly8ftas00r1quj30ro0rojss.jpg",
- "cover_image_phone": "http://ww3.sinaimg.cn/crop.0.0.640.640.640/638f41a8jw1exw2iiqsk8j20hs0hsahi.jpg;http://wx1.sinaimg.cn/crop.0.0.640.640.640/006LXwYMly1ft98jrk37mj30u00u00xm.jpg",
- "profile_url": "u/6205472912",
+ "profile_image_url": "http://tvax2.sinaimg.cn/crop.0.0.996.996.50/006lEyHyly8fgjy9tr7t9j30ro0roq4v.jpg",
+ "cover_image_phone": "http://ww1.sinaimg.cn/crop.0.0.640.640.640/549d0121tw1egm1kjly3jj20hs0hsq4f.jpg",
+ "profile_url": "u/5816766564",
"domain": "",
"weihao": "",
- "gender": "f",
- "followers_count": 282,
- "friends_count": 280,
- "pagefriends_count": 10,
- "statuses_count": 328,
+ "gender": "m",
+ "followers_count": 4,
+ "friends_count": 2,
+ "pagefriends_count": 0,
+ "statuses_count": 3,
"video_status_count": 0,
- "favourites_count": 2,
- "created_at": "Sat Apr 08 18:39:50 +0800 2017",
+ "favourites_count": 1,
+ "created_at": "Thu Dec 31 19:56:45 +0800 2015",
"following": false,
"allow_all_act_msg": false,
"geo_enabled": true,
- "verified": true,
- "verified_type": 0,
+ "verified": false,
+ "verified_type": -1,
"remark": "",
"insecurity": {
"sexual_content": false
},
"ptype": 0,
"allow_all_comment": true,
- "avatar_large": "http://tvax1.sinaimg.cn/crop.0.0.996.996.180/006LXwYMly8ftas00r1quj30ro0rojss.jpg",
- "avatar_hd": "http://tvax1.sinaimg.cn/crop.0.0.996.996.1024/006LXwYMly8ftas00r1quj30ro0rojss.jpg",
- "verified_reason": "娱乐博主",
+ "avatar_large": "http://tvax2.sinaimg.cn/crop.0.0.996.996.180/006lEyHyly8fgjy9tr7t9j30ro0roq4v.jpg",
+ "avatar_hd": "http://tvax2.sinaimg.cn/crop.0.0.996.996.1024/006lEyHyly8fgjy9tr7t9j30ro0roq4v.jpg",
+ "verified_reason": "",
"verified_trade": "",
"verified_reason_url": "",
"verified_source": "",
"verified_source_url": "",
- "verified_state": 0,
- "verified_level": 3,
- "verified_type_ext": 0,
- "has_service_tel": false,
- "verified_reason_modified": "",
- "verified_contact_name": "",
- "verified_contact_email": "",
- "verified_contact_mobile": "",
"follow_me": false,
"like": false,
"like_me": false,
"online_status": 0,
- "bi_followers_count": 107,
+ "bi_followers_count": 0,
"lang": "zh-cn",
"star": 0,
- "mbtype": 11,
- "mbrank": 1,
+ "mbtype": 0,
+ "mbrank": 0,
"block_word": 0,
- "block_app": 1,
+ "block_app": 0,
"credit_score": 80,
- "user_ability": 35651584,
- "cardid": "star_058",
- "avatargj_id": "gj_vip_401",
- "urank": 16,
+ "user_ability": 0,
+ "urank": 4,
"story_read_state": -1,
"vclub_member": 0
},
- "mid": "4270836586457315",
- "idstr": "4270836586457315",
+ "mid": "4133548556067210",
+ "idstr": "4133548556067210",
"status": {
- "created_at": "Wed Aug 08 20:09:51 +0800 2018",
- "id": 4270836326031924,
- "idstr": "4270836326031924",
- "mid": "4270836326031924",
+ "created_at": "Tue Jul 25 09:11:41 +0800 2017",
+ "id": 4133325691812042,
+ "idstr": "4133325691812042",
+ "mid": "4133325691812042",
"can_edit": false,
- "text": "【商务部新闻发言人就中方对160亿美元自美进口产品采取反制措施发表谈话】美方决定自8月23日起对160亿美元中国输美产品加征25%的关税,又一次将国内法凌驾于国际法之上,是十分无理的做法。中方为维护自身正当权益和多边贸易体制,不得不做出必要反制,决定对160亿美元自美进口产品加征25%的关税,并与",
- "textLength": 302,
+ "text": "小米 魅族二选一你更期待谁 | 资讯100秒\n腾讯视频地址:http://t.cn/R9PuKUl",
+ "textLength": 71,
"source_allowclick": 0,
"source_type": 1,
- "source": "微博 weibo.com",
+ "source": "搜狗高速浏览器",
"favorited": false,
"truncated": false,
"in_reply_to_status_id": "",
@@ -1468,63 +4083,65 @@
"in_reply_to_screen_name": "",
"pic_urls": [
{
- "thumbnail_pic": "http://wx3.sinaimg.cn/thumbnail/a716fd45ly1fu2jvzgsy3j20c80c8tdp.jpg"
+ "thumbnail_pic": "http://wx4.sinaimg.cn/thumbnail/41399761ly1fhvuzky0ckj20jecmtkjo.jpg"
}
],
- "thumbnail_pic": "http://wx3.sinaimg.cn/thumbnail/a716fd45ly1fu2jvzgsy3j20c80c8tdp.jpg",
- "bmiddle_pic": "http://wx3.sinaimg.cn/bmiddle/a716fd45ly1fu2jvzgsy3j20c80c8tdp.jpg",
- "original_pic": "http://wx3.sinaimg.cn/large/a716fd45ly1fu2jvzgsy3j20c80c8tdp.jpg",
+ "thumbnail_pic": "http://wx4.sinaimg.cn/thumbnail/41399761ly1fhvuzky0ckj20jecmtkjo.jpg",
+ "bmiddle_pic": "http://wx4.sinaimg.cn/bmiddle/41399761ly1fhvuzky0ckj20jecmtkjo.jpg",
+ "original_pic": "http://wx4.sinaimg.cn/large/41399761ly1fhvuzky0ckj20jecmtkjo.jpg",
"geo": null,
"is_paid": false,
"mblog_vip_type": 0,
"user": {
- "id": 2803301701,
- "idstr": "2803301701",
+ "id": 1094293345,
+ "idstr": "1094293345",
"class": 1,
- "screen_name": "人民日报",
- "name": "人民日报",
+ "screen_name": "科技美学",
+ "name": "科技美学",
"province": "11",
- "city": "1000",
- "location": "北京",
- "description": "人民日报法人微博。参与、沟通、记录时代。",
+ "city": "2",
+ "location": "北京 西城区",
+ "description": "每周六晚18点斗鱼“科技美学中国”直播间 那岩和你聊科技",
"url": "",
- "profile_image_url": "http://tva1.sinaimg.cn/crop.0.3.1018.1018.50/a716fd45gw1ev7q2k8japj20sg0sg779.jpg",
- "cover_image": "http://wx4.sinaimg.cn/crop.0.0.920.300/a716fd45ly1fpjoldh9kaj20pk08cal8.jpg",
- "cover_image_phone": "http://wx1.sinaimg.cn/crop.0.0.640.640.640/a716fd45ly1fpjoivacakj20yi0yiwkb.jpg;http://wx2.sinaimg.cn/crop.0.0.640.640.640/a716fd45ly1foyq0ha1vwj20e80e8wf7.jpg",
- "profile_url": "rmrb",
- "domain": "rmrb",
- "weihao": "",
+ "profile_image_url": "http://tva4.sinaimg.cn/crop.0.0.1002.1002.50/41399761jw8eyfdeu75vtj20ru0rutae.jpg",
+ "cover_image": "http://ww1.sinaimg.cn/crop.0.0.980.300/41399761tw1egp6fg8jntj20r808c42c.jpg",
+ "cover_image_phone": "http://ww1.sinaimg.cn/crop.0.0.640.640.640/549d0121tw1egm1kjly3jj20hs0hsq4f.jpg",
+ "profile_url": "703723424",
+ "domain": "benlu2002",
+ "weihao": "703723424",
"gender": "m",
- "followers_count": 60881286,
- "friends_count": 3027,
- "pagefriends_count": 2694,
- "statuses_count": 89351,
+ "followers_count": 863493,
+ "friends_count": 2394,
+ "pagefriends_count": 3,
+ "statuses_count": 5671,
"video_status_count": 0,
- "favourites_count": 1,
- "created_at": "Sun Jul 22 02:28:35 +0800 2012",
+ "favourites_count": 2371,
+ "created_at": "Fri Nov 06 21:55:56 +0800 2009",
"following": false,
"allow_all_act_msg": false,
"geo_enabled": false,
"verified": true,
- "verified_type": 3,
+ "verified_type": 2,
"remark": "",
"insecurity": {
"sexual_content": false
},
"ptype": 0,
"allow_all_comment": true,
- "avatar_large": "http://tva1.sinaimg.cn/crop.0.3.1018.1018.180/a716fd45gw1ev7q2k8japj20sg0sg779.jpg",
- "avatar_hd": "http://tva1.sinaimg.cn/crop.0.3.1018.1018.1024/a716fd45gw1ev7q2k8japj20sg0sg779.jpg",
- "verified_reason": "《人民日报》法人微博",
- "verified_trade": "",
+ "avatar_large": "http://tva4.sinaimg.cn/crop.0.0.1002.1002.180/41399761jw8eyfdeu75vtj20ru0rutae.jpg",
+ "avatar_hd": "http://tva4.sinaimg.cn/crop.0.0.1002.1002.1024/41399761jw8eyfdeu75vtj20ru0rutae.jpg",
+ "verified_reason": "科技美学官方微博",
+ "verified_trade": "1022",
"verified_reason_url": "",
"verified_source": "",
"verified_source_url": "",
- "verified_state": 2,
+ "verified_state": 0,
"verified_level": 3,
- "verified_type_ext": 0,
+ "verified_type_ext": 50,
+ "pay_remind": 0,
+ "pay_date": "20180323",
"has_service_tel": false,
- "verified_reason_modified": "辽宁科技大学官方微博,教育官微联盟成员",
+ "verified_reason_modified": "",
"verified_contact_name": "",
"verified_contact_email": "",
"verified_contact_mobile": "",
@@ -1532,16 +4149,15 @@
"like": false,
"like_me": false,
"online_status": 0,
- "bi_followers_count": 305,
+ "bi_followers_count": 1199,
"lang": "zh-cn",
"star": 0,
"mbtype": 12,
- "mbrank": 6,
- "block_word": 0,
+ "mbrank": 7,
+ "block_word": 1,
"block_app": 1,
"credit_score": 80,
- "user_ability": 10814212,
- "cardid": "star_583",
+ "user_ability": 8651276,
"urank": 48,
"story_read_state": -1,
"vclub_member": 0
@@ -1550,13 +4166,16 @@
"comments_count": 0,
"attitudes_count": 0,
"pending_approval_count": 0,
- "isLongText": true,
+ "isLongText": false,
"hide_flag": 0,
"mlevel": 0,
"visible": {
"type": 0,
"list_id": 0
},
+ "biz_ids": [
+ 231268
+ ],
"biz_feature": 0,
"hasActionTypeCard": 0,
"darwin_tags": [],
@@ -1565,48 +4184,47 @@
"mblogtype": 0,
"userType": 0,
"more_info_type": 0,
- "cardid": "star_583",
"positive_recom_flag": 0,
"content_auth": 0,
"gif_ids": "",
"is_show_bulletin": 2,
"comment_manage_info": {
"comment_permission_type": -1,
- "approval_comment_type": 1
+ "approval_comment_type": 0
}
}
},
{
- "created_at": "Wed Aug 08 20:10:40 +0800 2018",
- "id": 4270836531449784,
- "rootid": 4270836531449784,
- "floor_number": 14,
- "text": "赞,绝对不让步",
"disable_reply": 0,
+ "created_at": "Tue Jul 25 22:14:20 +0800 2017",
+ "id": 4133522652369353,
+ "rootid": 4133522652369353,
+ "floor_number": 120,
+ "text": "数钱数到手抽筋",
"user": {
- "id": 5666815892,
- "idstr": "5666815892",
+ "id": 5816766564,
+ "idstr": "5816766564",
"class": 1,
- "screen_name": "暖阳理论与老K",
- "name": "暖阳理论与老K",
- "province": "100",
+ "screen_name": "光合F",
+ "name": "光合F",
+ "province": "15",
"city": "1000",
- "location": "其他",
+ "location": "内蒙古",
"description": "",
"url": "",
- "profile_image_url": "http://tvax1.sinaimg.cn/crop.0.0.664.664.50/006bvnGkly8ff9r6ybofzj30ig0igwj1.jpg",
+ "profile_image_url": "http://tvax2.sinaimg.cn/crop.0.0.996.996.50/006lEyHyly8fgjy9tr7t9j30ro0roq4v.jpg",
"cover_image_phone": "http://ww1.sinaimg.cn/crop.0.0.640.640.640/549d0121tw1egm1kjly3jj20hs0hsq4f.jpg",
- "profile_url": "u/5666815892",
+ "profile_url": "u/5816766564",
"domain": "",
"weihao": "",
"gender": "m",
- "followers_count": 93,
- "friends_count": 115,
+ "followers_count": 4,
+ "friends_count": 2,
"pagefriends_count": 0,
- "statuses_count": 16,
+ "statuses_count": 3,
"video_status_count": 0,
- "favourites_count": 20,
- "created_at": "Sat Aug 01 17:00:11 +0800 2015",
+ "favourites_count": 1,
+ "created_at": "Thu Dec 31 19:56:45 +0800 2015",
"following": false,
"allow_all_act_msg": false,
"geo_enabled": true,
@@ -1618,8 +4236,8 @@
},
"ptype": 0,
"allow_all_comment": true,
- "avatar_large": "http://tvax1.sinaimg.cn/crop.0.0.664.664.180/006bvnGkly8ff9r6ybofzj30ig0igwj1.jpg",
- "avatar_hd": "http://tvax1.sinaimg.cn/crop.0.0.664.664.1024/006bvnGkly8ff9r6ybofzj30ig0igwj1.jpg",
+ "avatar_large": "http://tvax2.sinaimg.cn/crop.0.0.996.996.180/006lEyHyly8fgjy9tr7t9j30ro0roq4v.jpg",
+ "avatar_hd": "http://tvax2.sinaimg.cn/crop.0.0.996.996.1024/006lEyHyly8fgjy9tr7t9j30ro0roq4v.jpg",
"verified_reason": "",
"verified_trade": "",
"verified_reason_url": "",
@@ -1629,7 +4247,7 @@
"like": false,
"like_me": false,
"online_status": 0,
- "bi_followers_count": 1,
+ "bi_followers_count": 0,
"lang": "zh-cn",
"star": 0,
"mbtype": 0,
@@ -1638,20 +4256,20 @@
"block_app": 0,
"credit_score": 80,
"user_ability": 0,
- "urank": 9,
+ "urank": 4,
"story_read_state": -1,
"vclub_member": 0
},
- "mid": "4270836531449784",
- "idstr": "4270836531449784",
+ "mid": "4133522652369353",
+ "idstr": "4133522652369353",
"status": {
- "created_at": "Wed Aug 08 20:09:51 +0800 2018",
- "id": 4270836326031924,
- "idstr": "4270836326031924",
- "mid": "4270836326031924",
+ "created_at": "Tue Jul 25 12:21:03 +0800 2017",
+ "id": 4133373338889943,
+ "idstr": "4133373338889943",
+ "mid": "4133373338889943",
"can_edit": false,
- "text": "【商务部新闻发言人就中方对160亿美元自美进口产品采取反制措施发表谈话】美方决定自8月23日起对160亿美元中国输美产品加征25%的关税,又一次将国内法凌驾于国际法之上,是十分无理的做法。中方为维护自身正当权益和多边贸易体制,不得不做出必要反制,决定对160亿美元自美进口产品加征25%的关税,并与",
- "textLength": 302,
+ "text": "【请收下膝盖!这就是传说中的——花式手工点钞[吃惊]】①一指点钞法:相对于传统的点钞,速度更快,效率更高;②扇面点钞法:一次最多可点10张,是目前最快的点钞法;③四指四张点钞法和五指五张点钞法:适用范围比较广,效率非常高。戳视频膜拜一下大神是如何点钞的!@央视财经 http://t.cn/R9vVa8S",
+ "textLength": 279,
"source_allowclick": 0,
"source_type": 1,
"source": "微博 weibo.com",
@@ -1660,45 +4278,38 @@
"in_reply_to_status_id": "",
"in_reply_to_user_id": "",
"in_reply_to_screen_name": "",
- "pic_urls": [
- {
- "thumbnail_pic": "http://wx3.sinaimg.cn/thumbnail/a716fd45ly1fu2jvzgsy3j20c80c8tdp.jpg"
- }
- ],
- "thumbnail_pic": "http://wx3.sinaimg.cn/thumbnail/a716fd45ly1fu2jvzgsy3j20c80c8tdp.jpg",
- "bmiddle_pic": "http://wx3.sinaimg.cn/bmiddle/a716fd45ly1fu2jvzgsy3j20c80c8tdp.jpg",
- "original_pic": "http://wx3.sinaimg.cn/large/a716fd45ly1fu2jvzgsy3j20c80c8tdp.jpg",
+ "pic_urls": [],
"geo": null,
"is_paid": false,
"mblog_vip_type": 0,
"user": {
- "id": 2803301701,
- "idstr": "2803301701",
+ "id": 1663072851,
+ "idstr": "1663072851",
"class": 1,
- "screen_name": "人民日报",
- "name": "人民日报",
+ "screen_name": "中国日报",
+ "name": "中国日报",
"province": "11",
"city": "1000",
"location": "北京",
- "description": "人民日报法人微博。参与、沟通、记录时代。",
- "url": "",
- "profile_image_url": "http://tva1.sinaimg.cn/crop.0.3.1018.1018.50/a716fd45gw1ev7q2k8japj20sg0sg779.jpg",
- "cover_image": "http://wx4.sinaimg.cn/crop.0.0.920.300/a716fd45ly1fpjoldh9kaj20pk08cal8.jpg",
- "cover_image_phone": "http://wx1.sinaimg.cn/crop.0.0.640.640.640/a716fd45ly1fpjoivacakj20yi0yiwkb.jpg;http://wx2.sinaimg.cn/crop.0.0.640.640.640/a716fd45ly1foyq0ha1vwj20e80e8wf7.jpg",
- "profile_url": "rmrb",
- "domain": "rmrb",
+ "description": "CHINA DAILY《中国日报》在新时代,与你一起记录中国,点评世界。",
+ "url": "http://www.chinadaily.com.cn",
+ "profile_image_url": "http://tva1.sinaimg.cn/crop.0.0.180.180.50/63207a53jw8f4tpyeyqouj2050050glo.jpg",
+ "cover_image": "http://ww1.sinaimg.cn/crop.0.0.920.300/63207a53jw1f4tpw3s57bj20pk08c40y.jpg",
+ "cover_image_phone": "http://ww4.sinaimg.cn/crop.0.0.640.640.640/63207a53jw1f4tqhwywb7j20hs0hsacb.jpg;http://ww1.sinaimg.cn/crop.0.0.640.640.640/63207a53jw1f4tqh05r0zj20hs0hsacb.jpg;http://ww3.sinaimg.cn/crop.0.0.640.640.640/63207a53jw1f4dg0ilctlj20u00u0aej.jpg",
+ "profile_url": "chinadailywebsite",
+ "domain": "chinadailywebsite",
"weihao": "",
"gender": "m",
- "followers_count": 60881286,
- "friends_count": 3027,
- "pagefriends_count": 2694,
- "statuses_count": 89351,
+ "followers_count": 35884421,
+ "friends_count": 865,
+ "pagefriends_count": 399,
+ "statuses_count": 92238,
"video_status_count": 0,
- "favourites_count": 1,
- "created_at": "Sun Jul 22 02:28:35 +0800 2012",
+ "favourites_count": 672,
+ "created_at": "Mon Nov 23 14:27:48 +0800 2009",
"following": false,
"allow_all_act_msg": false,
- "geo_enabled": false,
+ "geo_enabled": true,
"verified": true,
"verified_type": 3,
"remark": "",
@@ -1707,26 +4318,26 @@
},
"ptype": 0,
"allow_all_comment": true,
- "avatar_large": "http://tva1.sinaimg.cn/crop.0.3.1018.1018.180/a716fd45gw1ev7q2k8japj20sg0sg779.jpg",
- "avatar_hd": "http://tva1.sinaimg.cn/crop.0.3.1018.1018.1024/a716fd45gw1ev7q2k8japj20sg0sg779.jpg",
- "verified_reason": "《人民日报》法人微博",
+ "avatar_large": "http://tva1.sinaimg.cn/crop.0.0.180.180.180/63207a53jw8f4tpyeyqouj2050050glo.jpg",
+ "avatar_hd": "http://tva1.sinaimg.cn/crop.0.0.180.180.1024/63207a53jw8f4tpyeyqouj2050050glo.jpg",
+ "verified_reason": "China Daily 中国日报官方微博",
"verified_trade": "",
"verified_reason_url": "",
"verified_source": "",
"verified_source_url": "",
- "verified_state": 2,
+ "verified_state": 0,
"verified_level": 3,
"verified_type_ext": 0,
"has_service_tel": false,
- "verified_reason_modified": "辽宁科技大学官方微博,教育官微联盟成员",
- "verified_contact_name": "",
+ "verified_reason_modified": "China Daily 中国日报官方微博",
+ "verified_contact_name": "CHINADAILY",
"verified_contact_email": "",
- "verified_contact_mobile": "",
+ "verified_contact_mobile": "010-64995000",
"follow_me": false,
"like": false,
"like_me": false,
"online_status": 0,
- "bi_followers_count": 305,
+ "bi_followers_count": 197,
"lang": "zh-cn",
"star": 0,
"mbtype": 12,
@@ -1734,7 +4345,7 @@
"block_word": 0,
"block_app": 1,
"credit_score": 80,
- "user_ability": 10814212,
+ "user_ability": 11862788,
"cardid": "star_583",
"urank": 48,
"story_read_state": -1,
@@ -1744,13 +4355,16 @@
"comments_count": 0,
"attitudes_count": 0,
"pending_approval_count": 0,
- "isLongText": true,
+ "isLongText": false,
"hide_flag": 0,
"mlevel": 0,
"visible": {
"type": 0,
"list_id": 0
},
+ "biz_ids": [
+ 230444
+ ],
"biz_feature": 0,
"hasActionTypeCard": 0,
"darwin_tags": [],
@@ -1759,169 +4373,151 @@
"mblogtype": 0,
"userType": 0,
"more_info_type": 0,
- "cardid": "star_583",
"positive_recom_flag": 0,
"content_auth": 0,
"gif_ids": "",
"is_show_bulletin": 2,
"comment_manage_info": {
"comment_permission_type": -1,
- "approval_comment_type": 1
+ "approval_comment_type": 0
}
}
},
{
- "created_at": "Wed Aug 08 20:10:34 +0800 2018",
- "id": 4270836506632994,
- "rootid": 4270836506632994,
- "floor_number": 10,
- "text": "中国不惹事 不代表中国怕 好样的!!",
"disable_reply": 0,
+ "created_at": "Tue Jul 25 22:12:07 +0800 2017",
+ "id": 4133522094349907,
+ "rootid": 4133522094349907,
+ "floor_number": 56,
+ "text": "在重庆有这种体验店吗",
"user": {
- "id": 5579405053,
- "idstr": "5579405053",
+ "id": 5816766564,
+ "idstr": "5816766564",
"class": 1,
- "screen_name": "南方邮箱",
- "name": "南方邮箱",
- "province": "50",
+ "screen_name": "光合F",
+ "name": "光合F",
+ "province": "15",
"city": "1000",
- "location": "重庆",
- "description": "情感博主",
+ "location": "内蒙古",
+ "description": "",
"url": "",
- "profile_image_url": "http://tvax4.sinaimg.cn/crop.0.0.1242.1242.50/0065AC85ly8ftuomzxv43j30yi0yi40t.jpg",
- "cover_image_phone": "http://wx1.sinaimg.cn/crop.0.0.640.640.640/0065AC85ly1ftvq5f1xy7j30yi0yin4m.jpg",
- "profile_url": "u/5579405053",
+ "profile_image_url": "http://tvax2.sinaimg.cn/crop.0.0.996.996.50/006lEyHyly8fgjy9tr7t9j30ro0roq4v.jpg",
+ "cover_image_phone": "http://ww1.sinaimg.cn/crop.0.0.640.640.640/549d0121tw1egm1kjly3jj20hs0hsq4f.jpg",
+ "profile_url": "u/5816766564",
"domain": "",
"weihao": "",
- "gender": "f",
- "followers_count": 217382,
- "friends_count": 620,
- "pagefriends_count": 5,
- "statuses_count": 86,
+ "gender": "m",
+ "followers_count": 4,
+ "friends_count": 2,
+ "pagefriends_count": 0,
+ "statuses_count": 3,
"video_status_count": 0,
- "favourites_count": 8,
- "created_at": "Fri Apr 03 22:28:36 +0800 2015",
+ "favourites_count": 1,
+ "created_at": "Thu Dec 31 19:56:45 +0800 2015",
"following": false,
"allow_all_act_msg": false,
"geo_enabled": true,
- "verified": true,
- "verified_type": 0,
+ "verified": false,
+ "verified_type": -1,
"remark": "",
"insecurity": {
"sexual_content": false
},
"ptype": 0,
"allow_all_comment": true,
- "avatar_large": "http://tvax4.sinaimg.cn/crop.0.0.1242.1242.180/0065AC85ly8ftuomzxv43j30yi0yi40t.jpg",
- "avatar_hd": "http://tvax4.sinaimg.cn/crop.0.0.1242.1242.1024/0065AC85ly8ftuomzxv43j30yi0yi40t.jpg",
- "verified_reason": "知名情感博主",
+ "avatar_large": "http://tvax2.sinaimg.cn/crop.0.0.996.996.180/006lEyHyly8fgjy9tr7t9j30ro0roq4v.jpg",
+ "avatar_hd": "http://tvax2.sinaimg.cn/crop.0.0.996.996.1024/006lEyHyly8fgjy9tr7t9j30ro0roq4v.jpg",
+ "verified_reason": "",
"verified_trade": "",
"verified_reason_url": "",
"verified_source": "",
"verified_source_url": "",
- "verified_state": 0,
- "verified_level": 3,
- "verified_type_ext": 0,
- "has_service_tel": false,
- "verified_reason_modified": "",
- "verified_contact_name": "",
- "verified_contact_email": "",
- "verified_contact_mobile": "",
"follow_me": false,
"like": false,
"like_me": false,
"online_status": 0,
- "bi_followers_count": 91,
+ "bi_followers_count": 0,
"lang": "zh-cn",
"star": 0,
- "mbtype": 12,
- "mbrank": 2,
+ "mbtype": 0,
+ "mbrank": 0,
"block_word": 0,
- "block_app": 1,
+ "block_app": 0,
"credit_score": 80,
- "user_ability": 2097152,
- "cardid": "star_321",
- "urank": 14,
+ "user_ability": 0,
+ "urank": 4,
"story_read_state": -1,
"vclub_member": 0
},
- "mid": "4270836506632994",
- "idstr": "4270836506632994",
+ "mid": "4133522094349907",
+ "idstr": "4133522094349907",
"status": {
- "created_at": "Wed Aug 08 20:09:51 +0800 2018",
- "id": 4270836326031924,
- "idstr": "4270836326031924",
- "mid": "4270836326031924",
+ "created_at": "Tue Jul 25 14:22:38 +0800 2017",
+ "id": 4133403945519560,
+ "idstr": "4133403945519560",
+ "mid": "4133403945519560",
"can_edit": false,
- "text": "【商务部新闻发言人就中方对160亿美元自美进口产品采取反制措施发表谈话】美方决定自8月23日起对160亿美元中国输美产品加征25%的关税,又一次将国内法凌驾于国际法之上,是十分无理的做法。中方为维护自身正当权益和多边贸易体制,不得不做出必要反制,决定对160亿美元自美进口产品加征25%的关税,并与",
- "textLength": 302,
- "source_allowclick": 0,
+ "text": "[鲜花]//@锤子科技营销帐号:成都。[心]",
+ "source_allowclick": 1,
"source_type": 1,
- "source": "微博 weibo.com",
+ "source": "坚果手机 Pro",
"favorited": false,
"truncated": false,
"in_reply_to_status_id": "",
"in_reply_to_user_id": "",
"in_reply_to_screen_name": "",
- "pic_urls": [
- {
- "thumbnail_pic": "http://wx3.sinaimg.cn/thumbnail/a716fd45ly1fu2jvzgsy3j20c80c8tdp.jpg"
- }
- ],
- "thumbnail_pic": "http://wx3.sinaimg.cn/thumbnail/a716fd45ly1fu2jvzgsy3j20c80c8tdp.jpg",
- "bmiddle_pic": "http://wx3.sinaimg.cn/bmiddle/a716fd45ly1fu2jvzgsy3j20c80c8tdp.jpg",
- "original_pic": "http://wx3.sinaimg.cn/large/a716fd45ly1fu2jvzgsy3j20c80c8tdp.jpg",
+ "pic_urls": [],
"geo": null,
"is_paid": false,
"mblog_vip_type": 0,
"user": {
- "id": 2803301701,
- "idstr": "2803301701",
+ "id": 1640571365,
+ "idstr": "1640571365",
"class": 1,
- "screen_name": "人民日报",
- "name": "人民日报",
+ "screen_name": "罗永浩",
+ "name": "罗永浩",
"province": "11",
- "city": "1000",
- "location": "北京",
- "description": "人民日报法人微博。参与、沟通、记录时代。",
- "url": "",
- "profile_image_url": "http://tva1.sinaimg.cn/crop.0.3.1018.1018.50/a716fd45gw1ev7q2k8japj20sg0sg779.jpg",
- "cover_image": "http://wx4.sinaimg.cn/crop.0.0.920.300/a716fd45ly1fpjoldh9kaj20pk08cal8.jpg",
- "cover_image_phone": "http://wx1.sinaimg.cn/crop.0.0.640.640.640/a716fd45ly1fpjoivacakj20yi0yiwkb.jpg;http://wx2.sinaimg.cn/crop.0.0.640.640.640/a716fd45ly1foyq0ha1vwj20e80e8wf7.jpg",
- "profile_url": "rmrb",
- "domain": "rmrb",
+ "city": "1",
+ "location": "北京 东城区",
+ "description": "Smartisan,智能机时代的工匠",
+ "url": "http://www.t.tt",
+ "profile_image_url": "http://tvax1.sinaimg.cn/crop.0.0.1010.1010.50/61c921e5ly8fuhr3eywbnj20s20s2wgo.jpg",
+ "cover_image": "http://wx2.sinaimg.cn/crop.0.0.920.300/61c921e5ly1fughtl9m14j20pk08c0yj.jpg",
+ "cover_image_phone": "http://wx1.sinaimg.cn/crop.0.0.640.640.640/61c921e5ly1fughveoyygj20u00u048j.jpg",
+ "profile_url": "laoluoyonghao",
+ "domain": "laoluoyonghao",
"weihao": "",
"gender": "m",
- "followers_count": 60881286,
- "friends_count": 3027,
- "pagefriends_count": 2694,
- "statuses_count": 89351,
+ "followers_count": 15178843,
+ "friends_count": 2470,
+ "pagefriends_count": 6,
+ "statuses_count": 31295,
"video_status_count": 0,
- "favourites_count": 1,
- "created_at": "Sun Jul 22 02:28:35 +0800 2012",
+ "favourites_count": 6080,
+ "created_at": "Fri Aug 28 16:35:10 +0800 2009",
"following": false,
"allow_all_act_msg": false,
- "geo_enabled": false,
+ "geo_enabled": true,
"verified": true,
- "verified_type": 3,
+ "verified_type": 0,
"remark": "",
"insecurity": {
"sexual_content": false
},
- "ptype": 0,
+ "ptype": 3,
"allow_all_comment": true,
- "avatar_large": "http://tva1.sinaimg.cn/crop.0.3.1018.1018.180/a716fd45gw1ev7q2k8japj20sg0sg779.jpg",
- "avatar_hd": "http://tva1.sinaimg.cn/crop.0.3.1018.1018.1024/a716fd45gw1ev7q2k8japj20sg0sg779.jpg",
- "verified_reason": "《人民日报》法人微博",
- "verified_trade": "",
+ "avatar_large": "http://tvax1.sinaimg.cn/crop.0.0.1010.1010.180/61c921e5ly8fuhr3eywbnj20s20s2wgo.jpg",
+ "avatar_hd": "http://tvax1.sinaimg.cn/crop.0.0.1010.1010.1024/61c921e5ly8fuhr3eywbnj20s20s2wgo.jpg",
+ "verified_reason": "锤子科技 CEO",
+ "verified_trade": "1203",
"verified_reason_url": "",
"verified_source": "",
"verified_source_url": "",
- "verified_state": 2,
+ "verified_state": 0,
"verified_level": 3,
- "verified_type_ext": 0,
+ "verified_type_ext": 1,
"has_service_tel": false,
- "verified_reason_modified": "辽宁科技大学官方微博,教育官微联盟成员",
+ "verified_reason_modified": "",
"verified_contact_name": "",
"verified_contact_email": "",
"verified_contact_mobile": "",
@@ -1929,25 +4525,208 @@
"like": false,
"like_me": false,
"online_status": 0,
- "bi_followers_count": 305,
+ "bi_followers_count": 1933,
"lang": "zh-cn",
"star": 0,
- "mbtype": 12,
- "mbrank": 6,
+ "mbtype": 13,
+ "mbrank": 7,
"block_word": 0,
"block_app": 1,
"credit_score": 80,
- "user_ability": 10814212,
- "cardid": "star_583",
+ "user_ability": 2100748,
+ "cardid": "vip_012",
"urank": 48,
"story_read_state": -1,
"vclub_member": 0
},
+ "pid": 4133376900361096,
+ "retweeted_status": {
+ "created_at": "Tue Jul 25 10:10:21 +0800 2017",
+ "id": 4133340456261013,
+ "idstr": "4133340456261013",
+ "mid": "4133340456261013",
+ "can_edit": false,
+ "text": "喜悦出于你,美丽与你一起。[鲜花][鲜花][鲜花]\n7月15日~8月31日到店购买 Smartisan 坚果 Pro ,赠送锤子科技原装自拍杆。[给力][给力][给力]\n锤子科技成都授权体验店欢迎您的光临。[鼓掌][鼓掌][鼓掌]\n地址:1.成都市锦江区春熙路大科甲巷25号迪信通(伊藤洋华堂对面)。\n2.成都市金牛区蜀汉路128号",
+ "textLength": 383,
+ "source_allowclick": 1,
+ "source_type": 1,
+ "source": "坚果手机 Pro",
+ "favorited": false,
+ "truncated": false,
+ "in_reply_to_status_id": "",
+ "in_reply_to_user_id": "",
+ "in_reply_to_screen_name": "",
+ "pic_urls": [
+ {
+ "thumbnail_pic": "http://wx1.sinaimg.cn/thumbnail/006OMPglgy1fhvw5iz0qrj30sh0qo42r.jpg"
+ },
+ {
+ "thumbnail_pic": "http://wx1.sinaimg.cn/thumbnail/006OMPglgy1fhvw5i73anj30zk0qote2.jpg"
+ },
+ {
+ "thumbnail_pic": "http://wx1.sinaimg.cn/thumbnail/006OMPglgy1fhvw5f811lj315l0qo44f.jpg"
+ },
+ {
+ "thumbnail_pic": "http://wx4.sinaimg.cn/thumbnail/006OMPglgy1fhvw5l4jnpj30zk0qote3.jpg"
+ },
+ {
+ "thumbnail_pic": "http://wx3.sinaimg.cn/thumbnail/006OMPglgy1fhvw5k6lk3j31kw0mnte0.jpg"
+ },
+ {
+ "thumbnail_pic": "http://wx2.sinaimg.cn/thumbnail/006OMPglgy1fhvw5edmbzj30qo0zkgq4.jpg"
+ },
+ {
+ "thumbnail_pic": "http://wx3.sinaimg.cn/thumbnail/006OMPglgy1fhvw5h4s0aj30qo0zktdr.jpg"
+ },
+ {
+ "thumbnail_pic": "http://wx1.sinaimg.cn/thumbnail/006OMPglgy1fhvw5jmssuj30qo10jdn0.jpg"
+ },
+ {
+ "thumbnail_pic": "http://wx3.sinaimg.cn/thumbnail/006OMPglgy1fhvwetznf3j32eo37ke84.jpg"
+ }
+ ],
+ "thumbnail_pic": "http://wx1.sinaimg.cn/thumbnail/006OMPglgy1fhvw5iz0qrj30sh0qo42r.jpg",
+ "bmiddle_pic": "http://wx1.sinaimg.cn/bmiddle/006OMPglgy1fhvw5iz0qrj30sh0qo42r.jpg",
+ "original_pic": "http://wx1.sinaimg.cn/large/006OMPglgy1fhvw5iz0qrj30sh0qo42r.jpg",
+ "geo": {
+ "type": "Point",
+ "coordinates": [
+ 30.59277,
+ 104.04615
+ ]
+ },
+ "is_paid": false,
+ "mblog_vip_type": 0,
+ "user": {
+ "id": 6247250593,
+ "idstr": "6247250593",
+ "class": 1,
+ "screen_name": "蓉城锤科",
+ "name": "蓉城锤科",
+ "province": "51",
+ "city": "1000",
+ "location": "四川",
+ "description": "漂亮得不像实力派",
+ "url": "",
+ "profile_image_url": "http://tvax2.sinaimg.cn/crop.0.0.996.996.50/006OMPglly8ffuhgk7vvqj30ro0ro74t.jpg",
+ "cover_image_phone": "http://ww1.sinaimg.cn/crop.0.0.640.640.640/549d0121tw1egm1kjly3jj20hs0hsq4f.jpg",
+ "profile_url": "u/6247250593",
+ "domain": "",
+ "weihao": "",
+ "gender": "f",
+ "followers_count": 189,
+ "friends_count": 113,
+ "pagefriends_count": 0,
+ "statuses_count": 103,
+ "video_status_count": 0,
+ "favourites_count": 0,
+ "created_at": "Sat May 20 09:33:18 +0800 2017",
+ "following": false,
+ "allow_all_act_msg": false,
+ "geo_enabled": true,
+ "verified": true,
+ "verified_type": 2,
+ "remark": "",
+ "insecurity": {
+ "sexual_content": false
+ },
+ "ptype": 0,
+ "allow_all_comment": true,
+ "avatar_large": "http://tvax2.sinaimg.cn/crop.0.0.996.996.180/006OMPglly8ffuhgk7vvqj30ro0ro74t.jpg",
+ "avatar_hd": "http://tvax2.sinaimg.cn/crop.0.0.996.996.1024/006OMPglly8ffuhgk7vvqj30ro0ro74t.jpg",
+ "verified_reason": "四川蜂云启迪电子科技有限公司",
+ "verified_trade": "",
+ "verified_reason_url": "",
+ "verified_source": "",
+ "verified_source_url": "",
+ "verified_state": 0,
+ "verified_level": 3,
+ "verified_type_ext": 0,
+ "pay_remind": 2,
+ "pay_date": "20170523",
+ "has_service_tel": false,
+ "verified_reason_modified": "",
+ "verified_contact_name": "",
+ "verified_contact_email": "",
+ "verified_contact_mobile": "",
+ "follow_me": false,
+ "like": false,
+ "like_me": false,
+ "online_status": 0,
+ "bi_followers_count": 17,
+ "lang": "zh-cn",
+ "star": 0,
+ "mbtype": 0,
+ "mbrank": 0,
+ "block_word": 0,
+ "block_app": 0,
+ "credit_score": 80,
+ "user_ability": 0,
+ "urank": 9,
+ "story_read_state": -1,
+ "vclub_member": 0
+ },
+ "annotations": [
+ {
+ "place": {
+ "lon": 104.04615,
+ "poiid": "8008651010000000000",
+ "title": "成都",
+ "type": "checkin",
+ "lat": 30.59277
+ },
+ "client_mblogid": "be7dadf4-b07b-4fc4-ba09-51504fb9ca8c"
+ },
+ {
+ "mapi_request": true
+ }
+ ],
+ "picStatus": "0:1,1:1,2:1,3:1,4:1,5:1,6:1,7:1,8:1",
+ "reposts_count": 0,
+ "comments_count": 0,
+ "attitudes_count": 0,
+ "pending_approval_count": 0,
+ "isLongText": true,
+ "hide_flag": 0,
+ "mlevel": 0,
+ "visible": {
+ "type": 0,
+ "list_id": 0
+ },
+ "biz_ids": [
+ 100101
+ ],
+ "biz_feature": 4294967300,
+ "page_type": 40,
+ "hasActionTypeCard": 0,
+ "darwin_tags": [],
+ "hot_weibo_tags": [],
+ "text_tag_tips": [],
+ "mblogtype": 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
+ }
+ },
+ "annotations": [
+ {
+ "client_mblogid": "2a9348df-f888-4240-a64c-368630dd79cd"
+ },
+ {
+ "mapi_request": true
+ }
+ ],
"reposts_count": 0,
"comments_count": 0,
"attitudes_count": 0,
"pending_approval_count": 0,
- "isLongText": true,
+ "isLongText": false,
"hide_flag": 0,
"mlevel": 0,
"visible": {
@@ -1962,48 +4741,47 @@
"mblogtype": 0,
"userType": 0,
"more_info_type": 0,
- "cardid": "star_583",
"positive_recom_flag": 0,
"content_auth": 0,
"gif_ids": "",
"is_show_bulletin": 2,
"comment_manage_info": {
"comment_permission_type": -1,
- "approval_comment_type": 1
+ "approval_comment_type": 0
}
}
},
{
- "created_at": "Wed Aug 08 20:10:34 +0800 2018",
- "id": 4270836506230863,
- "rootid": 4270836506230863,
- "floor_number": 11,
- "text": "干得漂亮",
"disable_reply": 0,
+ "created_at": "Tue Jul 25 22:09:55 +0800 2017",
+ "id": 4133521540960003,
+ "rootid": 4133521540960003,
+ "floor_number": 116,
+ "text": "onion 洋葱",
"user": {
- "id": 6243210201,
- "idstr": "6243210201",
+ "id": 5816766564,
+ "idstr": "5816766564",
"class": 1,
- "screen_name": "禾下鱼歌",
- "name": "禾下鱼歌",
- "province": "32",
- "city": "1",
- "location": "江苏 南京",
- "description": "爱追剧,爱旅行,爱和平。",
+ "screen_name": "光合F",
+ "name": "光合F",
+ "province": "15",
+ "city": "1000",
+ "location": "内蒙古",
+ "description": "",
"url": "",
- "profile_image_url": "http://tvax4.sinaimg.cn/crop.0.0.996.996.50/006OvSaJly8fova8zyrwrj30ro0roq45.jpg",
+ "profile_image_url": "http://tvax2.sinaimg.cn/crop.0.0.996.996.50/006lEyHyly8fgjy9tr7t9j30ro0roq4v.jpg",
"cover_image_phone": "http://ww1.sinaimg.cn/crop.0.0.640.640.640/549d0121tw1egm1kjly3jj20hs0hsq4f.jpg",
- "profile_url": "u/6243210201",
+ "profile_url": "u/5816766564",
"domain": "",
"weihao": "",
"gender": "m",
- "followers_count": 170,
- "friends_count": 625,
- "pagefriends_count": 7,
- "statuses_count": 254,
+ "followers_count": 4,
+ "friends_count": 2,
+ "pagefriends_count": 0,
+ "statuses_count": 3,
"video_status_count": 0,
- "favourites_count": 35,
- "created_at": "Thu May 11 02:14:26 +0800 2017",
+ "favourites_count": 1,
+ "created_at": "Thu Dec 31 19:56:45 +0800 2015",
"following": false,
"allow_all_act_msg": false,
"geo_enabled": true,
@@ -2015,8 +4793,8 @@
},
"ptype": 0,
"allow_all_comment": true,
- "avatar_large": "http://tvax4.sinaimg.cn/crop.0.0.996.996.180/006OvSaJly8fova8zyrwrj30ro0roq45.jpg",
- "avatar_hd": "http://tvax4.sinaimg.cn/crop.0.0.996.996.1024/006OvSaJly8fova8zyrwrj30ro0roq45.jpg",
+ "avatar_large": "http://tvax2.sinaimg.cn/crop.0.0.996.996.180/006lEyHyly8fgjy9tr7t9j30ro0roq4v.jpg",
+ "avatar_hd": "http://tvax2.sinaimg.cn/crop.0.0.996.996.1024/006lEyHyly8fgjy9tr7t9j30ro0roq4v.jpg",
"verified_reason": "",
"verified_trade": "",
"verified_reason_url": "",
@@ -2026,7 +4804,7 @@
"like": false,
"like_me": false,
"online_status": 0,
- "bi_followers_count": 38,
+ "bi_followers_count": 0,
"lang": "zh-cn",
"star": 0,
"mbtype": 0,
@@ -2034,25 +4812,24 @@
"block_word": 0,
"block_app": 0,
"credit_score": 80,
- "user_ability": 2097152,
- "cardid": "star_699",
- "urank": 17,
+ "user_ability": 0,
+ "urank": 4,
"story_read_state": -1,
"vclub_member": 0
},
- "mid": "4270836506230863",
- "idstr": "4270836506230863",
+ "mid": "4133521540960003",
+ "idstr": "4133521540960003",
"status": {
- "created_at": "Wed Aug 08 20:09:51 +0800 2018",
- "id": 4270836326031924,
- "idstr": "4270836326031924",
- "mid": "4270836326031924",
+ "created_at": "Tue Jul 25 19:07:16 +0800 2017",
+ "id": 4133475575356293,
+ "idstr": "4133475575356293",
+ "mid": "4133475575356293",
"can_edit": false,
- "text": "【商务部新闻发言人就中方对160亿美元自美进口产品采取反制措施发表谈话】美方决定自8月23日起对160亿美元中国输美产品加征25%的关税,又一次将国内法凌驾于国际法之上,是十分无理的做法。中方为维护自身正当权益和多边贸易体制,不得不做出必要反制,决定对160亿美元自美进口产品加征25%的关税,并与",
- "textLength": 302,
+ "text": "安卓用户都知道,谷歌喜爱用甜点来作为系统的代号?今天谷歌放出了安卓 8.0的最后一个预览版,而当你查看Android版本时,会看到“O”的Logo,还会跳出一个章鱼的形象,而代号Octopus的说法也由此产生。章鱼太突兀有点不靠谱,你们觉得会是什么单词的首字母?",
+ "textLength": 239,
"source_allowclick": 0,
"source_type": 1,
- "source": "微博 weibo.com",
+ "source": "搜狗高速浏览器",
"favorited": false,
"truncated": false,
"in_reply_to_status_id": "",
@@ -2060,63 +4837,65 @@
"in_reply_to_screen_name": "",
"pic_urls": [
{
- "thumbnail_pic": "http://wx3.sinaimg.cn/thumbnail/a716fd45ly1fu2jvzgsy3j20c80c8tdp.jpg"
+ "thumbnail_pic": "http://wx1.sinaimg.cn/thumbnail/41399761ly1fhwc5g55gbj20fz08ct8s.jpg"
}
],
- "thumbnail_pic": "http://wx3.sinaimg.cn/thumbnail/a716fd45ly1fu2jvzgsy3j20c80c8tdp.jpg",
- "bmiddle_pic": "http://wx3.sinaimg.cn/bmiddle/a716fd45ly1fu2jvzgsy3j20c80c8tdp.jpg",
- "original_pic": "http://wx3.sinaimg.cn/large/a716fd45ly1fu2jvzgsy3j20c80c8tdp.jpg",
+ "thumbnail_pic": "http://wx1.sinaimg.cn/thumbnail/41399761ly1fhwc5g55gbj20fz08ct8s.jpg",
+ "bmiddle_pic": "http://wx1.sinaimg.cn/bmiddle/41399761ly1fhwc5g55gbj20fz08ct8s.jpg",
+ "original_pic": "http://wx1.sinaimg.cn/large/41399761ly1fhwc5g55gbj20fz08ct8s.jpg",
"geo": null,
"is_paid": false,
"mblog_vip_type": 0,
"user": {
- "id": 2803301701,
- "idstr": "2803301701",
+ "id": 1094293345,
+ "idstr": "1094293345",
"class": 1,
- "screen_name": "人民日报",
- "name": "人民日报",
+ "screen_name": "科技美学",
+ "name": "科技美学",
"province": "11",
- "city": "1000",
- "location": "北京",
- "description": "人民日报法人微博。参与、沟通、记录时代。",
+ "city": "2",
+ "location": "北京 西城区",
+ "description": "每周六晚18点斗鱼“科技美学中国”直播间 那岩和你聊科技",
"url": "",
- "profile_image_url": "http://tva1.sinaimg.cn/crop.0.3.1018.1018.50/a716fd45gw1ev7q2k8japj20sg0sg779.jpg",
- "cover_image": "http://wx4.sinaimg.cn/crop.0.0.920.300/a716fd45ly1fpjoldh9kaj20pk08cal8.jpg",
- "cover_image_phone": "http://wx1.sinaimg.cn/crop.0.0.640.640.640/a716fd45ly1fpjoivacakj20yi0yiwkb.jpg;http://wx2.sinaimg.cn/crop.0.0.640.640.640/a716fd45ly1foyq0ha1vwj20e80e8wf7.jpg",
- "profile_url": "rmrb",
- "domain": "rmrb",
- "weihao": "",
+ "profile_image_url": "http://tva4.sinaimg.cn/crop.0.0.1002.1002.50/41399761jw8eyfdeu75vtj20ru0rutae.jpg",
+ "cover_image": "http://ww1.sinaimg.cn/crop.0.0.980.300/41399761tw1egp6fg8jntj20r808c42c.jpg",
+ "cover_image_phone": "http://ww1.sinaimg.cn/crop.0.0.640.640.640/549d0121tw1egm1kjly3jj20hs0hsq4f.jpg",
+ "profile_url": "703723424",
+ "domain": "benlu2002",
+ "weihao": "703723424",
"gender": "m",
- "followers_count": 60881286,
- "friends_count": 3027,
- "pagefriends_count": 2694,
- "statuses_count": 89351,
+ "followers_count": 863493,
+ "friends_count": 2394,
+ "pagefriends_count": 3,
+ "statuses_count": 5671,
"video_status_count": 0,
- "favourites_count": 1,
- "created_at": "Sun Jul 22 02:28:35 +0800 2012",
+ "favourites_count": 2371,
+ "created_at": "Fri Nov 06 21:55:56 +0800 2009",
"following": false,
"allow_all_act_msg": false,
"geo_enabled": false,
"verified": true,
- "verified_type": 3,
+ "verified_type": 2,
"remark": "",
"insecurity": {
"sexual_content": false
},
"ptype": 0,
"allow_all_comment": true,
- "avatar_large": "http://tva1.sinaimg.cn/crop.0.3.1018.1018.180/a716fd45gw1ev7q2k8japj20sg0sg779.jpg",
- "avatar_hd": "http://tva1.sinaimg.cn/crop.0.3.1018.1018.1024/a716fd45gw1ev7q2k8japj20sg0sg779.jpg",
- "verified_reason": "《人民日报》法人微博",
- "verified_trade": "",
+ "avatar_large": "http://tva4.sinaimg.cn/crop.0.0.1002.1002.180/41399761jw8eyfdeu75vtj20ru0rutae.jpg",
+ "avatar_hd": "http://tva4.sinaimg.cn/crop.0.0.1002.1002.1024/41399761jw8eyfdeu75vtj20ru0rutae.jpg",
+ "verified_reason": "科技美学官方微博",
+ "verified_trade": "1022",
"verified_reason_url": "",
"verified_source": "",
"verified_source_url": "",
- "verified_state": 2,
+ "verified_state": 0,
"verified_level": 3,
- "verified_type_ext": 0,
+ "verified_type_ext": 50,
+ "pay_remind": 0,
+ "pay_date": "20180323",
"has_service_tel": false,
- "verified_reason_modified": "辽宁科技大学官方微博,教育官微联盟成员",
+ "verified_reason_modified": "",
"verified_contact_name": "",
"verified_contact_email": "",
"verified_contact_mobile": "",
@@ -2124,16 +4903,15 @@
"like": false,
"like_me": false,
"online_status": 0,
- "bi_followers_count": 305,
+ "bi_followers_count": 1199,
"lang": "zh-cn",
"star": 0,
"mbtype": 12,
- "mbrank": 6,
- "block_word": 0,
+ "mbrank": 7,
+ "block_word": 1,
"block_app": 1,
"credit_score": 80,
- "user_ability": 10814212,
- "cardid": "star_583",
+ "user_ability": 8651276,
"urank": 48,
"story_read_state": -1,
"vclub_member": 0
@@ -2142,7 +4920,7 @@
"comments_count": 0,
"attitudes_count": 0,
"pending_approval_count": 0,
- "isLongText": true,
+ "isLongText": false,
"hide_flag": 0,
"mlevel": 0,
"visible": {
@@ -2157,48 +4935,47 @@
"mblogtype": 0,
"userType": 0,
"more_info_type": 0,
- "cardid": "star_583",
"positive_recom_flag": 0,
"content_auth": 0,
"gif_ids": "",
"is_show_bulletin": 2,
"comment_manage_info": {
"comment_permission_type": -1,
- "approval_comment_type": 1
+ "approval_comment_type": 0
}
}
},
{
- "created_at": "Wed Aug 08 20:10:29 +0800 2018",
- "id": 4270836485005258,
- "rootid": 4270836485005258,
- "floor_number": 8,
- "text": "支持中国[加油][加油]",
"disable_reply": 0,
+ "created_at": "Wed Jul 19 14:10:49 +0800 2017",
+ "id": 4131226643906227,
+ "rootid": 4131226643906227,
+ "floor_number": 3445,
+ "text": "估计是怕下雨",
"user": {
- "id": 3973734328,
- "idstr": "3973734328",
+ "id": 5816766564,
+ "idstr": "5816766564",
"class": 1,
- "screen_name": "快乐老妈",
- "name": "快乐老妈",
- "province": "42",
+ "screen_name": "光合F",
+ "name": "光合F",
+ "province": "15",
"city": "1000",
- "location": "湖北",
- "description": "快乐就完事!",
+ "location": "内蒙古",
+ "description": "",
"url": "",
- "profile_image_url": "http://tvax3.sinaimg.cn/crop.0.0.996.996.50/ecda5fb8ly8ftujrxtqsqj20ro0roq5f.jpg",
- "cover_image_phone": "http://wx3.sinaimg.cn/crop.0.0.640.640.640/006pg74Hgy1ffo801qkylj30ku0kugoa.jpg;http://ww1.sinaimg.cn/crop.0.0.640.640.640/9d44112bjw1f1xl1c10tuj20hs0hs0tw.jpg",
- "profile_url": "u/3973734328",
+ "profile_image_url": "http://tvax2.sinaimg.cn/crop.0.0.996.996.50/006lEyHyly8fgjy9tr7t9j30ro0roq4v.jpg",
+ "cover_image_phone": "http://ww1.sinaimg.cn/crop.0.0.640.640.640/549d0121tw1egm1kjly3jj20hs0hsq4f.jpg",
+ "profile_url": "u/5816766564",
"domain": "",
"weihao": "",
- "gender": "f",
- "followers_count": 401,
- "friends_count": 566,
- "pagefriends_count": 2,
- "statuses_count": 78,
+ "gender": "m",
+ "followers_count": 4,
+ "friends_count": 2,
+ "pagefriends_count": 0,
+ "statuses_count": 3,
"video_status_count": 0,
- "favourites_count": 0,
- "created_at": "Sun Jan 12 10:38:07 +0800 2014",
+ "favourites_count": 1,
+ "created_at": "Thu Dec 31 19:56:45 +0800 2015",
"following": false,
"allow_all_act_msg": false,
"geo_enabled": true,
@@ -2210,8 +4987,8 @@
},
"ptype": 0,
"allow_all_comment": true,
- "avatar_large": "http://tvax3.sinaimg.cn/crop.0.0.996.996.180/ecda5fb8ly8ftujrxtqsqj20ro0roq5f.jpg",
- "avatar_hd": "http://tvax3.sinaimg.cn/crop.0.0.996.996.1024/ecda5fb8ly8ftujrxtqsqj20ro0roq5f.jpg",
+ "avatar_large": "http://tvax2.sinaimg.cn/crop.0.0.996.996.180/006lEyHyly8fgjy9tr7t9j30ro0roq4v.jpg",
+ "avatar_hd": "http://tvax2.sinaimg.cn/crop.0.0.996.996.1024/006lEyHyly8fgjy9tr7t9j30ro0roq4v.jpg",
"verified_reason": "",
"verified_trade": "",
"verified_reason_url": "",
@@ -2221,30 +4998,29 @@
"like": false,
"like_me": false,
"online_status": 0,
- "bi_followers_count": 4,
+ "bi_followers_count": 0,
"lang": "zh-cn",
"star": 0,
- "mbtype": 11,
- "mbrank": 6,
+ "mbtype": 0,
+ "mbrank": 0,
"block_word": 0,
- "block_app": 1,
+ "block_app": 0,
"credit_score": 80,
- "user_ability": 2098176,
- "cardid": "star_107",
- "urank": 31,
+ "user_ability": 0,
+ "urank": 4,
"story_read_state": -1,
"vclub_member": 0
},
- "mid": "4270836485005258",
- "idstr": "4270836485005258",
+ "mid": "4131226643906227",
+ "idstr": "4131226643906227",
"status": {
- "created_at": "Wed Aug 08 20:09:51 +0800 2018",
- "id": 4270836326031924,
- "idstr": "4270836326031924",
- "mid": "4270836326031924",
+ "created_at": "Tue Jul 18 10:35:12 +0800 2017",
+ "id": 4130809989980679,
+ "idstr": "4130809989980679",
+ "mid": "4130809989980679",
"can_edit": false,
- "text": "【商务部新闻发言人就中方对160亿美元自美进口产品采取反制措施发表谈话】美方决定自8月23日起对160亿美元中国输美产品加征25%的关税,又一次将国内法凌驾于国际法之上,是十分无理的做法。中方为维护自身正当权益和多边贸易体制,不得不做出必要反制,决定对160亿美元自美进口产品加征25%的关税,并与",
- "textLength": 302,
+ "text": "卡戴珊在里面就穿了一件透明的塑料连衣裙……不会捂出水珠来?",
+ "textLength": 58,
"source_allowclick": 0,
"source_type": 1,
"source": "微博 weibo.com",
@@ -2255,63 +5031,78 @@
"in_reply_to_screen_name": "",
"pic_urls": [
{
- "thumbnail_pic": "http://wx3.sinaimg.cn/thumbnail/a716fd45ly1fu2jvzgsy3j20c80c8tdp.jpg"
+ "thumbnail_pic": "http://wx1.sinaimg.cn/thumbnail/56a2ad31gy1fhntyoe4dgj20fi0m8wfd.jpg"
+ },
+ {
+ "thumbnail_pic": "http://wx1.sinaimg.cn/thumbnail/56a2ad31gy1fhntyp3s0mj20m81uxag7.jpg"
+ },
+ {
+ "thumbnail_pic": "http://wx2.sinaimg.cn/thumbnail/56a2ad31gy1fhntypz0ilj20m81k2jvu.jpg"
+ },
+ {
+ "thumbnail_pic": "http://wx3.sinaimg.cn/thumbnail/56a2ad31gy1fhntyqx02gj20m813b76s.jpg"
+ },
+ {
+ "thumbnail_pic": "http://wx1.sinaimg.cn/thumbnail/56a2ad31gy1fhntyril8dj20m80u4gno.jpg"
+ },
+ {
+ "thumbnail_pic": "http://wx1.sinaimg.cn/thumbnail/56a2ad31gy1fhntys9b8cj20zk1iyqas.jpg"
}
],
- "thumbnail_pic": "http://wx3.sinaimg.cn/thumbnail/a716fd45ly1fu2jvzgsy3j20c80c8tdp.jpg",
- "bmiddle_pic": "http://wx3.sinaimg.cn/bmiddle/a716fd45ly1fu2jvzgsy3j20c80c8tdp.jpg",
- "original_pic": "http://wx3.sinaimg.cn/large/a716fd45ly1fu2jvzgsy3j20c80c8tdp.jpg",
+ "thumbnail_pic": "http://wx1.sinaimg.cn/thumbnail/56a2ad31gy1fhntyoe4dgj20fi0m8wfd.jpg",
+ "bmiddle_pic": "http://wx1.sinaimg.cn/bmiddle/56a2ad31gy1fhntyoe4dgj20fi0m8wfd.jpg",
+ "original_pic": "http://wx1.sinaimg.cn/large/56a2ad31gy1fhntyoe4dgj20fi0m8wfd.jpg",
"geo": null,
"is_paid": false,
"mblog_vip_type": 0,
"user": {
- "id": 2803301701,
- "idstr": "2803301701",
+ "id": 1453501745,
+ "idstr": "1453501745",
"class": 1,
- "screen_name": "人民日报",
- "name": "人民日报",
- "province": "11",
- "city": "1000",
- "location": "北京",
- "description": "人民日报法人微博。参与、沟通、记录时代。",
+ "screen_name": "Neil王静昌",
+ "name": "Neil王静昌",
+ "province": "33",
+ "city": "1",
+ "location": "浙江 杭州",
+ "description": "新Instagram:NeilwangGuru,工作邮箱:fashionguru@163.com",
"url": "",
- "profile_image_url": "http://tva1.sinaimg.cn/crop.0.3.1018.1018.50/a716fd45gw1ev7q2k8japj20sg0sg779.jpg",
- "cover_image": "http://wx4.sinaimg.cn/crop.0.0.920.300/a716fd45ly1fpjoldh9kaj20pk08cal8.jpg",
- "cover_image_phone": "http://wx1.sinaimg.cn/crop.0.0.640.640.640/a716fd45ly1fpjoivacakj20yi0yiwkb.jpg;http://wx2.sinaimg.cn/crop.0.0.640.640.640/a716fd45ly1foyq0ha1vwj20e80e8wf7.jpg",
- "profile_url": "rmrb",
- "domain": "rmrb",
+ "profile_image_url": "http://tvax1.sinaimg.cn/crop.162.0.1122.1122.50/56a2ad31ly8ferv5ncqwdj21110v67wh.jpg",
+ "cover_image": "http://ww2.sinaimg.cn/crop.0.0.920.300/56a2ad31gw1f3jqusd7wzj20pk08c79s.jpg",
+ "cover_image_phone": "http://ww1.sinaimg.cn/crop.0.0.640.640.640/549d0121tw1egm1kjly3jj20hs0hsq4f.jpg",
+ "profile_url": "fashionguru",
+ "domain": "fashionguru",
"weihao": "",
"gender": "m",
- "followers_count": 60881286,
- "friends_count": 3027,
- "pagefriends_count": 2694,
- "statuses_count": 89351,
+ "followers_count": 1463893,
+ "friends_count": 840,
+ "pagefriends_count": 0,
+ "statuses_count": 9330,
"video_status_count": 0,
"favourites_count": 1,
- "created_at": "Sun Jul 22 02:28:35 +0800 2012",
+ "created_at": "Thu Sep 10 13:52:03 +0800 2009",
"following": false,
- "allow_all_act_msg": false,
- "geo_enabled": false,
+ "allow_all_act_msg": true,
+ "geo_enabled": true,
"verified": true,
- "verified_type": 3,
+ "verified_type": 0,
"remark": "",
"insecurity": {
"sexual_content": false
},
- "ptype": 0,
+ "ptype": 3,
"allow_all_comment": true,
- "avatar_large": "http://tva1.sinaimg.cn/crop.0.3.1018.1018.180/a716fd45gw1ev7q2k8japj20sg0sg779.jpg",
- "avatar_hd": "http://tva1.sinaimg.cn/crop.0.3.1018.1018.1024/a716fd45gw1ev7q2k8japj20sg0sg779.jpg",
- "verified_reason": "《人民日报》法人微博",
- "verified_trade": "",
+ "avatar_large": "http://tvax1.sinaimg.cn/crop.162.0.1122.1122.180/56a2ad31ly8ferv5ncqwdj21110v67wh.jpg",
+ "avatar_hd": "http://tvax1.sinaimg.cn/crop.162.0.1122.1122.1024/56a2ad31ly8ferv5ncqwdj21110v67wh.jpg",
+ "verified_reason": "时尚达人 杂志时尚专栏作家、时尚博主 微博尤物志合作达人 微博签约自媒体",
+ "verified_trade": "1095",
"verified_reason_url": "",
"verified_source": "",
"verified_source_url": "",
- "verified_state": 2,
+ "verified_state": 0,
"verified_level": 3,
- "verified_type_ext": 0,
+ "verified_type_ext": 1,
"has_service_tel": false,
- "verified_reason_modified": "辽宁科技大学官方微博,教育官微联盟成员",
+ "verified_reason_modified": "",
"verified_contact_name": "",
"verified_contact_email": "",
"verified_contact_mobile": "",
@@ -2319,16 +5110,17 @@
"like": false,
"like_me": false,
"online_status": 0,
- "bi_followers_count": 305,
+ "bi_followers_count": 529,
"lang": "zh-cn",
"star": 0,
"mbtype": 12,
"mbrank": 6,
"block_word": 0,
"block_app": 1,
+ "ability_tags": "时尚潮人,潮人潮牌",
"credit_score": 80,
- "user_ability": 10814212,
- "cardid": "star_583",
+ "user_ability": 10268,
+ "cardid": "star_005",
"urank": 48,
"story_read_state": -1,
"vclub_member": 0
@@ -2337,7 +5129,7 @@
"comments_count": 0,
"attitudes_count": 0,
"pending_approval_count": 0,
- "isLongText": true,
+ "isLongText": false,
"hide_flag": 0,
"mlevel": 0,
"visible": {
@@ -2352,48 +5144,48 @@
"mblogtype": 0,
"userType": 0,
"more_info_type": 0,
- "cardid": "star_583",
+ "cardid": "star_357",
"positive_recom_flag": 0,
"content_auth": 0,
"gif_ids": "",
"is_show_bulletin": 2,
"comment_manage_info": {
"comment_permission_type": -1,
- "approval_comment_type": 1
+ "approval_comment_type": 0
}
}
},
{
- "created_at": "Wed Aug 08 20:10:24 +0800 2018",
- "id": 4270836464024654,
- "rootid": 4270836464024654,
- "floor_number": 7,
- "text": "祖国加油,",
"disable_reply": 0,
+ "created_at": "Wed Jun 21 00:23:36 +0800 2017",
+ "id": 4120871612423833,
+ "rootid": 4120871612423833,
+ "floor_number": 202,
+ "text": "感觉其他的不管是OS还是UI都没有锤子做的好",
"user": {
- "id": 6305570545,
- "idstr": "6305570545",
+ "id": 5816766564,
+ "idstr": "5816766564",
"class": 1,
- "screen_name": "四石居士2017",
- "name": "四石居士2017",
- "province": "44",
- "city": "1",
- "location": "广东 广州",
- "description": "平庸将你的心灵烘干到没有一丝水分,然后荣光才会拨动你心灵最深处的弦。",
+ "screen_name": "光合F",
+ "name": "光合F",
+ "province": "15",
+ "city": "1000",
+ "location": "内蒙古",
+ "description": "",
"url": "",
- "profile_image_url": "http://tvax2.sinaimg.cn/crop.0.0.996.996.50/006SJwWJly8fscz60r3f0j30ro0rojwh.jpg",
+ "profile_image_url": "http://tvax2.sinaimg.cn/crop.0.0.996.996.50/006lEyHyly8fgjy9tr7t9j30ro0roq4v.jpg",
"cover_image_phone": "http://ww1.sinaimg.cn/crop.0.0.640.640.640/549d0121tw1egm1kjly3jj20hs0hsq4f.jpg",
- "profile_url": "u/6305570545",
+ "profile_url": "u/5816766564",
"domain": "",
"weihao": "",
"gender": "m",
- "followers_count": 30,
- "friends_count": 31,
- "pagefriends_count": 6,
- "statuses_count": 9,
+ "followers_count": 4,
+ "friends_count": 2,
+ "pagefriends_count": 0,
+ "statuses_count": 3,
"video_status_count": 0,
"favourites_count": 1,
- "created_at": "Tue Jul 11 21:06:37 +0800 2017",
+ "created_at": "Thu Dec 31 19:56:45 +0800 2015",
"following": false,
"allow_all_act_msg": false,
"geo_enabled": true,
@@ -2405,8 +5197,8 @@
},
"ptype": 0,
"allow_all_comment": true,
- "avatar_large": "http://tvax2.sinaimg.cn/crop.0.0.996.996.180/006SJwWJly8fscz60r3f0j30ro0rojwh.jpg",
- "avatar_hd": "http://tvax2.sinaimg.cn/crop.0.0.996.996.1024/006SJwWJly8fscz60r3f0j30ro0rojwh.jpg",
+ "avatar_large": "http://tvax2.sinaimg.cn/crop.0.0.996.996.180/006lEyHyly8fgjy9tr7t9j30ro0roq4v.jpg",
+ "avatar_hd": "http://tvax2.sinaimg.cn/crop.0.0.996.996.1024/006lEyHyly8fgjy9tr7t9j30ro0roq4v.jpg",
"verified_reason": "",
"verified_trade": "",
"verified_reason_url": "",
@@ -2416,29 +5208,28 @@
"like": false,
"like_me": false,
"online_status": 0,
- "bi_followers_count": 1,
+ "bi_followers_count": 0,
"lang": "zh-cn",
"star": 0,
- "mbtype": 2,
- "mbrank": 1,
+ "mbtype": 0,
+ "mbrank": 0,
"block_word": 0,
"block_app": 0,
"credit_score": 80,
- "user_ability": 2097152,
- "urank": 9,
+ "user_ability": 0,
+ "urank": 4,
"story_read_state": -1,
"vclub_member": 0
},
- "mid": "4270836464024654",
- "idstr": "4270836464024654",
+ "mid": "4120871612423833",
+ "idstr": "4120871612423833",
"status": {
- "created_at": "Wed Aug 08 20:09:51 +0800 2018",
- "id": 4270836326031924,
- "idstr": "4270836326031924",
- "mid": "4270836326031924",
+ "created_at": "Tue Jun 20 22:46:46 +0800 2017",
+ "id": 4120847239309675,
+ "idstr": "4120847239309675",
+ "mid": "4120847239309675",
"can_edit": false,
- "text": "【商务部新闻发言人就中方对160亿美元自美进口产品采取反制措施发表谈话】美方决定自8月23日起对160亿美元中国输美产品加征25%的关税,又一次将国内法凌驾于国际法之上,是十分无理的做法。中方为维护自身正当权益和多边贸易体制,不得不做出必要反制,决定对160亿美元自美进口产品加征25%的关税,并与",
- "textLength": 302,
+ "text": "没什么,而且内部争议很大...",
"source_allowclick": 0,
"source_type": 1,
"source": "微博 weibo.com",
@@ -2447,65 +5238,58 @@
"in_reply_to_status_id": "",
"in_reply_to_user_id": "",
"in_reply_to_screen_name": "",
- "pic_urls": [
- {
- "thumbnail_pic": "http://wx3.sinaimg.cn/thumbnail/a716fd45ly1fu2jvzgsy3j20c80c8tdp.jpg"
- }
- ],
- "thumbnail_pic": "http://wx3.sinaimg.cn/thumbnail/a716fd45ly1fu2jvzgsy3j20c80c8tdp.jpg",
- "bmiddle_pic": "http://wx3.sinaimg.cn/bmiddle/a716fd45ly1fu2jvzgsy3j20c80c8tdp.jpg",
- "original_pic": "http://wx3.sinaimg.cn/large/a716fd45ly1fu2jvzgsy3j20c80c8tdp.jpg",
+ "pic_urls": [],
"geo": null,
"is_paid": false,
"mblog_vip_type": 0,
"user": {
- "id": 2803301701,
- "idstr": "2803301701",
+ "id": 1640571365,
+ "idstr": "1640571365",
"class": 1,
- "screen_name": "人民日报",
- "name": "人民日报",
+ "screen_name": "罗永浩",
+ "name": "罗永浩",
"province": "11",
- "city": "1000",
- "location": "北京",
- "description": "人民日报法人微博。参与、沟通、记录时代。",
- "url": "",
- "profile_image_url": "http://tva1.sinaimg.cn/crop.0.3.1018.1018.50/a716fd45gw1ev7q2k8japj20sg0sg779.jpg",
- "cover_image": "http://wx4.sinaimg.cn/crop.0.0.920.300/a716fd45ly1fpjoldh9kaj20pk08cal8.jpg",
- "cover_image_phone": "http://wx1.sinaimg.cn/crop.0.0.640.640.640/a716fd45ly1fpjoivacakj20yi0yiwkb.jpg;http://wx2.sinaimg.cn/crop.0.0.640.640.640/a716fd45ly1foyq0ha1vwj20e80e8wf7.jpg",
- "profile_url": "rmrb",
- "domain": "rmrb",
+ "city": "1",
+ "location": "北京 东城区",
+ "description": "Smartisan,智能机时代的工匠",
+ "url": "http://www.t.tt",
+ "profile_image_url": "http://tvax1.sinaimg.cn/crop.0.0.1010.1010.50/61c921e5ly8fuhr3eywbnj20s20s2wgo.jpg",
+ "cover_image": "http://wx2.sinaimg.cn/crop.0.0.920.300/61c921e5ly1fughtl9m14j20pk08c0yj.jpg",
+ "cover_image_phone": "http://wx1.sinaimg.cn/crop.0.0.640.640.640/61c921e5ly1fughveoyygj20u00u048j.jpg",
+ "profile_url": "laoluoyonghao",
+ "domain": "laoluoyonghao",
"weihao": "",
"gender": "m",
- "followers_count": 60881286,
- "friends_count": 3027,
- "pagefriends_count": 2694,
- "statuses_count": 89351,
+ "followers_count": 15178843,
+ "friends_count": 2470,
+ "pagefriends_count": 6,
+ "statuses_count": 31295,
"video_status_count": 0,
- "favourites_count": 1,
- "created_at": "Sun Jul 22 02:28:35 +0800 2012",
+ "favourites_count": 6080,
+ "created_at": "Fri Aug 28 16:35:10 +0800 2009",
"following": false,
"allow_all_act_msg": false,
- "geo_enabled": false,
+ "geo_enabled": true,
"verified": true,
- "verified_type": 3,
+ "verified_type": 0,
"remark": "",
"insecurity": {
"sexual_content": false
},
- "ptype": 0,
+ "ptype": 3,
"allow_all_comment": true,
- "avatar_large": "http://tva1.sinaimg.cn/crop.0.3.1018.1018.180/a716fd45gw1ev7q2k8japj20sg0sg779.jpg",
- "avatar_hd": "http://tva1.sinaimg.cn/crop.0.3.1018.1018.1024/a716fd45gw1ev7q2k8japj20sg0sg779.jpg",
- "verified_reason": "《人民日报》法人微博",
- "verified_trade": "",
+ "avatar_large": "http://tvax1.sinaimg.cn/crop.0.0.1010.1010.180/61c921e5ly8fuhr3eywbnj20s20s2wgo.jpg",
+ "avatar_hd": "http://tvax1.sinaimg.cn/crop.0.0.1010.1010.1024/61c921e5ly8fuhr3eywbnj20s20s2wgo.jpg",
+ "verified_reason": "锤子科技 CEO",
+ "verified_trade": "1203",
"verified_reason_url": "",
"verified_source": "",
"verified_source_url": "",
- "verified_state": 2,
+ "verified_state": 0,
"verified_level": 3,
- "verified_type_ext": 0,
+ "verified_type_ext": 1,
"has_service_tel": false,
- "verified_reason_modified": "辽宁科技大学官方微博,教育官微联盟成员",
+ "verified_reason_modified": "",
"verified_contact_name": "",
"verified_contact_email": "",
"verified_contact_mobile": "",
@@ -2513,25 +5297,171 @@
"like": false,
"like_me": false,
"online_status": 0,
- "bi_followers_count": 305,
+ "bi_followers_count": 1933,
"lang": "zh-cn",
"star": 0,
- "mbtype": 12,
- "mbrank": 6,
+ "mbtype": 13,
+ "mbrank": 7,
"block_word": 0,
"block_app": 1,
"credit_score": 80,
- "user_ability": 10814212,
- "cardid": "star_583",
+ "user_ability": 2100748,
+ "cardid": "vip_012",
"urank": 48,
"story_read_state": -1,
"vclub_member": 0
},
+ "retweeted_status": {
+ "created_at": "Tue Jun 20 22:45:46 +0800 2017",
+ "id": 4120846992328770,
+ "idstr": "4120846992328770",
+ "mid": "4120846992328770",
+ "can_edit": false,
+ "text": "锤子的这个自适应状态栏真的是太漂亮了,之前一直没有开过这个功能[允悲]@锤子科技官方论坛 @锤子科技客服 @锤子科技 @罗永浩 @坚果手机",
+ "textLength": 131,
+ "source_allowclick": 1,
+ "source_type": 1,
+ "source": "坚果手机 Pro",
+ "favorited": false,
+ "truncated": false,
+ "in_reply_to_status_id": "",
+ "in_reply_to_user_id": "",
+ "in_reply_to_screen_name": "",
+ "pic_urls": [
+ {
+ "thumbnail_pic": "http://wx3.sinaimg.cn/thumbnail/81f40545gy1fgs1s8vqepj20qo1beawa.jpg"
+ },
+ {
+ "thumbnail_pic": "http://wx4.sinaimg.cn/thumbnail/81f40545gy1fgs1slgohuj20qo1bex1d.jpg"
+ },
+ {
+ "thumbnail_pic": "http://wx4.sinaimg.cn/thumbnail/81f40545gy1fgs1suwohjj20qo1beh7m.jpg"
+ },
+ {
+ "thumbnail_pic": "http://wx3.sinaimg.cn/thumbnail/81f40545gy1fgs1t3tj68j20qo1be1e8.jpg"
+ },
+ {
+ "thumbnail_pic": "http://wx2.sinaimg.cn/thumbnail/81f40545gy1fgs1tiboqmj20qo1beb29.jpg"
+ },
+ {
+ "thumbnail_pic": "http://wx3.sinaimg.cn/thumbnail/81f40545gy1fgs1ttjqefj20qo1bekeo.jpg"
+ },
+ {
+ "thumbnail_pic": "http://wx2.sinaimg.cn/thumbnail/81f40545gy1fgs1u57qenj20qo1be1kx.jpg"
+ },
+ {
+ "thumbnail_pic": "http://wx1.sinaimg.cn/thumbnail/81f40545gy1fgs1ukhrg3j20qo1be7wh.jpg"
+ },
+ {
+ "thumbnail_pic": "http://wx3.sinaimg.cn/thumbnail/81f40545gy1fgs1umzgkrj20qo1be4qp.jpg"
+ }
+ ],
+ "thumbnail_pic": "http://wx3.sinaimg.cn/thumbnail/81f40545gy1fgs1s8vqepj20qo1beawa.jpg",
+ "bmiddle_pic": "http://wx3.sinaimg.cn/bmiddle/81f40545gy1fgs1s8vqepj20qo1beawa.jpg",
+ "original_pic": "http://wx3.sinaimg.cn/large/81f40545gy1fgs1s8vqepj20qo1beawa.jpg",
+ "geo": null,
+ "is_paid": false,
+ "mblog_vip_type": 0,
+ "user": {
+ "id": 2180252997,
+ "idstr": "2180252997",
+ "class": 1,
+ "screen_name": "Flipwell",
+ "name": "Flipwell",
+ "province": "100",
+ "city": "1000",
+ "location": "其他",
+ "description": "",
+ "url": "",
+ "profile_image_url": "http://tvax2.sinaimg.cn/crop.0.0.960.960.50/81f40545ly8frl8piozpgj20qo0qomzk.jpg",
+ "cover_image_phone": "http://ww1.sinaimg.cn/crop.0.0.640.640.640/81c3f43bgw1f7n92fccssj20ku0kuaa2.jpg",
+ "profile_url": "u/2180252997",
+ "domain": "",
+ "weihao": "",
+ "gender": "m",
+ "followers_count": 75,
+ "friends_count": 263,
+ "pagefriends_count": 1,
+ "statuses_count": 14,
+ "video_status_count": 0,
+ "favourites_count": 8,
+ "created_at": "Wed Jun 15 14:06:51 +0800 2011",
+ "following": false,
+ "allow_all_act_msg": false,
+ "geo_enabled": true,
+ "verified": false,
+ "verified_type": -1,
+ "remark": "",
+ "insecurity": {
+ "sexual_content": false
+ },
+ "ptype": 0,
+ "allow_all_comment": false,
+ "avatar_large": "http://tvax2.sinaimg.cn/crop.0.0.960.960.180/81f40545ly8frl8piozpgj20qo0qomzk.jpg",
+ "avatar_hd": "http://tvax2.sinaimg.cn/crop.0.0.960.960.1024/81f40545ly8frl8piozpgj20qo0qomzk.jpg",
+ "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": 11,
+ "lang": "zh-cn",
+ "star": 0,
+ "mbtype": 0,
+ "mbrank": 0,
+ "block_word": 0,
+ "block_app": 0,
+ "credit_score": 80,
+ "user_ability": 2,
+ "urank": 28,
+ "story_read_state": -1,
+ "vclub_member": 0
+ },
+ "annotations": [
+ {
+ "client_mblogid": "ddc392a3-cc5d-44d6-9804-284cfdf75acf"
+ },
+ {
+ "mapi_request": true
+ }
+ ],
+ "reposts_count": 0,
+ "comments_count": 0,
+ "attitudes_count": 0,
+ "pending_approval_count": 0,
+ "isLongText": false,
+ "hide_flag": 0,
+ "mlevel": 0,
+ "visible": {
+ "type": 0,
+ "list_id": 0
+ },
+ "biz_feature": 4294967300,
+ "hasActionTypeCard": 0,
+ "darwin_tags": [],
+ "hot_weibo_tags": [],
+ "text_tag_tips": [],
+ "mblogtype": 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
+ }
+ },
"reposts_count": 0,
"comments_count": 0,
"attitudes_count": 0,
"pending_approval_count": 0,
- "isLongText": true,
+ "isLongText": false,
"hide_flag": 0,
"mlevel": 0,
"visible": {
@@ -2546,48 +5476,47 @@
"mblogtype": 0,
"userType": 0,
"more_info_type": 0,
- "cardid": "star_583",
"positive_recom_flag": 0,
"content_auth": 0,
"gif_ids": "",
"is_show_bulletin": 2,
"comment_manage_info": {
"comment_permission_type": -1,
- "approval_comment_type": 1
+ "approval_comment_type": 0
}
}
},
{
- "created_at": "Wed Aug 08 20:10:06 +0800 2018",
- "id": 4270836393420839,
- "rootid": 4270836393420839,
- "floor_number": 2,
- "text": "中国不惹事 但也不怕事[吃瓜]",
"disable_reply": 0,
+ "created_at": "Tue Jun 20 08:51:04 +0800 2017",
+ "id": 4120636923628094,
+ "rootid": 4120636923628094,
+ "floor_number": 59,
+ "text": "有些事确实是明摆着的 不用别人说 自己心里应该也明白",
"user": {
- "id": 5665044473,
- "idstr": "5665044473",
+ "id": 5816766564,
+ "idstr": "5816766564",
"class": 1,
- "screen_name": "小灰灰卡哇伊",
- "name": "小灰灰卡哇伊",
- "province": "36",
- "city": "1",
- "location": "江西 南昌",
- "description": "别看我 我现在最想做的事就是自杀",
+ "screen_name": "光合F",
+ "name": "光合F",
+ "province": "15",
+ "city": "1000",
+ "location": "内蒙古",
+ "description": "",
"url": "",
- "profile_image_url": "http://tvax4.sinaimg.cn/crop.0.0.996.996.50/006bnWR3ly8frenx3u2rqj30ro0roq6x.jpg",
+ "profile_image_url": "http://tvax2.sinaimg.cn/crop.0.0.996.996.50/006lEyHyly8fgjy9tr7t9j30ro0roq4v.jpg",
"cover_image_phone": "http://ww1.sinaimg.cn/crop.0.0.640.640.640/549d0121tw1egm1kjly3jj20hs0hsq4f.jpg",
- "profile_url": "u/5665044473",
+ "profile_url": "u/5816766564",
"domain": "",
"weihao": "",
- "gender": "f",
- "followers_count": 68,
- "friends_count": 50,
- "pagefriends_count": 1,
- "statuses_count": 50,
+ "gender": "m",
+ "followers_count": 4,
+ "friends_count": 2,
+ "pagefriends_count": 0,
+ "statuses_count": 3,
"video_status_count": 0,
- "favourites_count": 2,
- "created_at": "Thu Jul 30 17:40:05 +0800 2015",
+ "favourites_count": 1,
+ "created_at": "Thu Dec 31 19:56:45 +0800 2015",
"following": false,
"allow_all_act_msg": false,
"geo_enabled": true,
@@ -2599,8 +5528,8 @@
},
"ptype": 0,
"allow_all_comment": true,
- "avatar_large": "http://tvax4.sinaimg.cn/crop.0.0.996.996.180/006bnWR3ly8frenx3u2rqj30ro0roq6x.jpg",
- "avatar_hd": "http://tvax4.sinaimg.cn/crop.0.0.996.996.1024/006bnWR3ly8frenx3u2rqj30ro0roq6x.jpg",
+ "avatar_large": "http://tvax2.sinaimg.cn/crop.0.0.996.996.180/006lEyHyly8fgjy9tr7t9j30ro0roq4v.jpg",
+ "avatar_hd": "http://tvax2.sinaimg.cn/crop.0.0.996.996.1024/006lEyHyly8fgjy9tr7t9j30ro0roq4v.jpg",
"verified_reason": "",
"verified_trade": "",
"verified_reason_url": "",
@@ -2610,7 +5539,7 @@
"like": false,
"like_me": false,
"online_status": 0,
- "bi_followers_count": 10,
+ "bi_followers_count": 0,
"lang": "zh-cn",
"star": 0,
"mbtype": 0,
@@ -2618,21 +5547,20 @@
"block_word": 0,
"block_app": 0,
"credit_score": 80,
- "user_ability": 33555456,
- "urank": 9,
+ "user_ability": 0,
+ "urank": 4,
"story_read_state": -1,
"vclub_member": 0
},
- "mid": "4270836393420839",
- "idstr": "4270836393420839",
+ "mid": "4120636923628094",
+ "idstr": "4120636923628094",
"status": {
- "created_at": "Wed Aug 08 20:09:51 +0800 2018",
- "id": 4270836326031924,
- "idstr": "4270836326031924",
- "mid": "4270836326031924",
+ "created_at": "Tue Jun 20 08:44:01 +0800 2017",
+ "id": 4120635154110186,
+ "idstr": "4120635154110186",
+ "mid": "4120635154110186",
"can_edit": false,
- "text": "【商务部新闻发言人就中方对160亿美元自美进口产品采取反制措施发表谈话】美方决定自8月23日起对160亿美元中国输美产品加征25%的关税,又一次将国内法凌驾于国际法之上,是十分无理的做法。中方为维护自身正当权益和多边贸易体制,不得不做出必要反制,决定对160亿美元自美进口产品加征25%的关税,并与",
- "textLength": 302,
+ "text": "1.嗯,我大概知道那些锤黑是怎么回事了[微笑]。2.除非有意外,否则我可能不会去试格力手机,但我不会没试过就乱骂。3.企业家不能指望别人也能做到没试过就不乱骂。4.不排除“语出惊人”后面的话是被断章取义的。",
"source_allowclick": 0,
"source_type": 1,
"source": "微博 weibo.com",
@@ -2641,65 +5569,58 @@
"in_reply_to_status_id": "",
"in_reply_to_user_id": "",
"in_reply_to_screen_name": "",
- "pic_urls": [
- {
- "thumbnail_pic": "http://wx3.sinaimg.cn/thumbnail/a716fd45ly1fu2jvzgsy3j20c80c8tdp.jpg"
- }
- ],
- "thumbnail_pic": "http://wx3.sinaimg.cn/thumbnail/a716fd45ly1fu2jvzgsy3j20c80c8tdp.jpg",
- "bmiddle_pic": "http://wx3.sinaimg.cn/bmiddle/a716fd45ly1fu2jvzgsy3j20c80c8tdp.jpg",
- "original_pic": "http://wx3.sinaimg.cn/large/a716fd45ly1fu2jvzgsy3j20c80c8tdp.jpg",
+ "pic_urls": [],
"geo": null,
"is_paid": false,
"mblog_vip_type": 0,
"user": {
- "id": 2803301701,
- "idstr": "2803301701",
+ "id": 1640571365,
+ "idstr": "1640571365",
"class": 1,
- "screen_name": "人民日报",
- "name": "人民日报",
+ "screen_name": "罗永浩",
+ "name": "罗永浩",
"province": "11",
- "city": "1000",
- "location": "北京",
- "description": "人民日报法人微博。参与、沟通、记录时代。",
- "url": "",
- "profile_image_url": "http://tva1.sinaimg.cn/crop.0.3.1018.1018.50/a716fd45gw1ev7q2k8japj20sg0sg779.jpg",
- "cover_image": "http://wx4.sinaimg.cn/crop.0.0.920.300/a716fd45ly1fpjoldh9kaj20pk08cal8.jpg",
- "cover_image_phone": "http://wx1.sinaimg.cn/crop.0.0.640.640.640/a716fd45ly1fpjoivacakj20yi0yiwkb.jpg;http://wx2.sinaimg.cn/crop.0.0.640.640.640/a716fd45ly1foyq0ha1vwj20e80e8wf7.jpg",
- "profile_url": "rmrb",
- "domain": "rmrb",
+ "city": "1",
+ "location": "北京 东城区",
+ "description": "Smartisan,智能机时代的工匠",
+ "url": "http://www.t.tt",
+ "profile_image_url": "http://tvax1.sinaimg.cn/crop.0.0.1010.1010.50/61c921e5ly8fuhr3eywbnj20s20s2wgo.jpg",
+ "cover_image": "http://wx2.sinaimg.cn/crop.0.0.920.300/61c921e5ly1fughtl9m14j20pk08c0yj.jpg",
+ "cover_image_phone": "http://wx1.sinaimg.cn/crop.0.0.640.640.640/61c921e5ly1fughveoyygj20u00u048j.jpg",
+ "profile_url": "laoluoyonghao",
+ "domain": "laoluoyonghao",
"weihao": "",
"gender": "m",
- "followers_count": 60881286,
- "friends_count": 3027,
- "pagefriends_count": 2694,
- "statuses_count": 89351,
+ "followers_count": 15178843,
+ "friends_count": 2470,
+ "pagefriends_count": 6,
+ "statuses_count": 31295,
"video_status_count": 0,
- "favourites_count": 1,
- "created_at": "Sun Jul 22 02:28:35 +0800 2012",
+ "favourites_count": 6080,
+ "created_at": "Fri Aug 28 16:35:10 +0800 2009",
"following": false,
"allow_all_act_msg": false,
- "geo_enabled": false,
+ "geo_enabled": true,
"verified": true,
- "verified_type": 3,
+ "verified_type": 0,
"remark": "",
"insecurity": {
"sexual_content": false
},
- "ptype": 0,
+ "ptype": 3,
"allow_all_comment": true,
- "avatar_large": "http://tva1.sinaimg.cn/crop.0.3.1018.1018.180/a716fd45gw1ev7q2k8japj20sg0sg779.jpg",
- "avatar_hd": "http://tva1.sinaimg.cn/crop.0.3.1018.1018.1024/a716fd45gw1ev7q2k8japj20sg0sg779.jpg",
- "verified_reason": "《人民日报》法人微博",
- "verified_trade": "",
+ "avatar_large": "http://tvax1.sinaimg.cn/crop.0.0.1010.1010.180/61c921e5ly8fuhr3eywbnj20s20s2wgo.jpg",
+ "avatar_hd": "http://tvax1.sinaimg.cn/crop.0.0.1010.1010.1024/61c921e5ly8fuhr3eywbnj20s20s2wgo.jpg",
+ "verified_reason": "锤子科技 CEO",
+ "verified_trade": "1203",
"verified_reason_url": "",
"verified_source": "",
"verified_source_url": "",
- "verified_state": 2,
+ "verified_state": 0,
"verified_level": 3,
- "verified_type_ext": 0,
+ "verified_type_ext": 1,
"has_service_tel": false,
- "verified_reason_modified": "辽宁科技大学官方微博,教育官微联盟成员",
+ "verified_reason_modified": "",
"verified_contact_name": "",
"verified_contact_email": "",
"verified_contact_mobile": "",
@@ -2707,25 +5628,147 @@
"like": false,
"like_me": false,
"online_status": 0,
- "bi_followers_count": 305,
+ "bi_followers_count": 1933,
"lang": "zh-cn",
"star": 0,
- "mbtype": 12,
- "mbrank": 6,
+ "mbtype": 13,
+ "mbrank": 7,
"block_word": 0,
"block_app": 1,
"credit_score": 80,
- "user_ability": 10814212,
- "cardid": "star_583",
+ "user_ability": 2100748,
+ "cardid": "vip_012",
"urank": 48,
"story_read_state": -1,
"vclub_member": 0
},
+ "retweeted_status": {
+ "created_at": "Mon Jun 19 07:18:07 +0800 2017",
+ "id": 4120251149059112,
+ "idstr": "4120251149059112",
+ "mid": "4120251149059112",
+ "can_edit": false,
+ "text": "【董明珠:格力手机就是有点贵 你们不识货 谁用谁说好】格力近日上线第三代格力手机“色界”,但是因为配置陈旧,有低配高价之嫌,所以销量似乎不太好;对此,我们的董小姐,董明珠谈格力手机再语出惊人:格力手机质量很好,就是有点贵,你们不识货,谁用谁说好。",
+ "textLength": 244,
+ "source_allowclick": 0,
+ "source_type": 1,
+ "source": "即刻笔记",
+ "favorited": false,
+ "truncated": false,
+ "in_reply_to_status_id": "",
+ "in_reply_to_user_id": "",
+ "in_reply_to_screen_name": "",
+ "pic_urls": [
+ {
+ "thumbnail_pic": "http://wx1.sinaimg.cn/thumbnail/989f95cdly1fgq5f4gg0wj20b407ft8q.jpg"
+ }
+ ],
+ "thumbnail_pic": "http://wx1.sinaimg.cn/thumbnail/989f95cdly1fgq5f4gg0wj20b407ft8q.jpg",
+ "bmiddle_pic": "http://wx1.sinaimg.cn/bmiddle/989f95cdly1fgq5f4gg0wj20b407ft8q.jpg",
+ "original_pic": "http://wx1.sinaimg.cn/large/989f95cdly1fgq5f4gg0wj20b407ft8q.jpg",
+ "geo": null,
+ "is_paid": false,
+ "mblog_vip_type": 0,
+ "user": {
+ "id": 2560595405,
+ "idstr": "2560595405",
+ "class": 1,
+ "screen_name": "互联网观察员",
+ "name": "互联网观察员",
+ "province": "44",
+ "city": "3",
+ "location": "广东 深圳",
+ "description": "专注IT科技、数码、软件硬件、手机、os、安卓、互联网等相关领域。",
+ "url": "",
+ "profile_image_url": "http://tva2.sinaimg.cn/crop.0.0.180.180.50/989f95cdjw1e8qgp5bmzyj2050050aa8.jpg",
+ "cover_image_phone": "http://ww1.sinaimg.cn/crop.0.0.640.640.640/549d0121tw1egm1kjly3jj20hs0hsq4f.jpg",
+ "profile_url": "539682348",
+ "domain": "",
+ "weihao": "539682348",
+ "gender": "m",
+ "followers_count": 1115650,
+ "friends_count": 204,
+ "pagefriends_count": 0,
+ "statuses_count": 3544,
+ "video_status_count": 0,
+ "favourites_count": 1,
+ "created_at": "Fri Dec 30 16:48:48 +0800 2011",
+ "following": false,
+ "allow_all_act_msg": false,
+ "geo_enabled": true,
+ "verified": true,
+ "verified_type": 0,
+ "remark": "",
+ "insecurity": {
+ "sexual_content": false
+ },
+ "ptype": 0,
+ "allow_all_comment": true,
+ "avatar_large": "http://tva2.sinaimg.cn/crop.0.0.180.180.180/989f95cdjw1e8qgp5bmzyj2050050aa8.jpg",
+ "avatar_hd": "http://tva2.sinaimg.cn/crop.0.0.180.180.1024/989f95cdjw1e8qgp5bmzyj2050050aa8.jpg",
+ "verified_reason": "知名互联网资讯博主",
+ "verified_trade": "1082",
+ "verified_reason_url": "",
+ "verified_source": "",
+ "verified_source_url": "",
+ "verified_state": 0,
+ "verified_level": 3,
+ "verified_type_ext": 1,
+ "has_service_tel": false,
+ "verified_reason_modified": "",
+ "verified_contact_name": "",
+ "verified_contact_email": "",
+ "verified_contact_mobile": "",
+ "follow_me": false,
+ "like": false,
+ "like_me": false,
+ "online_status": 0,
+ "bi_followers_count": 139,
+ "lang": "zh-cn",
+ "star": 0,
+ "mbtype": 12,
+ "mbrank": 6,
+ "block_word": 0,
+ "block_app": 1,
+ "credit_score": 80,
+ "user_ability": 8,
+ "urank": 41,
+ "story_read_state": -1,
+ "vclub_member": 0
+ },
+ "reposts_count": 0,
+ "comments_count": 0,
+ "attitudes_count": 0,
+ "pending_approval_count": 0,
+ "isLongText": false,
+ "hide_flag": 0,
+ "mlevel": 0,
+ "visible": {
+ "type": 0,
+ "list_id": 0
+ },
+ "biz_feature": 0,
+ "hasActionTypeCard": 0,
+ "darwin_tags": [],
+ "hot_weibo_tags": [],
+ "text_tag_tips": [],
+ "mblogtype": 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
+ }
+ },
"reposts_count": 0,
"comments_count": 0,
"attitudes_count": 0,
"pending_approval_count": 0,
- "isLongText": true,
+ "isLongText": false,
"hide_flag": 0,
"mlevel": 0,
"visible": {
@@ -2740,48 +5783,47 @@
"mblogtype": 0,
"userType": 0,
"more_info_type": 0,
- "cardid": "star_583",
"positive_recom_flag": 0,
"content_auth": 0,
"gif_ids": "",
"is_show_bulletin": 2,
"comment_manage_info": {
"comment_permission_type": -1,
- "approval_comment_type": 1
+ "approval_comment_type": 0
}
}
},
{
- "created_at": "Wed Aug 08 20:10:06 +0800 2018",
- "id": 4270836389221742,
- "rootid": 4270836389221742,
- "floor_number": 1,
- "text": "支持中国",
"disable_reply": 0,
+ "created_at": "Tue Jun 13 23:47:08 +0800 2017",
+ "id": 4118325715887689,
+ "rootid": 4118325715887689,
+ "floor_number": 444,
+ "text": "希望小米能有更多具有开创性意义的产品",
"user": {
- "id": 5167645738,
- "idstr": "5167645738",
+ "id": 5816766564,
+ "idstr": "5816766564",
"class": 1,
- "screen_name": "我也是无语鹅",
- "name": "我也是无语鹅",
- "province": "100",
+ "screen_name": "光合F",
+ "name": "光合F",
+ "province": "15",
"city": "1000",
- "location": "其他",
- "description": "视奸的nmsl",
+ "location": "内蒙古",
+ "description": "",
"url": "",
- "profile_image_url": "http://tvax2.sinaimg.cn/crop.0.0.996.996.50/005DIUIOly8fs9znvouyxj30ro0ro75e.jpg",
+ "profile_image_url": "http://tvax2.sinaimg.cn/crop.0.0.996.996.50/006lEyHyly8fgjy9tr7t9j30ro0roq4v.jpg",
"cover_image_phone": "http://ww1.sinaimg.cn/crop.0.0.640.640.640/549d0121tw1egm1kjly3jj20hs0hsq4f.jpg",
- "profile_url": "u/5167645738",
+ "profile_url": "u/5816766564",
"domain": "",
"weihao": "",
- "gender": "f",
- "followers_count": 61,
- "friends_count": 286,
- "pagefriends_count": 13,
- "statuses_count": 277,
+ "gender": "m",
+ "followers_count": 4,
+ "friends_count": 2,
+ "pagefriends_count": 0,
+ "statuses_count": 3,
"video_status_count": 0,
- "favourites_count": 11,
- "created_at": "Tue Jun 03 23:30:13 +0800 2014",
+ "favourites_count": 1,
+ "created_at": "Thu Dec 31 19:56:45 +0800 2015",
"following": false,
"allow_all_act_msg": false,
"geo_enabled": true,
@@ -2793,8 +5835,8 @@
},
"ptype": 0,
"allow_all_comment": true,
- "avatar_large": "http://tvax2.sinaimg.cn/crop.0.0.996.996.180/005DIUIOly8fs9znvouyxj30ro0ro75e.jpg",
- "avatar_hd": "http://tvax2.sinaimg.cn/crop.0.0.996.996.1024/005DIUIOly8fs9znvouyxj30ro0ro75e.jpg",
+ "avatar_large": "http://tvax2.sinaimg.cn/crop.0.0.996.996.180/006lEyHyly8fgjy9tr7t9j30ro0roq4v.jpg",
+ "avatar_hd": "http://tvax2.sinaimg.cn/crop.0.0.996.996.1024/006lEyHyly8fgjy9tr7t9j30ro0roq4v.jpg",
"verified_reason": "",
"verified_trade": "",
"verified_reason_url": "",
@@ -2804,7 +5846,7 @@
"like": false,
"like_me": false,
"online_status": 0,
- "bi_followers_count": 1,
+ "bi_followers_count": 0,
"lang": "zh-cn",
"star": 0,
"mbtype": 0,
@@ -2812,88 +5854,79 @@
"block_word": 0,
"block_app": 0,
"credit_score": 80,
- "user_ability": 2097152,
- "urank": 9,
+ "user_ability": 0,
+ "urank": 4,
"story_read_state": -1,
"vclub_member": 0
},
- "mid": "4270836389221742",
- "idstr": "4270836389221742",
+ "mid": "4118325715887689",
+ "idstr": "4118325715887689",
"status": {
- "created_at": "Wed Aug 08 20:09:51 +0800 2018",
- "id": 4270836326031924,
- "idstr": "4270836326031924",
- "mid": "4270836326031924",
+ "created_at": "Tue Jun 13 19:20:11 +0800 2017",
+ "id": 4118258535254092,
+ "idstr": "4118258535254092",
+ "mid": "4118258535254092",
"can_edit": false,
- "text": "【商务部新闻发言人就中方对160亿美元自美进口产品采取反制措施发表谈话】美方决定自8月23日起对160亿美元中国输美产品加征25%的关税,又一次将国内法凌驾于国际法之上,是十分无理的做法。中方为维护自身正当权益和多边贸易体制,不得不做出必要反制,决定对160亿美元自美进口产品加征25%的关税,并与",
- "textLength": 302,
- "source_allowclick": 0,
+ "text": "小米一直在进步,谢谢大家支持![爱你]",
+ "source_allowclick": 1,
"source_type": 1,
- "source": "微博 weibo.com",
+ "source": "小米6 变焦双摄",
"favorited": false,
"truncated": false,
"in_reply_to_status_id": "",
"in_reply_to_user_id": "",
"in_reply_to_screen_name": "",
- "pic_urls": [
- {
- "thumbnail_pic": "http://wx3.sinaimg.cn/thumbnail/a716fd45ly1fu2jvzgsy3j20c80c8tdp.jpg"
- }
- ],
- "thumbnail_pic": "http://wx3.sinaimg.cn/thumbnail/a716fd45ly1fu2jvzgsy3j20c80c8tdp.jpg",
- "bmiddle_pic": "http://wx3.sinaimg.cn/bmiddle/a716fd45ly1fu2jvzgsy3j20c80c8tdp.jpg",
- "original_pic": "http://wx3.sinaimg.cn/large/a716fd45ly1fu2jvzgsy3j20c80c8tdp.jpg",
+ "pic_urls": [],
"geo": null,
"is_paid": false,
"mblog_vip_type": 0,
"user": {
- "id": 2803301701,
- "idstr": "2803301701",
+ "id": 1749127163,
+ "idstr": "1749127163",
"class": 1,
- "screen_name": "人民日报",
- "name": "人民日报",
+ "screen_name": "雷军",
+ "name": "雷军",
"province": "11",
- "city": "1000",
- "location": "北京",
- "description": "人民日报法人微博。参与、沟通、记录时代。",
- "url": "",
- "profile_image_url": "http://tva1.sinaimg.cn/crop.0.3.1018.1018.50/a716fd45gw1ev7q2k8japj20sg0sg779.jpg",
- "cover_image": "http://wx4.sinaimg.cn/crop.0.0.920.300/a716fd45ly1fpjoldh9kaj20pk08cal8.jpg",
- "cover_image_phone": "http://wx1.sinaimg.cn/crop.0.0.640.640.640/a716fd45ly1fpjoivacakj20yi0yiwkb.jpg;http://wx2.sinaimg.cn/crop.0.0.640.640.640/a716fd45ly1foyq0ha1vwj20e80e8wf7.jpg",
- "profile_url": "rmrb",
- "domain": "rmrb",
+ "city": "8",
+ "location": "北京 海淀区",
+ "description": "小米董事长,金山软件董事长。业余爱好是天使投资。",
+ "url": "http://www.leijun.com",
+ "profile_image_url": "http://tva1.sinaimg.cn/crop.0.0.1080.1080.50/68418ffbjw8ehsussziz7j20u00u00zq.jpg",
+ "cover_image_phone": "http://ww1.sinaimg.cn/crop.0.0.640.640.640/6cf8d7ebjw1ehfr4xa8psj20hs0hsgpg.jpg",
+ "profile_url": "leijun",
+ "domain": "leijun",
"weihao": "",
"gender": "m",
- "followers_count": 60881286,
- "friends_count": 3027,
- "pagefriends_count": 2694,
- "statuses_count": 89351,
+ "followers_count": 17769240,
+ "friends_count": 1104,
+ "pagefriends_count": 4,
+ "statuses_count": 7985,
"video_status_count": 0,
- "favourites_count": 1,
- "created_at": "Sun Jul 22 02:28:35 +0800 2012",
+ "favourites_count": 43,
+ "created_at": "Mon May 31 23:07:59 +0800 2010",
"following": false,
"allow_all_act_msg": false,
- "geo_enabled": false,
+ "geo_enabled": true,
"verified": true,
- "verified_type": 3,
+ "verified_type": 0,
"remark": "",
"insecurity": {
"sexual_content": false
},
- "ptype": 0,
- "allow_all_comment": true,
- "avatar_large": "http://tva1.sinaimg.cn/crop.0.3.1018.1018.180/a716fd45gw1ev7q2k8japj20sg0sg779.jpg",
- "avatar_hd": "http://tva1.sinaimg.cn/crop.0.3.1018.1018.1024/a716fd45gw1ev7q2k8japj20sg0sg779.jpg",
- "verified_reason": "《人民日报》法人微博",
- "verified_trade": "",
+ "ptype": 1,
+ "allow_all_comment": false,
+ "avatar_large": "http://tva1.sinaimg.cn/crop.0.0.1080.1080.180/68418ffbjw8ehsussziz7j20u00u00zq.jpg",
+ "avatar_hd": "http://tva1.sinaimg.cn/crop.0.0.1080.1080.1024/68418ffbjw8ehsussziz7j20u00u00zq.jpg",
+ "verified_reason": "小米创办人,董事长兼CEO;金山软件董事长;天使投资人。",
+ "verified_trade": "1181",
"verified_reason_url": "",
"verified_source": "",
"verified_source_url": "",
- "verified_state": 2,
+ "verified_state": 0,
"verified_level": 3,
- "verified_type_ext": 0,
+ "verified_type_ext": 1,
"has_service_tel": false,
- "verified_reason_modified": "辽宁科技大学官方微博,教育官微联盟成员",
+ "verified_reason_modified": "",
"verified_contact_name": "",
"verified_contact_email": "",
"verified_contact_mobile": "",
@@ -2901,25 +5934,189 @@
"like": false,
"like_me": false,
"online_status": 0,
- "bi_followers_count": 305,
+ "bi_followers_count": 920,
"lang": "zh-cn",
"star": 0,
"mbtype": 12,
- "mbrank": 6,
+ "mbrank": 7,
"block_word": 0,
"block_app": 1,
+ "ability_tags": "内容资讯",
"credit_score": 80,
- "user_ability": 10814212,
- "cardid": "star_583",
+ "user_ability": 12,
"urank": 48,
"story_read_state": -1,
"vclub_member": 0
},
+ "retweeted_status": {
+ "created_at": "Tue Jun 13 14:13:38 +0800 2017",
+ "id": 4118181389989918,
+ "idstr": "4118181389989918",
+ "mid": "4118181389989918",
+ "can_edit": false,
+ "text": "【盘点小米拍照黑科技】年度旗舰#小米6#突破性的采用了顶配双摄: 2倍光学变焦,四轴防抖,人像模式……其实在每一款手机上,我们都极度重视拍照体验,坚持技术创新。小米历年拍照黑科技,你都体验过哪些?转发抽送一台「变焦双摄,拍人更美」的小米6! ",
+ "textLength": 240,
+ "source_allowclick": 1,
+ "source_type": 1,
+ "source": "小米6 变焦双摄",
+ "favorited": false,
+ "truncated": false,
+ "in_reply_to_status_id": "",
+ "in_reply_to_user_id": "",
+ "in_reply_to_screen_name": "",
+ "pic_urls": [
+ {
+ "thumbnail_pic": "http://wx3.sinaimg.cn/thumbnail/8345c393ly1fgjjo73pxtj21ql1qlu03.jpg"
+ },
+ {
+ "thumbnail_pic": "http://wx2.sinaimg.cn/thumbnail/8345c393ly1fgjjpis5d7j21ql1ql4lv.jpg"
+ },
+ {
+ "thumbnail_pic": "http://wx4.sinaimg.cn/thumbnail/8345c393ly1fgjjpkom6dj21qm1ql1kx.jpg"
+ },
+ {
+ "thumbnail_pic": "http://wx4.sinaimg.cn/thumbnail/8345c393ly1fgjjo5cfhaj21ql1ql4iy.jpg"
+ },
+ {
+ "thumbnail_pic": "http://wx3.sinaimg.cn/thumbnail/8345c393ly1fgjjo2aox3j21ql1ql4o8.jpg"
+ },
+ {
+ "thumbnail_pic": "http://wx2.sinaimg.cn/thumbnail/8345c393ly1fgjjo3uczxj21qm1qlawj.jpg"
+ }
+ ],
+ "thumbnail_pic": "http://wx3.sinaimg.cn/thumbnail/8345c393ly1fgjjo73pxtj21ql1qlu03.jpg",
+ "bmiddle_pic": "http://wx3.sinaimg.cn/bmiddle/8345c393ly1fgjjo73pxtj21ql1qlu03.jpg",
+ "original_pic": "http://wx3.sinaimg.cn/large/8345c393ly1fgjjo73pxtj21ql1qlu03.jpg",
+ "geo": null,
+ "is_paid": false,
+ "mblog_vip_type": 0,
+ "user": {
+ "id": 2202387347,
+ "idstr": "2202387347",
+ "class": 1,
+ "screen_name": "小米手机",
+ "name": "小米手机",
+ "province": "11",
+ "city": "1000",
+ "location": "北京",
+ "description": "探索黑科技,为发烧而生。",
+ "url": "http://www.xiaomi.com",
+ "profile_image_url": "http://tvax1.sinaimg.cn/crop.0.0.1002.1002.50/8345c393ly8fruxzo9w5gj20ru0ru0u8.jpg",
+ "cover_image": "http://wx2.sinaimg.cn/crop.0.0.920.300/8345c393ly1frvpje60rij20pk08cdki.jpg",
+ "cover_image_phone": "http://wx4.sinaimg.cn/crop.0.0.640.640.640/8345c393gy1frvj5nvtvyj20u00u0tca.jpg",
+ "profile_url": "xiaomishouji",
+ "domain": "xiaomishouji",
+ "weihao": "",
+ "gender": "m",
+ "followers_count": 19464195,
+ "friends_count": 522,
+ "pagefriends_count": 116,
+ "statuses_count": 15708,
+ "video_status_count": 0,
+ "favourites_count": 975,
+ "created_at": "Mon Jun 27 12:03:55 +0800 2011",
+ "following": false,
+ "allow_all_act_msg": true,
+ "geo_enabled": true,
+ "verified": true,
+ "verified_type": 2,
+ "remark": "",
+ "insecurity": {
+ "sexual_content": false
+ },
+ "ptype": 0,
+ "allow_all_comment": true,
+ "avatar_large": "http://tvax1.sinaimg.cn/crop.0.0.1002.1002.180/8345c393ly8fruxzo9w5gj20ru0ru0u8.jpg",
+ "avatar_hd": "http://tvax1.sinaimg.cn/crop.0.0.1002.1002.1024/8345c393ly8fruxzo9w5gj20ru0ru0u8.jpg",
+ "verified_reason": "北京小米科技旗下手机品牌小米手机",
+ "verified_trade": "",
+ "verified_reason_url": "",
+ "verified_source": "",
+ "verified_source_url": "",
+ "verified_state": 0,
+ "verified_level": 3,
+ "verified_type_ext": 0,
+ "pay_remind": 0,
+ "pay_date": "",
+ "has_service_tel": false,
+ "verified_reason_modified": "",
+ "verified_contact_name": "",
+ "verified_contact_email": "",
+ "verified_contact_mobile": "400-100-5678",
+ "follow_me": false,
+ "like": false,
+ "like_me": false,
+ "online_status": 0,
+ "bi_followers_count": 321,
+ "lang": "zh-cn",
+ "star": 0,
+ "mbtype": 12,
+ "mbrank": 6,
+ "block_word": 0,
+ "block_app": 1,
+ "credit_score": 80,
+ "user_ability": 10748420,
+ "urank": 47,
+ "story_read_state": -1,
+ "vclub_member": 0
+ },
+ "annotations": [
+ {
+ "client_mblogid": "20fdccf8-41aa-40d0-a217-3d3f4714b8a6"
+ },
+ {
+ "mapi_request": true
+ }
+ ],
+ "picStatus": "0:1,1:1,2:1,3:1,4:1,5:1",
+ "reposts_count": 0,
+ "comments_count": 0,
+ "attitudes_count": 0,
+ "pending_approval_count": 0,
+ "isLongText": false,
+ "hide_flag": 0,
+ "mlevel": 0,
+ "visible": {
+ "type": 0,
+ "list_id": 0
+ },
+ "biz_feature": 4294967300,
+ "expire_time": 1497423791,
+ "page_type": 32,
+ "hasActionTypeCard": 0,
+ "darwin_tags": [],
+ "hot_weibo_tags": [],
+ "text_tag_tips": [],
+ "mblogtype": 0,
+ "userType": 0,
+ "extend_info": {
+ "ad": {
+ "url_marked": "true"
+ }
+ },
+ "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
+ }
+ },
+ "annotations": [
+ {
+ "client_mblogid": "0bc8ab2c-bb7d-44e2-bd24-6928848741b9"
+ },
+ {
+ "mapi_request": true
+ }
+ ],
"reposts_count": 0,
"comments_count": 0,
"attitudes_count": 0,
"pending_approval_count": 0,
- "isLongText": true,
+ "isLongText": false,
"hide_flag": 0,
"mlevel": 0,
"visible": {
@@ -2934,148 +6131,20 @@
"mblogtype": 0,
"userType": 0,
"more_info_type": 0,
- "cardid": "star_583",
"positive_recom_flag": 0,
"content_auth": 0,
"gif_ids": "",
"is_show_bulletin": 2,
"comment_manage_info": {
"comment_permission_type": -1,
- "approval_comment_type": 1
+ "approval_comment_type": 0
}
}
}
],
- "marks": [],
"hasvisible": false,
"previous_cursor": 0,
"next_cursor": 0,
- "total_number": 21,
- "since_id": 0,
- "max_id": 0,
- "status": {
- "created_at": "Wed Aug 08 20:09:51 +0800 2018",
- "id": 4270836326031924,
- "idstr": "4270836326031924",
- "mid": "4270836326031924",
- "can_edit": false,
- "text": "【商务部新闻发言人就中方对160亿美元自美进口产品采取反制措施发表谈话】美方决定自8月23日起对160亿美元中国输美产品加征25%的关税,又一次将国内法凌驾于国际法之上,是十分无理的做法。中方为维护自身正当权益和多边贸易体制,不得不做出必要反制,决定对160亿美元自美进口产品加征25%的关税,并与...全文: http://m.weibo.cn/2803301701/4270836326031924 ",
- "textLength": 302,
- "source_allowclick": 0,
- "source_type": 1,
- "source": "微博 weibo.com",
- "favorited": false,
- "truncated": false,
- "in_reply_to_status_id": "",
- "in_reply_to_user_id": "",
- "in_reply_to_screen_name": "",
- "pic_urls": [
- {
- "thumbnail_pic": "http://wx3.sinaimg.cn/thumbnail/a716fd45ly1fu2jvzgsy3j20c80c8tdp.jpg"
- }
- ],
- "thumbnail_pic": "http://wx3.sinaimg.cn/thumbnail/a716fd45ly1fu2jvzgsy3j20c80c8tdp.jpg",
- "bmiddle_pic": "http://wx3.sinaimg.cn/bmiddle/a716fd45ly1fu2jvzgsy3j20c80c8tdp.jpg",
- "original_pic": "http://wx3.sinaimg.cn/large/a716fd45ly1fu2jvzgsy3j20c80c8tdp.jpg",
- "geo": null,
- "is_paid": false,
- "mblog_vip_type": 0,
- "user": {
- "id": 2803301701,
- "idstr": "2803301701",
- "class": 1,
- "screen_name": "人民日报",
- "name": "人民日报",
- "province": "11",
- "city": "1000",
- "location": "北京",
- "description": "人民日报法人微博。参与、沟通、记录时代。",
- "url": "",
- "profile_image_url": "http://tva1.sinaimg.cn/crop.0.3.1018.1018.50/a716fd45gw1ev7q2k8japj20sg0sg779.jpg",
- "cover_image": "http://wx4.sinaimg.cn/crop.0.0.920.300/a716fd45ly1fpjoldh9kaj20pk08cal8.jpg",
- "cover_image_phone": "http://wx1.sinaimg.cn/crop.0.0.640.640.640/a716fd45ly1fpjoivacakj20yi0yiwkb.jpg;http://wx2.sinaimg.cn/crop.0.0.640.640.640/a716fd45ly1foyq0ha1vwj20e80e8wf7.jpg",
- "profile_url": "rmrb",
- "domain": "rmrb",
- "weihao": "",
- "gender": "m",
- "followers_count": 60885267,
- "friends_count": 3027,
- "pagefriends_count": 2694,
- "statuses_count": 89352,
- "video_status_count": 0,
- "favourites_count": 1,
- "created_at": "Sun Jul 22 02:28:35 +0800 2012",
- "following": true,
- "allow_all_act_msg": false,
- "geo_enabled": false,
- "verified": true,
- "verified_type": 3,
- "remark": "",
- "insecurity": {
- "sexual_content": false
- },
- "ptype": 0,
- "allow_all_comment": true,
- "avatar_large": "http://tva1.sinaimg.cn/crop.0.3.1018.1018.180/a716fd45gw1ev7q2k8japj20sg0sg779.jpg",
- "avatar_hd": "http://tva1.sinaimg.cn/crop.0.3.1018.1018.1024/a716fd45gw1ev7q2k8japj20sg0sg779.jpg",
- "verified_reason": "《人民日报》法人微博",
- "verified_trade": "",
- "verified_reason_url": "",
- "verified_source": "",
- "verified_source_url": "",
- "verified_state": 2,
- "verified_level": 3,
- "verified_type_ext": 0,
- "has_service_tel": false,
- "verified_reason_modified": "辽宁科技大学官方微博,教育官微联盟成员",
- "verified_contact_name": "",
- "verified_contact_email": "",
- "verified_contact_mobile": "",
- "follow_me": false,
- "like": false,
- "like_me": false,
- "online_status": 0,
- "bi_followers_count": 305,
- "lang": "zh-cn",
- "star": 0,
- "mbtype": 12,
- "mbrank": 6,
- "block_word": 0,
- "block_app": 1,
- "credit_score": 80,
- "user_ability": 10814212,
- "cardid": "star_583",
- "urank": 48,
- "story_read_state": -1,
- "vclub_member": 0
- },
- "reposts_count": 69,
- "comments_count": 145,
- "attitudes_count": 283,
- "pending_approval_count": 116,
- "isLongText": true,
- "hide_flag": 0,
- "mlevel": 0,
- "visible": {
- "type": 0,
- "list_id": 0
- },
- "biz_feature": 0,
- "hasActionTypeCard": 0,
- "darwin_tags": [],
- "hot_weibo_tags": [],
- "text_tag_tips": [],
- "mblogtype": 0,
- "userType": 0,
- "more_info_type": 0,
- "cardid": "star_583",
- "positive_recom_flag": 0,
- "content_auth": 0,
- "gif_ids": "",
- "is_show_bulletin": 2,
- "comment_manage_info": {
- "comment_permission_type": -1,
- "approval_comment_type": 1
- }
- }
+ "total_number": 28,
+ "interval": 0
}
\ No newline at end of file
diff --git a/app/src/main/java/com/fy/weibo/contract/CommentContract.java b/app/src/main/java/com/fy/weibo/contract/CommentContract.java
new file mode 100644
index 0000000..fd8d268
--- /dev/null
+++ b/app/src/main/java/com/fy/weibo/contract/CommentContract.java
@@ -0,0 +1,34 @@
+package com.fy.weibo.contract;
+
+import com.fy.weibo.base.BaseMVPFragment;
+import com.fy.weibo.base.BasePresenter;
+import com.fy.weibo.bean.Comments;
+import com.fy.weibo.interfaces.IBaseView;
+import com.fy.weibo.interfaces.IModel;
+
+import java.util.List;
+import java.util.Map;
+
+/**
+ * Created by Fan on 2018/8/28.
+ * Fighting!!!
+ */
+public interface CommentContract {
+
+ abstract class CommentContractPresenter extends BasePresenter {
void showError(String e);
- void setData(T data);
+ P getPresenter();
}
diff --git a/app/src/main/java/com/fy/weibo/interfaces/IModel.java b/app/src/main/java/com/fy/weibo/interfaces/IModel.java
new file mode 100644
index 0000000..047e57d
--- /dev/null
+++ b/app/src/main/java/com/fy/weibo/interfaces/IModel.java
@@ -0,0 +1,10 @@
+package com.fy.weibo.interfaces;
+
+/**
+ * Created by Fan on 2018/8/28.
+ * Fighting!!!
+ */
+public interface IModel {
+
+
+}
diff --git a/app/src/main/java/com/fy/weibo/interfaces/IPresenter.java b/app/src/main/java/com/fy/weibo/interfaces/IPresenter.java
index 1855362..744201d 100644
--- a/app/src/main/java/com/fy/weibo/interfaces/IPresenter.java
+++ b/app/src/main/java/com/fy/weibo/interfaces/IPresenter.java
@@ -1,11 +1,15 @@
package com.fy.weibo.interfaces;
+import java.io.Serializable;
+
/**
* Created by Fan on 2018/8/12.
* Fighting!!!
*/
-public interface IPresenter> {
-
- private RecyclerView recyclerView;
- private LinearLayoutManager linearLayoutManager;
- private WeiBoAdapter weiBoAdapter;
- private SwipeRefreshLayout refreshLayout;
- private List
> {
+public final class CommentsPresenter extends CommentContract.CommentContractPresenter {
+
- private IView
> iView;
- public CommentsPresenter(IView
> view) {
- super(view);
- this.iView = view;
+ @Override
+ public void onFailure(String error) {
+ Log.e("TAG", "错误信息" + error);
+ iView.showError(error);
}
@Override
- public void onSuccess(List
> {
-
-
- private IView
> iView;
- private ModelHandler modelHandler;
-
-
- public WeiBoPresenter(IView
> view) {
- super(view);
- modelHandler = ModelHandler.getInstance();
- this.iView = view;
- }
+public final class WeiBoPresenter extends WeiBoContract.WeiBoContractPresenter {
@Override
- public void onSuccess(List