我从iOS应用程序获取用户的时间表,从API中提取大量推文。我使用statuses/user_timeline
端点来获取数据,但是,因为我在移动设备上,而且我只需要推文文本,所以我只想过滤推文的实际文本数据。我已将include_entities
设置为no
而trim_user
设置为true
,但即使修剪了实体和用户数据,我仍然会获得大量数据不需要。以下是我从端点获取的示例推文:
{
"created_at": "Tue Nov 27 14:13:13 +0000 2012",
"id": 273429272209801200,
"id_str": "273429272209801217",
"text": "you could list #5ThingsIFindAttractive but you can actually find them on Facebook with Social Match on iPhone! http://t.co/zRr1ggbz",
"source": "web",
"truncated": false,
"in_reply_to_status_id": null,
"in_reply_to_status_id_str": null,
"in_reply_to_user_id": null,
"in_reply_to_user_id_str": null,
"in_reply_to_screen_name": null,
"user": {
"id": 62828168,
"id_str": "62828168"
},
"geo": null,
"coordinates": null,
"place": {
"id": "682c5a667856ef42",
"url": "http://api.twitter.com/1/geo/id/682c5a667856ef42.json",
"place_type": "country",
"name": "Turkey",
"full_name": "Turkey",
"country_code": "TR",
"country": "Turkey",
"bounding_box": {
"type": "Polygon",
"coordinates": [
[
[
25.663883,
35.817497
],
[
44.822762,
35.817497
],
[
44.822762,
42.109993
],
[
25.663883,
42.109993
]
]
]
},
"attributes": {}
},
"contributors": null,
"retweet_count": 0,
"favorited": false,
"retweeted": false,
"possibly_sensitive": false
}
我唯一需要的是字典的text
键。其余的对我的应用程序目前无用。我会请求很多像这样的推文。如何发送请求只是为了提取推文的text
密钥?目前,这种方法非常效率低下。
答案 0 :(得分:1)
你做不到。您可以做的最好的事情是设置一个代理,它将请求数据,将其剥离,然后将其转发到移动设备。
如果有任何安慰,JSON将会被gzip压缩,因此仍然相对较小 - 因此转移或吃掉用户的数据限额不会花费太长时间。