gowalla 0.1.2 → 0.1.3

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/README.md CHANGED
@@ -21,8 +21,8 @@ Be sure and get your API key: [http://gowalla.com/api/keys](http://gowalla.com/a
21
21
 
22
22
  >> Gowalla.configure do |config|
23
23
  >> config.api_key = 'your_api_key'
24
- >> config.api_key = 'pengwynn'
25
- >> config.api_key = 'somepassword'
24
+ >> config.username = 'pengwynn'
25
+ >> config.password = 'somepassword'
26
26
  >> end
27
27
  >> gowalla = Gowalla::Client.new
28
28
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.2
1
+ 0.1.3
data/changelog.md CHANGED
@@ -1,4 +1,9 @@
1
1
  # Changelog
2
+
3
+ ## 0.1.3 March 7, 2010
4
+ * Updated README with correct config call
5
+ * Applied patch from [Kacy Fortner](http://github.com/kacy) to add vaulted items and missing items calls
6
+ * Applied patches from [Eric Hutzelman](http://github.com/ehutzelman) to clean up fixtures, changed api methods
2
7
  ## 0.1.2 March 3, 2010
3
8
 
4
9
  * Applied patch from [Ruben Fonseca](http://github.com/rubenfonseca) to search within a given bounds
data/gowalla.gemspec CHANGED
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{gowalla}
8
- s.version = "0.1.2"
8
+ s.version = "0.1.3"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Wynn Netherland"]
12
- s.date = %q{2010-03-03}
12
+ s.date = %q{2010-03-07}
13
13
  s.description = %q{Ruby wrapper for the Gowalla API}
14
14
  s.email = %q{wynn.netherland@gmail.com}
15
15
  s.extra_rdoc_files = [
@@ -39,6 +39,7 @@ Gem::Specification.new do |s|
39
39
  "test/fixtures/item.json",
40
40
  "test/fixtures/items.json",
41
41
  "test/fixtures/me.json",
42
+ "test/fixtures/missing_items.json",
42
43
  "test/fixtures/new_spot.json",
43
44
  "test/fixtures/pins.json",
44
45
  "test/fixtures/potential_twitter_friends.json",
@@ -50,6 +51,7 @@ Gem::Specification.new do |s|
50
51
  "test/fixtures/trip.json",
51
52
  "test/fixtures/trips.json",
52
53
  "test/fixtures/user.json",
54
+ "test/fixtures/vaulted_items.json",
53
55
  "test/fixtures/visited_spots.json",
54
56
  "test/helper.rb",
55
57
  "test/test_gowalla.rb"
@@ -21,11 +21,11 @@ module Gowalla
21
21
  end
22
22
 
23
23
  def events(user_id=self.username)
24
- mashup(self.class.get("/users/#{user_id}/events")).events
24
+ mashup(self.class.get("/users/#{user_id}/events")).activity
25
25
  end
26
26
 
27
27
  def friends_events
28
- mashup(self.class.get("/visits/recent")).events
28
+ mashup(self.class.get("/visits/recent")).activity
29
29
  end
30
30
 
31
31
  def friend_requests(user_id=self.username)
@@ -40,6 +40,14 @@ module Gowalla
40
40
  mashup(self.class.get("/users/#{user_id}/items")).items
41
41
  end
42
42
 
43
+ def missing_items(user_id=self.username)
44
+ mashup(self.class.get("/users/#{user_id}/items/missing")).items
45
+ end
46
+
47
+ def vaulted_items(user_id=self.username)
48
+ mashup(self.class.get("/users/#{user_id}/items/vault")).items
49
+ end
50
+
43
51
  def item(id)
44
52
  mashup(self.class.get("/items/#{id}"))
45
53
  end
@@ -53,7 +61,7 @@ module Gowalla
53
61
  end
54
62
 
55
63
  def top_spots(user_id=self.username)
56
- mashup(self.class.get("/users/#{user_id}/top_spots"))
64
+ mashup(self.class.get("/users/#{user_id}/top_spots")).top_spots
57
65
  end
58
66
 
59
67
  def visited_spots(user_id=self.username)
@@ -69,7 +77,7 @@ module Gowalla
69
77
  end
70
78
 
71
79
  def spot_events(spot_id)
72
- mashup(self.class.get("/spots/#{spot_id}/events")).events
80
+ mashup(self.class.get("/spots/#{spot_id}/events")).activity
73
81
  end
74
82
 
75
83
  def spot_items(spot_id)
@@ -94,7 +102,7 @@ module Gowalla
94
102
  options[:user_url] = "/users/#{user_id}"
95
103
  end
96
104
  query = format_geo_options(options)
97
- mashup(self.class.get("/trips", :query => query))
105
+ mashup(self.class.get("/trips", :query => query)).trips
98
106
  end
99
107
 
100
108
  def featured_trips(options={})
@@ -1,411 +1,185 @@
1
1
  {
2
- "events": [
2
+ "activity": [
3
3
  {
4
- "type": "visit",
5
- "user_id": "26700",
6
- "visit_id": "3184820",
7
- "spot_id": "18568",
4
+ "comments_count": 0,
5
+ "type": "checkin",
6
+ "created_at": "2010-03-05T22:17:56+00:00",
7
+ "photos_count": 0,
8
+ "activity_url": "/checkins/4288683/activity",
9
+ "message": "",
8
10
  "user": {
9
- "hometown": "Austin, Texas",
10
- "first_name": "whurley",
11
- "image_url": "http://s3.amazonaws.com/static.gowalla.com/users/26700-standard.jpg?1259180481",
12
- "name": "whurley *",
13
- "friends_only": false,
14
- "url": "/users/26700",
15
- "username": "whurley",
16
- "last_name": "*"
17
- },
18
- "created_at": "2010/02/08 19:53:16 +0000"
19
- },
20
- {
21
- "type": "visit",
22
- "user_id": "1699",
23
- "comment": "Fish! Taco! Taco!",
24
- "visit_id": "3116860",
25
- "spot_id": "18568",
26
- "user": {
27
- "hometown": "Austin, TX",
28
- "first_name": "Mattt",
29
- "image_url": "http://s3.amazonaws.com/static.gowalla.com/users/1699-standard.jpg?1244533485",
30
- "name": "Mattt Thompson",
31
- "friends_only": false,
32
- "url": "/users/1699",
33
- "username": "mattt",
34
- "last_name": "Thompson"
35
- },
36
- "created_at": "2010/02/07 01:36:38 +0000"
37
- },
38
- {
39
- "type": "pick_up",
40
- "user_id": "12",
41
- "item": {
42
- "issue_number": 5808,
43
- "image_url": "http://static.gowalla.com/kinds/1495-2b77b655334c148b858aca07ea686799.png",
44
- "name": "Mexican Hot Chocolate",
45
- "determiner": "a",
46
- "url": "/items/495643",
47
- "issue_number_str": "5808"
48
- },
49
- "spot_id": "18568",
50
- "user": {
51
- "hometown": "Austin, TX",
52
- "first_name": "Phillip",
53
- "image_url": "http://s3.amazonaws.com/static.gowalla.com/users/12-standard.jpg?1249405659",
54
- "name": "Phillip Bowden",
55
- "friends_only": false,
56
- "url": "/users/12",
57
- "username": "pbowden",
58
- "last_name": "Bowden"
59
- },
60
- "created_at": "2010/02/07 01:36:36 +0000",
61
- "icon_id": "495643"
62
- },
63
- {
64
- "type": "drop",
65
- "user_id": "12",
66
- "item": {
67
- "issue_number": 23121,
68
- "image_url": "http://static.gowalla.com/kinds/1437-fa98b437724a94766e71668a2fc98322.png",
69
- "name": "Espresso",
70
- "determiner": "an",
71
- "url": "/items/1185706",
72
- "issue_number_str": "23121"
73
- },
74
- "spot_id": "18568",
75
- "user": {
76
- "hometown": "Austin, TX",
77
- "first_name": "Phillip",
78
- "image_url": "http://s3.amazonaws.com/static.gowalla.com/users/12-standard.jpg?1249405659",
79
- "name": "Phillip Bowden",
80
- "friends_only": false,
81
- "url": "/users/12",
82
- "username": "pbowden",
83
- "last_name": "Bowden"
84
- },
85
- "created_at": "2010/02/07 01:36:36 +0000",
86
- "icon_id": "1185706"
87
- },
88
- {
89
- "type": "visit",
90
- "user_id": "12",
91
- "visit_id": "3116834",
92
- "spot_id": "18568",
93
- "user": {
94
- "hometown": "Austin, TX",
95
- "first_name": "Phillip",
96
- "image_url": "http://s3.amazonaws.com/static.gowalla.com/users/12-standard.jpg?1249405659",
97
- "name": "Phillip Bowden",
98
- "friends_only": false,
99
- "url": "/users/12",
100
- "username": "pbowden",
101
- "last_name": "Bowden"
102
- },
103
- "created_at": "2010/02/07 01:35:48 +0000"
104
- },
105
- {
106
- "type": "visit",
107
- "user_id": "5",
108
- "visit_id": "3116821",
109
- "spot_id": "18568",
110
- "user": {
111
- "hometown": "Austin, Texas",
112
- "first_name": "Keegan",
113
- "image_url": "http://s3.amazonaws.com/static.gowalla.com/users/5-standard.jpg?1253829277",
114
- "name": "Keegan Jones",
115
- "friends_only": false,
116
- "url": "/users/5",
117
- "username": "keeg",
118
- "last_name": "Jones"
11
+ "image_url": "http://s3.amazonaws.com/static.gowalla.com/users/3104-standard.jpg?1253304471",
12
+ "last_name": "Mack",
13
+ "url": "/users/3104",
14
+ "first_name": "Rob"
119
15
  },
120
- "created_at": "2010/02/07 01:35:38 +0000"
16
+ "url": "/checkins/4288683"
121
17
  },
122
18
  {
123
- "type": "pick_up",
124
- "user_id": "89918",
125
- "item": {
126
- "issue_number": 1407,
127
- "image_url": "http://static.gowalla.com/kinds/1501-02736066098cfa70a2c9b9662ea91ac6.png",
128
- "name": "Chinese Lantern",
129
- "determiner": "a",
130
- "url": "/items/181864",
131
- "issue_number_str": "1407"
132
- },
133
- "spot_id": "18568",
134
- "user": {
135
- "hometown": "Austin, TX",
136
- "first_name": "Ryan",
137
- "image_url": "http://s3.amazonaws.com/static.gowalla.com/users/89918-standard.jpg?1264731552",
138
- "name": "Ryan Murphy",
139
- "friends_only": false,
140
- "url": "/users/89918",
141
- "username": "rdmurphy",
142
- "last_name": "Murphy"
143
- },
144
- "created_at": "2010/02/06 23:23:23 +0000",
145
- "icon_id": "181864"
146
- },
147
- {
148
- "type": "drop",
149
- "user_id": "89918",
150
- "item": {
151
- "issue_number": 4697,
152
- "image_url": "http://static.gowalla.com/kinds/1533-71a4c6d640631a42160aed8f64ad0d76.png",
153
- "name": "A Crush It! book",
154
- "determiner": "",
155
- "url": "/items/1019923",
156
- "issue_number_str": "4697"
157
- },
158
- "spot_id": "18568",
159
- "user": {
160
- "hometown": "Austin, TX",
161
- "first_name": "Ryan",
162
- "image_url": "http://s3.amazonaws.com/static.gowalla.com/users/89918-standard.jpg?1264731552",
163
- "name": "Ryan Murphy",
164
- "friends_only": false,
165
- "url": "/users/89918",
166
- "username": "rdmurphy",
167
- "last_name": "Murphy"
168
- },
169
- "created_at": "2010/02/06 23:23:23 +0000",
170
- "icon_id": "1019923"
171
- },
172
- {
173
- "type": "visit",
174
- "user_id": "89918",
175
- "visit_id": "3110643",
176
- "spot_id": "18568",
177
- "user": {
178
- "hometown": "Austin, TX",
179
- "first_name": "Ryan",
180
- "image_url": "http://s3.amazonaws.com/static.gowalla.com/users/89918-standard.jpg?1264731552",
181
- "name": "Ryan Murphy",
182
- "friends_only": false,
183
- "url": "/users/89918",
184
- "username": "rdmurphy",
185
- "last_name": "Murphy"
186
- },
187
- "created_at": "2010/02/06 23:22:20 +0000"
188
- },
189
- {
190
- "type": "visit",
191
- "user_id": "33",
192
- "visit_id": "3059737",
193
- "spot_id": "18568",
19
+ "comments_count": 4,
20
+ "type": "checkin",
21
+ "created_at": "2010-03-05T08:05:40+00:00",
22
+ "photos_count": 1,
23
+ "activity_url": "/checkins/4257648/activity",
24
+ "message": "Taking a photo from the garage.",
194
25
  "user": {
195
- "hometown": "Austin, TX",
196
- "first_name": "Sandi",
197
- "image_url": "http://s3.amazonaws.com/static.gowalla.com/users/33-standard.jpg?1237404524",
198
- "name": "Sandi Weldon",
199
- "friends_only": false,
200
- "url": "/users/33",
201
- "username": "Sandi",
202
- "last_name": "Weldon"
26
+ "image_url": "http://s3.amazonaws.com/static.gowalla.com/users/2-standard.jpg?1251170137",
27
+ "last_name": "Williams",
28
+ "url": "/users/2",
29
+ "first_name": "Josh"
203
30
  },
204
- "created_at": "2010/02/05 23:48:15 +0000"
31
+ "url": "/checkins/4257648"
205
32
  },
206
33
  {
207
- "type": "visit",
208
- "user_id": "1",
209
- "visit_id": "3046861",
210
- "spot_id": "18568",
34
+ "comments_count": 0,
35
+ "type": "checkin",
36
+ "created_at": "2010-03-05T03:33:10+00:00",
37
+ "photos_count": 0,
38
+ "activity_url": "/checkins/4252042/activity",
39
+ "message": "",
211
40
  "user": {
212
- "hometown": "Austin, Texas",
213
- "first_name": "Scott",
214
- "image_url": "http://s3.amazonaws.com/static.gowalla.com/users/1-standard.jpg?1263521844",
215
- "name": "Scott Raymond",
216
- "friends_only": false,
217
- "url": "/users/1",
218
- "username": "sco",
219
- "last_name": "Raymond"
41
+ "image_url": "http://s3.amazonaws.com/static.gowalla.com/users/51430-standard.jpg?1260482148",
42
+ "last_name": "Jaffe",
43
+ "url": "/users/51430",
44
+ "first_name": "Allison"
220
45
  },
221
- "created_at": "2010/02/05 18:52:44 +0000"
46
+ "url": "/checkins/4252042"
222
47
  },
223
48
  {
224
- "type": "visit",
225
- "user_id": "2",
226
- "comment": "Done!",
227
- "visit_id": "3004924",
228
- "spot_id": "18568",
49
+ "comments_count": 0,
50
+ "type": "checkin",
51
+ "created_at": "2010-03-04T19:52:24+00:00",
52
+ "photos_count": 0,
53
+ "activity_url": "/checkins/4234162/activity",
54
+ "message": "They removed my sticker!",
229
55
  "user": {
230
- "hometown": "Austin, Texas",
231
- "first_name": "Josh",
232
- "image_url": "http://s3.amazonaws.com/static.gowalla.com/users/2-standard.jpg?1251170137",
233
- "name": "Josh Williams",
234
- "friends_only": false,
235
- "url": "/users/2",
236
- "username": "jw",
237
- "last_name": "Williams"
56
+ "image_url": "http://s3.amazonaws.com/static.gowalla.com/users/118107-standard.jpg?1266009607",
57
+ "last_name": "Frost",
58
+ "url": "/users/118107",
59
+ "first_name": "Halstead"
238
60
  },
239
- "created_at": "2010/02/04 19:01:06 +0000"
61
+ "url": "/checkins/4234162"
240
62
  },
241
63
  {
242
- "type": "pick_up",
243
- "user_id": "23795",
244
- "item": {
245
- "issue_number": 7650,
246
- "image_url": "http://static.gowalla.com/kinds/1464-af2d01855f159ea3dfafb104a62bc154.png",
247
- "name": "Foosball",
248
- "determiner": "a",
249
- "url": "/items/1009140",
250
- "issue_number_str": "7650"
251
- },
252
- "spot_id": "18568",
64
+ "comments_count": 0,
65
+ "type": "checkin",
66
+ "created_at": "2010-03-03T21:45:33+00:00",
67
+ "photos_count": 0,
68
+ "activity_url": "/checkins/4194285/activity",
69
+ "message": "",
253
70
  "user": {
254
- "hometown": null,
255
- "first_name": "Ricky",
256
- "image_url": "http://s3.amazonaws.com/static.gowalla.com/users/23795-standard.jpg?1258837968",
257
- "name": "Ricky Rosario",
258
- "friends_only": false,
259
- "url": "/users/23795",
260
- "username": "r1cky",
261
- "last_name": "Rosario"
71
+ "image_url": "http://s3.amazonaws.com/static.gowalla.com/users/15722-standard.jpg?1258238278",
72
+ "last_name": "Smith",
73
+ "url": "/users/15722",
74
+ "first_name": "Brien"
262
75
  },
263
- "created_at": "2010/02/03 18:35:33 +0000",
264
- "icon_id": "1009140"
76
+ "url": "/checkins/4194285"
265
77
  },
266
78
  {
267
- "type": "drop",
268
- "user_id": "23795",
269
- "item": {
270
- "issue_number": 15134,
271
- "image_url": "http://static.gowalla.com/kinds/1496-8b12234e142f46088ae8f90f87876ebc.png",
272
- "name": "Beatnik Poet",
273
- "determiner": "a",
274
- "url": "/items/1362385",
275
- "issue_number_str": "15134"
276
- },
277
- "spot_id": "18568",
79
+ "comments_count": 0,
80
+ "type": "checkin",
81
+ "created_at": "2010-03-03T18:37:43+00:00",
82
+ "photos_count": 0,
83
+ "activity_url": "/checkins/4186421/activity",
84
+ "message": "To go order plus exercise ",
278
85
  "user": {
279
- "hometown": null,
280
- "first_name": "Ricky",
281
- "image_url": "http://s3.amazonaws.com/static.gowalla.com/users/23795-standard.jpg?1258837968",
282
- "name": "Ricky Rosario",
283
- "friends_only": false,
284
- "url": "/users/23795",
285
- "username": "r1cky",
286
- "last_name": "Rosario"
86
+ "image_url": "http://gowalla.com/images/default-user.jpg",
87
+ "last_name": "Myers",
88
+ "url": "/users/104205",
89
+ "first_name": "Jamie"
287
90
  },
288
- "created_at": "2010/02/03 18:35:33 +0000",
289
- "icon_id": "1362385"
91
+ "url": "/checkins/4186421"
290
92
  },
291
93
  {
292
- "type": "visit",
293
- "user_id": "23795",
294
- "comment": "lunch time",
295
- "visit_id": "2959372",
296
- "spot_id": "18568",
94
+ "comments_count": 0,
95
+ "type": "checkin",
96
+ "created_at": "2010-03-03T18:24:38+00:00",
97
+ "photos_count": 0,
98
+ "activity_url": "/checkins/4185787/activity",
99
+ "message": "",
297
100
  "user": {
298
- "hometown": null,
299
- "first_name": "Ricky",
300
- "image_url": "http://s3.amazonaws.com/static.gowalla.com/users/23795-standard.jpg?1258837968",
301
- "name": "Ricky Rosario",
302
- "friends_only": false,
303
- "url": "/users/23795",
304
- "username": "r1cky",
305
- "last_name": "Rosario"
101
+ "image_url": "http://s3.amazonaws.com/static.gowalla.com/users/26700-standard.jpg?1259180481",
102
+ "last_name": "*",
103
+ "url": "/users/26700",
104
+ "first_name": "whurley"
306
105
  },
307
- "created_at": "2010/02/03 18:34:58 +0000"
106
+ "url": "/checkins/4185787"
308
107
  },
309
108
  {
310
- "type": "visit",
311
- "user_id": "164",
312
- "visit_id": "2807931",
313
- "spot_id": "18568",
109
+ "comments_count": 0,
110
+ "type": "checkin",
111
+ "created_at": "2010-03-03T18:20:23+00:00",
112
+ "photos_count": 0,
113
+ "activity_url": "/checkins/4185568/activity",
114
+ "message": "",
314
115
  "user": {
315
- "hometown": "Austin, Texas",
316
- "first_name": "Marcia",
317
- "image_url": "http://s3.amazonaws.com/static.gowalla.com/users/164-standard.jpg?1237081440",
318
- "name": "Marcia Gillespie-Norder",
319
- "friends_only": false,
320
- "url": "/users/164",
321
- "username": "juneadelle",
322
- "last_name": "Gillespie-Norder"
116
+ "image_url": "http://s3.amazonaws.com/static.gowalla.com/users/73028-standard.jpg?1262382990",
117
+ "last_name": "Beckel",
118
+ "url": "/users/73028",
119
+ "first_name": "Heather"
323
120
  },
324
- "created_at": "2010/01/31 01:44:58 +0000"
121
+ "url": "/checkins/4185568"
325
122
  },
326
123
  {
327
- "type": "visit",
328
- "user_id": "61797",
329
- "visit_id": "2805840",
330
- "spot_id": "18568",
124
+ "comments_count": 0,
125
+ "type": "checkin",
126
+ "created_at": "2010-03-03T17:25:41+00:00",
127
+ "photos_count": 0,
128
+ "activity_url": "/checkins/4182721/activity",
129
+ "message": "",
331
130
  "user": {
332
- "hometown": "Austin, TX ",
333
- "first_name": "Chris",
334
- "image_url": "http://s3.amazonaws.com/static.gowalla.com/users/61797-standard.jpg?1264624166",
335
- "name": "Chris Marlow",
336
- "friends_only": false,
337
- "url": "/users/61797",
338
- "username": "chrismarlow",
339
- "last_name": "Marlow"
131
+ "image_url": "http://s3.amazonaws.com/static.gowalla.com/users/121897-standard.jpg?1266454833",
132
+ "last_name": "Kettle",
133
+ "url": "/users/121897",
134
+ "first_name": "Ben"
340
135
  },
341
- "created_at": "2010/01/31 00:59:22 +0000"
136
+ "url": "/checkins/4182721"
342
137
  },
343
138
  {
344
- "type": "create_spot",
345
- "user_id": "61797",
346
- "spot_id": "18568",
139
+ "comments_count": 0,
140
+ "type": "checkin",
141
+ "created_at": "2010-03-03T00:38:32+00:00",
142
+ "photos_count": 0,
143
+ "activity_url": "/checkins/4157429/activity",
144
+ "message": "",
347
145
  "user": {
348
- "hometown": "Austin, TX ",
349
- "first_name": "Chris",
350
- "image_url": "http://s3.amazonaws.com/static.gowalla.com/users/61797-standard.jpg?1264624166",
351
- "name": "Chris Marlow",
352
- "friends_only": false,
353
- "url": "/users/61797",
354
- "username": "chrismarlow",
355
- "last_name": "Marlow"
146
+ "image_url": "http://s3.amazonaws.com/static.gowalla.com/users/97465-standard.jpg?1264027703",
147
+ "last_name": "Sewell",
148
+ "url": "/users/97465",
149
+ "first_name": "Weston"
356
150
  },
357
- "created_at": "2010/01/31 00:59:12 +0000"
151
+ "url": "/checkins/4157429"
358
152
  },
359
153
  {
360
- "type": "pick_up",
361
- "user_id": "89161",
362
- "item": {
363
- "issue_number": 18109,
364
- "image_url": "http://static.gowalla.com/kinds/1486-1307477a2e75e0186cf66bcea17acd34.png",
365
- "name": "Tacos",
366
- "determiner": "some",
367
- "url": "/items/1174891",
368
- "issue_number_str": "18109"
369
- },
370
- "spot_id": "18568",
154
+ "comments_count": 0,
155
+ "type": "checkin",
156
+ "created_at": "2010-03-02T16:50:26+00:00",
157
+ "photos_count": 0,
158
+ "activity_url": "/checkins/4137591/activity",
159
+ "message": "Testing",
371
160
  "user": {
372
- "hometown": null,
373
- "first_name": "John",
374
- "image_url": "http://s3.amazonaws.com/static.gowalla.com/users/89161-standard.jpg?1263361189",
375
- "name": "John Miller",
376
- "friends_only": false,
377
- "url": "/users/89161",
378
- "username": "johnm",
379
- "last_name": "Miller"
161
+ "image_url": "http://s3.amazonaws.com/static.gowalla.com/users/3-standard.jpg?1236873337",
162
+ "last_name": "McManus",
163
+ "url": "/users/3",
164
+ "first_name": "Adam"
380
165
  },
381
- "created_at": "2010/01/30 02:51:17 +0000",
382
- "icon_id": "1174891"
166
+ "url": "/checkins/4137591"
383
167
  },
384
168
  {
385
- "type": "drop",
386
- "user_id": "89161",
387
- "item": {
388
- "issue_number": 7650,
389
- "image_url": "http://static.gowalla.com/kinds/1464-af2d01855f159ea3dfafb104a62bc154.png",
390
- "name": "Foosball",
391
- "determiner": "a",
392
- "url": "/items/1009140",
393
- "issue_number_str": "7650"
394
- },
395
- "spot_id": "18568",
169
+ "comments_count": 0,
170
+ "type": "checkin",
171
+ "created_at": "2010-03-02T01:34:25+00:00",
172
+ "photos_count": 0,
173
+ "activity_url": "/checkins/4115929/activity",
174
+ "message": "",
396
175
  "user": {
397
- "hometown": null,
398
- "first_name": "John",
399
- "image_url": "http://s3.amazonaws.com/static.gowalla.com/users/89161-standard.jpg?1263361189",
400
- "name": "John Miller",
401
- "friends_only": false,
402
- "url": "/users/89161",
403
- "username": "johnm",
404
- "last_name": "Miller"
176
+ "image_url": "http://s3.amazonaws.com/static.gowalla.com/users/4-standard.jpg?1253815773",
177
+ "last_name": "Critz",
178
+ "url": "/users/4",
179
+ "first_name": "John"
405
180
  },
406
- "created_at": "2010/01/30 02:51:17 +0000",
407
- "icon_id": "1009140"
181
+ "url": "/checkins/4115929"
408
182
  }
409
183
  ],
410
184
  "url": "/spots/18568"
411
- }
185
+ }