t 1.1.1 → 1.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/spec/delete_spec.rb CHANGED
@@ -21,14 +21,14 @@ describe T::Delete do
21
21
  describe "#block" do
22
22
  before do
23
23
  @delete.options = @delete.options.merge("profile" => fixture_path + "/.trc")
24
- stub_delete("/1/blocks/destroy.json").
25
- with(:query => {:screen_name => "sferik"}).
24
+ stub_post("/1.1/blocks/destroy.json").
25
+ with(:body => {:screen_name => "sferik"}).
26
26
  to_return(:body => fixture("sferik.json"), :headers => {:content_type => "application/json; charset=utf-8"})
27
27
  end
28
28
  it "should request the correct resource" do
29
29
  @delete.block("sferik")
30
- a_delete("/1/blocks/destroy.json").
31
- with(:query => {:screen_name => "sferik"}).
30
+ a_post("/1.1/blocks/destroy.json").
31
+ with(:body => {:screen_name => "sferik"}).
32
32
  should have_been_made
33
33
  end
34
34
  it "should have the correct output" do
@@ -38,14 +38,14 @@ describe T::Delete do
38
38
  context "--id" do
39
39
  before do
40
40
  @delete.options = @delete.options.merge("id" => true)
41
- stub_delete("/1/blocks/destroy.json").
42
- with(:query => {:user_id => "7505382"}).
41
+ stub_post("/1.1/blocks/destroy.json").
42
+ with(:body => {:user_id => "7505382"}).
43
43
  to_return(:body => fixture("sferik.json"), :headers => {:content_type => "application/json; charset=utf-8"})
44
44
  end
45
45
  it "should request the correct resource" do
46
46
  @delete.block("7505382")
47
- a_delete("/1/blocks/destroy.json").
48
- with(:query => {:user_id => "7505382"}).
47
+ a_post("/1.1/blocks/destroy.json").
48
+ with(:body => {:user_id => "7505382"}).
49
49
  should have_been_made
50
50
  end
51
51
  end
@@ -54,18 +54,22 @@ describe T::Delete do
54
54
  describe "#dm" do
55
55
  before do
56
56
  @delete.options = @delete.options.merge("profile" => fixture_path + "/.trc")
57
- stub_get("/1/direct_messages/show/1773478249.json").
57
+ stub_get("/1.1/direct_messages/show.json").
58
+ with(:query => {:id => "1773478249"}).
58
59
  to_return(:body => fixture("direct_message.json"), :headers => {:content_type => "application/json; charset=utf-8"})
59
- stub_delete("/1/direct_messages/destroy/1773478249.json").
60
+ stub_post("/1.1/direct_messages/destroy.json").
61
+ with(:body => {:id => "1773478249"}).
60
62
  to_return(:body => fixture("direct_message.json"), :headers => {:content_type => "application/json; charset=utf-8"})
61
63
  end
62
64
  it "should request the correct resource" do
63
65
  $stdout.should_receive(:print).with("Are you sure you want to permanently delete the direct message to @pengwynn: \"Creating a fixture for the Twitter gem\"? [y/N] ")
64
66
  $stdin.should_receive(:gets).and_return("yes")
65
67
  @delete.dm("1773478249")
66
- a_get("/1/direct_messages/show/1773478249.json").
68
+ a_get("/1.1/direct_messages/show.json").
69
+ with(:query => {:id => "1773478249"}).
67
70
  should have_been_made
68
- a_delete("/1/direct_messages/destroy/1773478249.json").
71
+ a_post("/1.1/direct_messages/destroy.json").
72
+ with(:body => {:id => "1773478249"}).
69
73
  should have_been_made
70
74
  end
71
75
  context "yes" do
@@ -90,7 +94,8 @@ describe T::Delete do
90
94
  end
91
95
  it "should request the correct resource" do
92
96
  @delete.dm("1773478249")
93
- a_delete("/1/direct_messages/destroy/1773478249.json").
97
+ a_post("/1.1/direct_messages/destroy.json").
98
+ with(:body => {:id => "1773478249"}).
94
99
  should have_been_made
95
100
  end
96
101
  it "should have the correct output" do
@@ -103,20 +108,22 @@ describe T::Delete do
103
108
  describe "#favorite" do
104
109
  before do
105
110
  @delete.options = @delete.options.merge("profile" => fixture_path + "/.trc")
106
- stub_get("/1/statuses/show/28439861609.json").
111
+ stub_get("/1.1/statuses/show/28439861609.json").
107
112
  with(:query => {:include_my_retweet => "false", :trim_user => "true"}).
108
113
  to_return(:body => fixture("status.json"), :headers => {:content_type => "application/json; charset=utf-8"})
109
- stub_delete("/1/favorites/destroy/28439861609.json").
114
+ stub_post("/1.1/favorites/destroy.json").
115
+ with(:body => {:id => "28439861609"}).
110
116
  to_return(:body => fixture("status.json"), :headers => {:content_type => "application/json; charset=utf-8"})
111
117
  end
112
118
  it "should request the correct resource" do
113
119
  $stdout.should_receive(:print).with("Are you sure you want to remove @sferik's status: \"The problem with your code is that it's doing exactly what you told it to do.\" from your favorites? [y/N] ")
