微博API timeline压缩的想法
智能手机的用户越来越多,但是据统计有一半使用智能手机的人通过GPRS这样的慢速网络上网,当微博客户端使用慢速网络上网时,时间线的数据大小就成为用户体验的关键,如果能压缩数据传输,好处自然是不用说的。
让我们看看一个典型的Timeline是什么样的格式。实例如下.
{ created_at: 'Tue Nov 08 11:50:41 +0800 2011', id: 3377424618238221, text: '11月7日,开发区管委会与全美华人金融协会战略合作协议签订仪式在开发区投资服务中心举行。开发区(南港工业区)管委会党组副书记、管委会副主任孙胜,开发区(南港工业区)管委会副主任郎东会见全美华人金融协会会长、汉世纪投资管理有限公司管理合伙人、总裁吴皓一行,并共同出席签字仪式。', source: '<a href="http://weibo.com" rel="nofollow">新浪微博</a>', favorited: false, truncated: false, in_reply_to_status_id: '', in_reply_to_user_id: '', in_reply_to_screen_name: '', thumbnail_pic: 'http://ww1.sinaimg.cn/thumbnail/81ab7491tw1dmwcy8hekuj.jpg', bmiddle_pic: 'http://ww1.sinaimg.cn/bmiddle/81ab7491tw1dmwcy8hekuj.jpg', original_pic: 'http://ww1.sinaimg.cn/large/81ab7491tw1dmwcy8hekuj.jpg', geo: null, mid: '3377424618238221', user: { id: 2175497361, screen_name: '天津开发区投促三局', name: '天津开发区投促三局', province: '12', city: '26', location: '天津 滨海新区', description: '天津开发区热情欢迎国内外客商来区考察、投资。有关区域发展详情和投资程序可咨询天津开发区投资网www.investteda.org', url: '', profile_image_url: 'http://tp2.sinaimg.cn/2175497361/50/5602903704/1', domain: '', gender: 'm', followers_count: 1328, friends_count: 154, statuses_count: 168, favourites_count: 0, created_at: 'Mon Jun 13 00:00:00 +0800 2011', following: false, allow_all_act_msg: false, geo_enabled: true, verified: true } }var status_fields = ['id', 'text', 'created_at', ['user', 'id'], ['user', 'name'], ['user', 'screen_name'], ['user', 'profile_image_url'], ['user', 'friends_count'], ['user', 'followers_count'], ['user', 'statuses_count']];
{ 'id': [111, 222, ...], 'name': ['tom', 'jacky', 'mike', ...], 'profile_image_url': [...] ...}[ [111, 222, ...], ['tom', 'jacky', 'mike', ...], [...] ...]