114
120
  $stdin.should_receive(:gets).and_return("yes")
115
121
  @delete.favorite("28439861609")
116
- a_get("/1/statuses/show/28439861609.json").
122
+ a_get("/1.1/statuses/show/28439861609.json").
117
123
  with(:query => {:include_my_retweet => "false", :trim_user => "true"}).
118
124
  should have_been_made
119
- a_delete("/1/favorites/destroy/28439861609.json").
125
+ a_post("/1.1/favorites/destroy.json").
126
+ with(:body => {:id => "28439861609"}).
120
127
  should have_been_made
121
128
  end
122
129
  context "yes" do
@@ -141,7 +148,8 @@ describe T::Delete do
141
148
  end
142
149
  it "should request the correct resource" do
143
150
  @delete.favorite("28439861609")
144
- a_delete("/1/favorites/destroy/28439861609.json").
151
+ a_post("/1.1/favorites/destroy.json").
152
+ with(:body => {:id => "28439861609"}).
145
153
  should have_been_made
146
154
  end
147
155
  it "should have the correct output" do
@@ -154,23 +162,23 @@ describe T::Delete do
154
162
  describe "#list" do
155
163
  before do
156
164
  @delete.options = @delete.options.merge("profile" => fixture_path + "/.trc")
157
- stub_get("/1/account/verify_credentials.json").
165
+ stub_get("/1.1/account/verify_credentials.json").
158
166
  to_return(:body => fixture("sferik.json"), :headers => {:content_type => "application/json; charset=utf-8"})
159
- stub_get("/1/lists/show.json").
167
+ stub_get("/1.1/lists/show.json").
160
168
  with(:query => {:owner_screen_name => "sferik", :slug => 'presidents'}).
161
169
  to_return(:body => fixture("list.json"), :headers => {:content_type => "application/json; charset=utf-8"})
162
- stub_delete("/1/lists/destroy.json").
163
- with(:query => {:owner_id => "7505382", :list_id => "8863586"}).
170
+ stub_post("/1.1/lists/destroy.json").
171
+ with(:body => {:owner_id => "7505382", :list_id => "8863586"}).
164
172
  to_return(:body => fixture("list.json"), :headers => {:content_type => "application/json; charset=utf-8"})
165
173
  end
166
174
  it "should request the correct resource" do
167
175
  $stdout.should_receive(:print).with("Are you sure you want to permanently delete the list \"presidents\"? [y/N] ")
168
176
  $stdin.should_receive(:gets).and_return("yes")
169
177
  @delete.list("presidents")
170
- a_get("/1/account/verify_credentials.json").
178
+ a_get("/1.1/account/verify_credentials.json").
171
179
  should have_been_made
172
- a_delete("/1/lists/destroy.json").
173
- with(:query => {:owner_id => "7505382", :list_id => "8863586"}).
180
+ a_post("/1.1/lists/destroy.json").
181
+ with(:body => {:owner_id => "7505382", :list_id => "8863586"}).
174
182
  should have_been_made
175
183
  end
176
184
  context "yes" do
@@ -195,10 +203,10 @@ describe T::Delete do
195
203
  end
196
204
  it "should request the correct resource" do
197
205
  @delete.list("presidents")
198
- a_get("/1/account/verify_credentials.json").
206
+ a_get("/1.1/account/verify_credentials.json").
199
207
  should have_been_made
200
- a_delete("/1/lists/destroy.json").
201
- with(:query => {:owner_id => "7505382", :list_id => "8863586"}).
208
+ a_post("/1.1/lists/destroy.json").
209
+ with(:body => {:owner_id => "7505382", :list_id => "8863586"}).
202
210
  should have_been_made
203
211
  end
204
212
  it "should have the correct output" do
@@ -209,7 +217,7 @@ describe T::Delete do
209
217
  context "--id" do
210
218
  before do
211
219
  @delete.options = @delete.options.merge("id" => true)
212
- stub_get("/1/lists/show.json").
220
+ stub_get("/1.1/lists/show.json").
213
221
  with(:query => {:owner_screen_name => "sferik", :list_id => "8863586"}).
214
222
  to_return(:body => fixture("list.json"), :headers => {:content_type => "application/json; charset=utf-8"})
215
223
  end
@@ -217,13 +225,13 @@ describe T::Delete do
217
225
  $stdout.should_receive(:print).with("Are you sure you want to permanently delete the list \"presidents\"? [y/N] ")
218
226
  $stdin.should_receive(:gets).and_return("yes")
219
227
  @delete.list("8863586")
220
- a_get("/1/lists/show.json").
228
+ a_get("/1.1/lists/show.json").
221
229
  with(:query => {:owner_screen_name => "sferik", :list_id => "8863586"}).
222
230
  should have_been_made
223
- a_get("/1/account/verify_credentials.json").
231
+ a_get("/1.1/account/verify_credentials.json").
224
232
  should have_been_made
225
- a_delete("/1/lists/destroy.json").
226
- with(:query => {:owner_id => "7505382", :list_id => "8863586"}).
233
+ a_post("/1.1/lists/destroy.json").
234
+ with(:body => {:owner_id => "7505382", :list_id => "8863586"}).
227
235
  should have_been_made
228
236
  end
229
237
  end
@@ -232,22 +240,22 @@ describe T::Delete do
232
240
  describe "#status" do
233
241
  before do
234
242
  @delete.options = @delete.options.merge("profile" => fixture_path + "/.trc")
235
- stub_get("/1/statuses/show/26755176471724032.json").
243
+ stub_get("/1.1/statuses/show/26755176471724032.json").
236
244
  with(:query => {:include_my_retweet => "false", :trim_user => "true"}).
237
245
  to_return(:body => fixture("status.json"), :headers => {:content_type => "application/json; charset=utf-8"})
238
- stub_delete("/1/statuses/destroy/26755176471724032.json").
239
- with(:query => {:trim_user => "true"}).
246
+ stub_post("/1.1/statuses/destroy/26755176471724032.json").
247
+ with(:body => {:trim_user => "true"}).
240
248
  to_return(:body => fixture("status.json"), :headers => {:content_type => "application/json; charset=utf-8"})
241
249
  end
242
250
  it "should request the correct resource" do
243
251
  $stdout.should_receive(:print).with("Are you sure you want to permanently delete @sferik's status: \"The problem with your code is that it's doing exactly what you told it to do.\"? [y/N] ")
244
252
  $stdin.should_receive(:gets).and_return("yes")
245
253
  @delete.status("26755176471724032")
246
- a_get("/1/statuses/show/26755176471724032.json").
254
+ a_get("/1.1/statuses/show/26755176471724032.json").
247
255
  with(:query => {:include_my_retweet => "false", :trim_user => "true"}).
248
256
  should have_been_made
249
- a_delete("/1/statuses/destroy/26755176471724032.json").
250
- with(:query => {:trim_user => "true"}).
257
+ a_post("/1.1/statuses/destroy/26755176471724032.json").
258
+ with(:body => {:trim_user => "true"}).
251
259
  should have_been_made
252
260
  end
253
261
  context "yes" do
@@ -255,7 +263,7 @@ describe T::Delete do
255
263
  $stdout.should_receive(:print).with("Are you sure you want to permanently delete @sferik's status: \"The problem with your code is that it's doing exactly what you told it to do.\"? [y/N] ")
256
264
  $stdin.should_receive(:gets).and_return("yes")
257
265
  @delete.status("26755176471724032")
258
- $stdout.string.chomp.should == "@testcli deleted the status: \"The problem with your code is that it's doing exactly what you told it to do.\""
266
+ $stdout.string.chomp.should == "@testcli deleted the Tweet: \"The problem with your code is that it's doing exactly what you told it to do.\""
259
267
  end
260
268
  end
261
269
  context "no" do
@@ -272,13 +280,13 @@ describe T::Delete do
272
280
  end
273
281
  it "should request the correct resource" do
274
282
  @delete.status("26755176471724032")
275
- a_delete("/1/statuses/destroy/26755176471724032.json").
276
- with(:query => {:trim_user => "true"}).
283
+ a_post("/1.1/statuses/destroy/26755176471724032.json").
284
+ with(:body => {:trim_user => "true"}).
277
285
  should have_been_made
278
286
  end
279
287
  it "should have the correct output" do
280
288
  @delete.status("26755176471724032")
281
- $stdout.string.chomp.should == "@testcli deleted the status: \"The problem with your code is that it's doing exactly what you told it to do.\""
289
+ $stdout.string.chomp.should == "@testcli deleted the Tweet: \"The problem with your code is that it's doing exactly what you told it to do.\""
282
290
  end
283
291
  end
284
292
  end
@@ -0,0 +1 @@
1
+ {"relationship":{"target":{"followed_by":true,"id_str":"14100886","following":false,"screen_name":"pengwynn","id":14100886},"source":{"marked_spam":false,"notifications_enabled":false,"followed_by":false,"want_retweets":true,"id_str":"7505382","blocking":false,"all_replies":false,"following":true,"screen_name":"sferik","id":7505382}}}
@@ -0,0 +1 @@
1
+ {"relationship":{"target":{"followed_by":false,"id_str":"14100886","following":true,"screen_name":"sferik","id":7505382},"source":{"marked_spam":false,"notifications_enabled":false,"followed_by":true,"want_retweets":true,"id_str":"7505382","blocking":false,"all_replies":false,"following":false,"screen_name":"pengwynn","id":14100886}}}
@@ -1,456 +1 @@
1
- {
2
- "completed_in": 0.036,
3
- "max_id": 194521262415032320,
4
- "max_id_str": "194521262415032320",
5
- "next_page": "?page=2&max_id=194521262415032320&q=twitter",
6
- "page": 1,
7
- "query": "twitter",
8
- "refresh_url": "?since_id=194521262415032320&q=twitter",
9
- "results": [
10
- {
11
- "created_at": "Mon, 23 Apr 2011 20:20:57 +0000",
12
- "from_user": "Somedude",
13
- "from_user_id": 818993897,
14
- "from_user_id_str": "818993897",
15
- "from_user_name": "Random Dude",
16
- "geo": null,
17
- "id": 194521323202624150,
18
- "id_str": "194521323202624150",
19
- "iso_language_code": "en",
20
- "metadata": {
21
- "result_type": "recent"
22
- },
23
- "profile_image_url": "http://a0.twimg.com/profile_images/1014656526/pic.jpg",
24
- "profile_image_url_https": "https://si0.twimg.com/profile_images/1014656526/pic.jpg",
25
- "source": "<a href="http://twitter.com/">web</a>",
26
- "text": "Gotta get right with twitter",
27
- "to_user": null,
28
- "to_user_id": null,
29
- "to_user_id_str": null,
30
- "to_user_name": null
31
- },
32
- {
33
- "created_at": "Mon, 23 Apr 2011 20:20:57 +0000",
34
- "from_user": "TestMan",
35
- "from_user_id": 32702507980,
36
- "from_user_id_str": "32702507980",
37
- "from_user_name": "Test Account",
38
- "geo": null,
39
- "id": 194526951936212623,
40
- "id_str": "194526951936212623",
41
- "iso_language_code": "en",
42
- "metadata": {
43
- "result_type": "recent"
44
- },
45
- "profile_image_url": "http://a0.twimg.com/profile_images/2147508883/IMG-20120404-WA003_normal.jpg",
46
- "profile_image_url_https": "https://si0.twimg.com/profile_images/2147508883/IMG-20120404-WA003_normal.jpg",
47
- "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry®</a>",
48
- "text": "Twitter to Facebook test",
49
- "to_user": null,
50
- "to_user_id": null,
51
- "to_user_id_str": null,
52
- "to_user_name": null
53
- },
54
- {
55
- "created_at": "Mon, 23 Apr 2011 20:20:57 +0000",
56
- "from_user": "Jena_Jones",
57
- "from_user_id": 13938181651,
58
- "from_user_id_str": "13938181651",
59
- "from_user_name": "Jena Jones",
60
- "geo": null,
61
- "id": 194521346690562622,
62
- "id_str": "194521346690562622",
63
- "iso_language_code": "en",
64
- "metadata": {
65
- "result_type": "recent"
66
- },
67
- "profile_image_url": "http://a0.twimg.com/profile_images/2156571407/543631_337343819653633_100001340549098_850013_1999940127_n_normal.jpg",
68
- "profile_image_url_https": "https://si0.twimg.com/profile_images/2156571407/543631_337343819653633_100001340549098_850013_1999940127_n_normal.jpg",
69
- "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>",
70
- "text": "test my new twitter..... :)",
71
- "to_user": null,
72
- "to_user_id": null,
73
- "to_user_id_str": null,
74
- "to_user_name": null
75
- },
76
- {
77
- "created_at": "Mon, 23 Apr 2011 20:20:57 +0000",
78
- "from_user": "misterpic",
79
- "from_user_id": 259342250,
80
- "from_user_id_str": "259342250",
81
- "from_user_name": "mister pic!",
82
- "geo": null,
83
- "id": 194521262134160820,
84
- "id_str": "194521262134160820",
85
- "iso_language_code": "en",
86
- "metadata": {
87
- "result_type": "recent"
88
- },
89
- "profile_image_url": "http://a0.twimg.com/profile_images/2159952653/P2191655_normal.JPG",
90
- "profile_image_url_https": "https://si0.twimg.com/profile_images/2159952653/P2191655_normal.JPG",
91
- "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>",
92
- "text": "Wallah there should be a test before you can get a twitter account some people are so dumb... better",
93
- "to_user": null,
94
- "to_user_id": null,
95
- "to_user_id_str": null,
96
- "to_user_name": null
97
- },
98
- {
99
- "created_at": "Mon, 23 Apr 2011 20:20:57 +0000",
100
- "from_user": "RRabbit",
101
- "from_user_id": 91022555146,
102
- "from_user_id_str": "91022555146",
103
- "from_user_name": "Rogger Rabbit",
104
- "geo": null,
105
- "id": 194521016652621340,
106
- "id_str": "194521016652621340",
107
- "iso_language_code": "en",
108
- "metadata": {
109
- "result_type": "recent"
110
- },
111
- "profile_image_url": "http://a0.twimg.com/profile_images/1663790229/390753_10150394068222898_738242897_8656853_1501249832_n_1__normal.jpg",
112
- "profile_image_url_https": "https://si0.twimg.com/profile_images/1663790229/390753_10150394068222898_738242897_8656853_1501249832_n_1__normal.jpg",
113
- "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>",
114
- "text": "Twitter is kinda fun... Kinda!",
115
- "to_user": null,
116
- "to_user_id": null,
117
- "to_user_id_str": null,
118
- "to_user_name": null
119
- },
120
- {
121
- "created_at": "Mon, 23 Apr 2011 20:20:57 +0000",
122
- "from_user": "JessRoveel",
123
- "from_user_id": 99818387,
124
- "from_user_id_str": "99818387",
125
- "from_user_name": "Jess de Platypus♥",
126
- "geo": null,
127
- "id": 194521262415032320,
128
- "id_str": "194521262415032320",
129
- "iso_language_code": "es",
130
- "metadata": {
131
- "result_type": "recent"
132
- },
133
- "profile_image_url": "http://a0.twimg.com/profile_images/2014656522/Foto0309_normal.jpg",
134
- "profile_image_url_https": "https://si0.twimg.com/profile_images/2014656522/Foto0309_normal.jpg",
135
- "source": "<a href="http://twitter.com/">web</a>",
136
- "text": "Pondre lo mas importante de Hamlet en Twitter para recordarlo mejor :D",
137
- "to_user": null,
138
- "to_user_id": null,
139
- "to_user_id_str": null,
140
- "to_user_name": null
141
- },
142
- {
143
- "created_at": "Mon, 23 Apr 2011 20:20:57 +0000",
144
- "from_user": "lauravgeest",
145
- "from_user_id": 370207980,
146
- "from_user_id_str": "370207980",
147
- "from_user_name": "Lauraa♥",
148
- "geo": null,
149
- "id": 194521262326951936,
150
- "id_str": "194521262326951936",
151
- "iso_language_code": "nl",
152
- "metadata": {
153
- "result_type": "recent"
154
- },
155
- "profile_image_url": "http://a0.twimg.com/profile_images/2147508883/IMG-20120404-WA003_normal.jpg",
156
- "profile_image_url_https": "https://si0.twimg.com/profile_images/2147508883/IMG-20120404-WA003_normal.jpg",
157
- "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry®</a>",
158
- "text": "Twitter doet het al 7 uur niet meer",
159
- "to_user": null,
160
- "to_user_id": null,
161
- "to_user_id_str": null,
162
- "to_user_name": null
163
- },
164
- {
165
- "created_at": "Mon, 23 Apr 2011 20:20:57 +0000",
166
- "from_user": "Jenny_Bearx333",
167
- "from_user_id": 393818165,
168
- "from_user_id_str": "393818165",
169
- "from_user_name": "Jenitza Quiñones",
170
- "geo": null,
171
- "id": 194521262234669056,
172
- "id_str": "194521262234669056",
173
- "iso_language_code": "en",
174
- "metadata": {
175
- "result_type": "recent"
176
- },
177
- "profile_image_url": "http://a0.twimg.com/profile_images/2156571407/543631_337343819653633_100001340549098_850013_1999940127_n_normal.jpg",
178
- "profile_image_url_https": "https://si0.twimg.com/profile_images/2156571407/543631_337343819653633_100001340549098_850013_1999940127_n_normal.jpg",
179
- "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>",
180
- "text": "I keep thinking that twitter is @instagram , and therefore double tap all the pics I like... #NotWorking",
181
- "to_user": null,
182
- "to_user_id": null,
183
- "to_user_id_str": null,
184
- "to_user_name": null
185
- },
186
- {
187
- "created_at": "Mon, 23 Apr 2011 20:20:57 +0000",
188
- "from_user": "misspoxtonX",
189
- "from_user_id": 259342250,
190
- "from_user_id_str": "259342250",
191
- "from_user_name": "potatooooo king ♛",
192
- "geo": null,
193
- "id": 194521262138204160,
194
- "id_str": "194521262138204160",
195
- "iso_language_code": "en",
196
- "metadata": {
197
- "result_type": "recent"
198
- },
199
- "profile_image_url": "http://a0.twimg.com/profile_images/2159952653/P2191655_normal.JPG",
200
- "profile_image_url_https": "https://si0.twimg.com/profile_images/2159952653/P2191655_normal.JPG",
201
- "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>",
202
- "text": "RT @jordantaylorhi: twitter friends > twats at school",
203
- "to_user": null,
204
- "to_user_id": null,
205
- "to_user_id_str": null,
206
- "to_user_name": null
207
- },
208
- {
209
- "created_at": "Mon, 23 Apr 2011 20:20:57 +0000",
210
- "from_user": "PatrickBrickman",
211
- "from_user_id": 102555146,
212
- "from_user_id_str": "102555146",
213
- "from_user_name": "Patrick Brickman",
214
- "geo": null,
215
- "id": 194521262134001665,
216
- "id_str": "194521262134001665",
217
- "iso_language_code": "en",
218
- "metadata": {
219
- "result_type": "recent"
220
- },
221
- "profile_image_url": "http://a0.twimg.com/profile_images/1663790229/390753_10150394068222898_738242897_8656853_1501249832_n_1__normal.jpg",
222
- "profile_image_url_https": "https://si0.twimg.com/profile_images/1663790229/390753_10150394068222898_738242897_8656853_1501249832_n_1__normal.jpg",
223
- "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>",
224
- "text": "RT @zeus30hightower: Too all Bama fans and followers my cousin mark Barron doesn't have a twitter so please disregard any tweets from that user",
225
- "to_user": null,
226
- "to_user_id": null,
227
- "to_user_id_str": null,
228
- "to_user_name": null
229
- },
230
- {
231
- "created_at": "Mon, 23 Apr 2011 20:20:57 +0000",
232
- "from_user": "KolonelX",
233
- "from_user_id": 60933843,
234
- "from_user_id_str": "60933843",
235
- "from_user_name": "Baas X",
236
- "geo": null,
237
- "id": 194521262129811456,
238
- "id_str": "194521262129811456",
239
- "iso_language_code": "nl",
240
- "metadata": {
241
- "result_type": "recent"
242
- },
243
- "profile_image_url": "http://a0.twimg.com/profile_images/1778062152/Aj7p2XJCQAA75m1_normal.jpg",
244
- "profile_image_url_https": "https://si0.twimg.com/profile_images/1778062152/Aj7p2XJCQAA75m1_normal.jpg",
245
- "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>",
246
- "text": "Ik refresh twitter op me telefoon terwijl ik tweetdeck voor me open heb staan",
247
- "to_user": null,
248
- "to_user_id": null,
249
- "to_user_id_str": null,
250
- "to_user_name": null
251
- },
252
- {
253
- "created_at": "Mon, 23 Apr 2011 20:20:57 +0000",
254
- "from_user": "VLGPRLG5",
255
- "from_user_id": 360029026,
256
- "from_user_id_str": "360029026",
257
- "from_user_name": "Patricia N.",
258
- "geo": null,
259
- "id": 194521261852995586,
260
- "id_str": "194521261852995586",
261
- "iso_language_code": "en",
262
- "metadata": {
263
- "result_type": "recent"
264
- },
265
- "profile_image_url": "http://a0.twimg.com/profile_images/2087947707/tonino_marylin_normal.jpg",
266
- "profile_image_url_https": "https://si0.twimg.com/profile_images/2087947707/tonino_marylin_normal.jpg",
267
- "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry®</a>",
268
- "text": "@mikeyway and you too RT @NimcyGD: @gerardway Get your ass back to twitter, okay? :3",
269
- "to_user": "mikeyway",
270
- "to_user_id": 17471459,
271
- "to_user_id_str": "17471459",
272
- "to_user_name": "Mikey Way"
273
- },
274
- {
275
- "created_at": "Mon, 23 Apr 2011 20:20:57 +0000",
276
- "from_user": "xRhiBabyx",
277
- "from_user_id": 45532308,
278
- "from_user_id_str": "45532308",
279
- "from_user_name": "Rhian Cummings",
280
- "geo": null,
281
- "id": 194521261756530689,
282
- "id_str": "194521261756530689",
283
- "iso_language_code": "en",
284
- "metadata": {
285
- "result_type": "recent"
286
- },
287
- "profile_image_url": "http://a0.twimg.com/profile_images/1916248305/image_normal.jpg",
288
- "profile_image_url_https": "https://si0.twimg.com/profile_images/1916248305/image_normal.jpg",
289
- "source": "<a href="http://twitter.com/">web</a>",
290
- "text": "Trying to persuade the boyf to get on twitter and failing. Help? @holly_haime @Ckwarburton @samwarburton_ @chrishaime @rowloboy",
291
- "to_user": null,
292
- "to_user_id": null,
293
- "to_user_id_str": null,
294
- "to_user_name": null
295
- },
296
- {
297
- "created_at": "Mon, 23 Apr 2011 20:20:57 +0000",
298
- "from_user": "juliotrv",
299
- "from_user_id": 418570237,
300
- "from_user_id_str": "418570237",
301
- "from_user_name": "Júlio Trevisan",
302
- "geo": null,
303
- "id": 194521261630697473,
304
- "id_str": "194521261630697473",
305
- "iso_language_code": "pt",
306
- "metadata": {
307
- "result_type": "recent"
308
- },
309
- "profile_image_url": "http://a0.twimg.com/profile_images/1651783865/Julio3_normal.jpg",
310
- "profile_image_url_https": "https://si0.twimg.com/profile_images/1651783865/Julio3_normal.jpg",
311
- "source": "<a href="http://twitter.com/">web</a>",
312
- "text": "RT @lookinglassbr: Lançamentos outono-inverno 2012...CONFIRA em http://t.co/YAk8OXp7 http://t.co/fmmrVrbG",
313
- "to_user": null,
314
- "to_user_id": null,
315
- "to_user_id_str": null,
316
- "to_user_name": null
317
- },
318
- {
319
- "created_at": "Mon, 23 Apr 2011 20:20:57 +0000",
320
- "from_user": "shanleyaustin27",
321
- "from_user_id": 415094986,
322
- "from_user_id_str": "415094986",
323
- "from_user_name": "shanley austin",
324
- "geo": null,
325
- "id": 194521261571964928,
326
- "id_str": "194521261571964928",
327
- "iso_language_code": "en",
328
- "metadata": {
329
- "result_type": "recent"
330
- },
331
- "profile_image_url": "http://a0.twimg.com/profile_images/1870193522/securedownload__3__normal.jpg",
332
- "profile_image_url_https": "https://si0.twimg.com/profile_images/1870193522/securedownload__3__normal.jpg",
333
- "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>",
334
- "text": "RT @caaammmmi: @shanleyaustin27 .....and this hahahahaa http://t.co/wzCMx6ZU",
335
- "to_user": null,
336
- "to_user_id": null,
337
- "to_user_id_str": null,
338
- "to_user_name": null
339
- },
340
- {
341
- "created_at": "Mon, 23 Apr 2011 20:20:57 +0000",
342
- "from_user": "Dame_Valuta",
343
- "from_user_id": 507639925,
344
- "from_user_id_str": "507639925",
345
- "from_user_name": "Vickie Aluta",
346
- "geo": null,
347
- "id": 194521261563580416,
348
- "id_str": "194521261563580416",
349
- "iso_language_code": "en",
350
- "metadata": {
351
- "result_type": "recent"
352
- },
353
- "profile_image_url": "http://a0.twimg.com/profile_images/2081431605/30-2011-20_normal.jpg",
354
- "profile_image_url_https": "https://si0.twimg.com/profile_images/2081431605/30-2011-20_normal.jpg",
355
- "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>",
356
- "text": "RT @Paiser10: Great @chelseafc training at Nou Camp! #cfc http://t.co/k00TnRyR",
357
- "to_user": null,
358
- "to_user_id": null,
359
- "to_user_id_str": null,
360
- "to_user_name": null
361
- },
362
- {
363
- "created_at": "Mon, 23 Apr 2011 20:20:57 +0000",
364
- "from_user": "miss_indyiah",
365
- "from_user_id": 25199338,
366
- "from_user_id_str": "25199338",
367
- "from_user_name": "Indyiah",
368
- "geo": null,
369
- "id": 194521261488095232,
370
- "id_str": "194521261488095232",
371
- "iso_language_code": "en",
372
- "metadata": {
373
- "result_type": "recent"
374
- },
375
- "profile_image_url": "http://a0.twimg.com/profile_images/2147854311/458978_10150938007793858_742758857_13175458_650464464_o_normal.jpg",
376
- "profile_image_url_https": "https://si0.twimg.com/profile_images/2147854311/458978_10150938007793858_742758857_13175458_650464464_o_normal.jpg",
377
- "source": "<a href="http://twitter.com/">web</a>",
378
- "text": "smh, @IndianaHustle done turned into a twitter addict..fuck goin on lol ?",
379
- "to_user": "IndianaHustle",
380
- "to_user_id": 59990139,
381
- "to_user_id_str": "59990139",
382
- "to_user_name": "Hustle Mane HRT",
383
- "in_reply_to_status_id": 194521038304976896,
384
- "in_reply_to_status_id_str": "194521038304976896"
385
- },
386
- {
387
- "created_at": "Mon, 23 Apr 2011 20:20:57 +0000",
388
- "from_user": "CAROLINEWOLLER",
389
- "from_user_id": 136029095,
390
- "from_user_id_str": "136029095",
391
- "from_user_name": "Caroline Woller",
392
- "geo": null,
393
- "id": 194521261370650625,
394
- "id_str": "194521261370650625",
395
- "iso_language_code": "en",
396
- "metadata": {
397
- "result_type": "recent"
398
- },
399
- "profile_image_url": "http://a0.twimg.com/profile_images/1987131486/dw_normal.jpg",
400
- "profile_image_url_https": "https://si0.twimg.com/profile_images/1987131486/dw_normal.jpg",
401
- "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>",
402
- "text": "RT @Mark_Ingram28: To all Bama fans and followers, please unfollow and pay no attention to any user posing to be Mark Barron. My bro doesn't have a twitter!",
403
- "to_user": null,
404
- "to_user_id": null,
405
- "to_user_id_str": null,
406
- "to_user_name": null
407
- },
408
- {
409
- "created_at": "Mon, 23 Apr 2011 20:20:57 +0000",
410
- "from_user": "shelbytrenchdww",
411
- "from_user_id": 60678594,
412
- "from_user_id_str": "60678594",
413
- "from_user_name": "Shelby Burnside",
414
- "geo": null,
415
- "id": 194521261370642432,
416
- "id_str": "194521261370642432",
417
- "iso_language_code": "en",
418
- "metadata": {
419
- "result_type": "recent"
420
- },
421
- "profile_image_url": "http://a0.twimg.com/profile_images/1721956218/maybe1_normal.PNG",
422
- "profile_image_url_https": "https://si0.twimg.com/profile_images/1721956218/maybe1_normal.PNG",
423
- "source": "<a href="http://twitter.com/">web</a>",
424
- "text": "RT @The90sLife: Admit it, we all have a cabinet that looks like this. http://t.co/gQEkQw5G",
425
- "to_user": null,
426
- "to_user_id": null,
427
- "to_user_id_str": null,
428
- "to_user_name": null
429
- },
430
- {
431
- "created_at": "Mon, 23 Apr 2011 20:20:57 +0000",
432
- "from_user": "kabos84",
433
- "from_user_id": 265266954,
434
- "from_user_id_str": "265266954",
435
- "from_user_name": "؏ـلي ٱلـ؏ـبٱڕ a̸l̸i̸",
436
- "geo": null,
437
- "id": 194521261307727872,
438
- "id_str": "194521261307727872",
439
- "iso_language_code": "ar",
440
- "metadata": {
441
- "result_type": "recent"
442
- },
443
- "profile_image_url": "http://a0.twimg.com/profile_images/2155190680/B6210467-F1AC-41E8-9374-4B50ABB3C6EA_normal",
444
- "profile_image_url_https": "https://si0.twimg.com/profile_images/2155190680/B6210467-F1AC-41E8-9374-4B50ABB3C6EA_normal",
445
- "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>",
446
- "text": "RT @JF_q8: بالله عليكم ،، مو عيب !!!\n\n\n\n.. http://t.co/e29GV7Ow",
447
- "to_user": null,
448
- "to_user_id": null,
449
- "to_user_id_str": null,
450
- "to_user_name": null
451
- }
452
- ],
453
- "results_per_page": 20,
454
- "since_id": 0,
455
- "since_id_str": "0"
456
- }
1
+ {"statuses":[{"metadata":{"result_type":"recent","iso_language_code":"en"},"created_at":"Mon Sep 17 22:41:52 +0000 2012","id":247827742178021376,"id_str":"247827742178021376","text":"Bubble Mailer #freebandnames","source":"\u003ca href=\"http:\/\/tapbots.com\" rel=\"nofollow\"\u003eTweetbot for Mac\u003c\/a\u003e","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":671293,"id_str":"671293","name":"Richard Allen","screen_name":"richrad","location":"Kansas City","url":"http:\/\/richardallen.me","description":"Give me a break, Jeffery.","protected":false,"followers_count":174,"friends_count":273,"listed_count":2,"created_at":"Sat Jan 20 16:02:45 +0000 2007","favourites_count":383,"utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":1370,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1399177739\/notlookingup_normal.jpeg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1399177739\/notlookingup_normal.jpeg","profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"show_all_inline_media":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"entities":{"hashtags":[{"text":"freebandnames","indices":[14,28]}],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false},{"metadata":{"result_type":"recent","iso_language_code":"en"},"created_at":"Mon Sep 17 21:38:09 +0000 2012","id":247811706061979648,"id_str":"247811706061979648","text":"Hair of the Frog \n\n(seriously, think about it) \n\n#freebandnames","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","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":349187102,"id_str":"349187102","name":"Drew Shields","screen_name":"dswordsNshields","location":"Buffalo, NY","url":"http:\/\/drewcshields.com","description":"Copywriter intern @CPBgroup Boulder. Recent SU grad in Advertising & International Relations. Pop culture devourer. Great guy to have a beer with.","protected":false,"followers_count":232,"friends_count":287,"listed_count":9,"created_at":"Fri Aug 05 18:09:00 +0000 2011","favourites_count":2,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":3366,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"0074AA","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/447073169\/2048px-Hong_Kong_Skyline_Restitch_-_Dec_2007.jpg","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/447073169\/2048px-Hong_Kong_Skyline_Restitch_-_Dec_2007.jpg","profile_background_tile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1581807986\/delocated_normal.jpg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1581807986\/delocated_normal.jpg","profile_link_color":"0074AA","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"show_all_inline_media":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"entities":{"hashtags":[{"text":"freebandnames","indices":[49,63]}],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false},{"metadata":{"result_type":"recent","iso_language_code":"de"},"created_at":"Sat Sep 15 04:19:13 +0000 2012","id":246825473785606145,"id_str":"246825473785606145","text":"Wussies and pussies #goddylan #freebandnames","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","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":230804589,"id_str":"230804589","name":"The Dunnie Bobos ","screen_name":"thedunniebobos","location":"New York, NY","url":"http:\/\/bobomedia.tumblr.com\/","description":"The Coveted Blue Checkmark","protected":false,"followers_count":164,"friends_count":126,"listed_count":5,"created_at":"Sun Dec 26 18:47:44 +0000 2010","favourites_count":82,"utc_offset":-18000,"time_zone":"Quito","geo_enabled":false,"verified":false,"statuses_count":930,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C1E2EB","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/255658750\/black_dynamite.jpg","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/255658750\/black_dynamite.jpg","profile_background_tile":true,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2290113473\/pobz6p9231tle9ftq0sf_normal.png","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2290113473\/pobz6p9231tle9ftq0sf_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"FFFAE8","profile_text_color":"333333","profile_use_background_image":true,"show_all_inline_media":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"entities":{"hashtags":[{"text":"goddylan","indices":[20,29]},{"text":"freebandnames","indices":[30,44]}],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false},{"metadata":{"result_type":"recent","iso_language_code":"en"},"created_at":"Fri Sep 14 17:46:33 +0000 2012","id":246666260270702592,"id_str":"246666260270702592","text":"#FreeBandNames Asterisks and Thunderstorms","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":21434745,"id_str":"21434745","name":"StrongPROGressRyan ","screen_name":"StrongPROGress","location":"Mound (not the Phish song), MN","url":"http:\/\/strongprogress.wordpress.com\/","description":"Lover of Heavy Progressive Musics, writes Strong PROGress: an audiobiographical music blog. Father\/Husband\/Musician; digs @thebigwu @phish, One Among The Fence","protected":false,"followers_count":666,"friends_count":748,"listed_count":13,"created_at":"Fri Feb 20 21:15:32 +0000 2009","favourites_count":629,"utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":8040,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/579632535\/2x7n6f01kmxqxddcr263.jpeg","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/579632535\/2x7n6f01kmxqxddcr263.jpeg","profile_background_tile":true,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2586458113\/6kbrcpcnurckpccnr8ta_normal.jpeg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2586458113\/6kbrcpcnurckpccnr8ta_normal.jpeg","profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"show_all_inline_media":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"entities":{"hashtags":[{"text":"FreeBandNames","indices":[0,14]}],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false}],"search_metadata":{"completed_in":0.029,"max_id":250126199840518145,"max_id_str":"250126199840518145","next_page":"?page=2&max_id=250126199840518145&q=%23freebandnames&rpp=4&include_entities=1&result_type=mixed","page":1,"query":"%23freebandnames","refresh_url":"?since_id=250126199840518145&q=%23freebandnames&result_type=mixed&include_entities=1","results_per_page":4,"since_id":24012619984051000,"since_id_str":"24012619984051000"}}