foursquare2 0.9.1 → 0.9.5
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/Rakefile +2 -2
- data/Readme.md +22 -0
- data/VERSION +1 -1
- data/foursquare2.gemspec +13 -6
- data/lib/foursquare2.rb +13 -0
- data/lib/foursquare2/hash.rb +7 -0
- data/lib/foursquare2/tips.rb +16 -0
- data/lib/foursquare2/users.rb +30 -2
- data/lib/foursquare2/venues.rb +18 -0
- data/test/config.rb +4 -0
- data/test/fixtures/no_venues_by_tip.json +1 -0
- data/test/fixtures/search_tips.json +2 -2
- data/test/fixtures/search_venues.json +1 -2701
- data/test/fixtures/search_venues_by_tip.json +111 -0
- data/test/fixtures/user_tips.json +553 -0
- data/test/fixtures/user_tips_empty.json +11 -0
- data/test/fixtures/venue_tips.json +89 -0
- data/test/helper.rb +1 -0
- data/test/test_users.rb +36 -0
- data/test/test_venues.rb +36 -2
- metadata +29 -18
@@ -0,0 +1,111 @@
|
|
1
|
+
{
|
2
|
+
"meta": {
|
3
|
+
"code": 200
|
4
|
+
},
|
5
|
+
"response": {
|
6
|
+
"tips": [
|
7
|
+
{
|
8
|
+
"id": "4c51a2630f39b7138e171d00",
|
9
|
+
"createdAt": 1280418403,
|
10
|
+
"text": "A melhor parada rumo ao Litoral Norte pela rodovia dos Tamoios. Fica perto do posto da Polícia Rodoviária. O lugar é lindo e tem boa comida.",
|
11
|
+
"todo": {
|
12
|
+
"count": 0
|
13
|
+
},
|
14
|
+
"done": {
|
15
|
+
"count": 1
|
16
|
+
},
|
17
|
+
"venue": {
|
18
|
+
"id": "4be44639910020a19476d114",
|
19
|
+
"name": "Santa Barbara",
|
20
|
+
"contact": {
|
21
|
+
|
22
|
+
},
|
23
|
+
"location": {
|
24
|
+
"address": "Estrada dos Tamoios Km 22,5",
|
25
|
+
"state": "São Paulo",
|
26
|
+
"lat": -23.319228,
|
27
|
+
"lng": -45.733193,
|
28
|
+
"distance": 38770
|
29
|
+
},
|
30
|
+
"categories": [
|
31
|
+
{
|
32
|
+
"id": "4bf58dd8d48988d1cb941735",
|
33
|
+
"name": "Food Trucks",
|
34
|
+
"icon": "http://foursquare.com/img/categories/food/streetfood.png",
|
35
|
+
"parents": [
|
36
|
+
"Food"
|
37
|
+
],
|
38
|
+
"primary": true
|
39
|
+
}
|
40
|
+
],
|
41
|
+
"verified": false,
|
42
|
+
"stats": {
|
43
|
+
"checkinsCount": 61,
|
44
|
+
"usersCount": 47
|
45
|
+
},
|
46
|
+
"todos": {
|
47
|
+
"count": 0
|
48
|
+
}
|
49
|
+
},
|
50
|
+
"user": {
|
51
|
+
"id": "1122609",
|
52
|
+
"firstName": "Eduardo",
|
53
|
+
"lastName": "P.",
|
54
|
+
"photo": "https://playfoursquare.s3.amazonaws.com/userpix_thumbs/HK4MTEIKNMMVAZFS.jpg",
|
55
|
+
"gender": "male",
|
56
|
+
"homeCity": "são paulo, Brazil"
|
57
|
+
}
|
58
|
+
},
|
59
|
+
{
|
60
|
+
"id": "4d1e10f72d5f8eec44c678cc",
|
61
|
+
"createdAt": 1293816055,
|
62
|
+
"text": "Gente, eu não tô na rodoviária, mas é tipo, praticamente lá que eu tô.",
|
63
|
+
"todo": {
|
64
|
+
"count": 0
|
65
|
+
},
|
66
|
+
"done": {
|
67
|
+
"count": 1
|
68
|
+
},
|
69
|
+
"venue": {
|
70
|
+
"id": "4cb62d393ac937040db9d10a",
|
71
|
+
"name": "Rodoviária de Aparecida",
|
72
|
+
"contact": {
|
73
|
+
|
74
|
+
},
|
75
|
+
"location": {
|
76
|
+
"lat": -22.842335,
|
77
|
+
"lng": -45.231119,
|
78
|
+
"distance": 37937
|
79
|
+
},
|
80
|
+
"categories": [
|
81
|
+
{
|
82
|
+
"id": "4bf58dd8d48988d1fe931735",
|
83
|
+
"name": "Bus Stations",
|
84
|
+
"icon": "http://foursquare.com/img/categories/travel/busstation.png",
|
85
|
+
"parents": [
|
86
|
+
"Travel Spots"
|
87
|
+
],
|
88
|
+
"primary": true
|
89
|
+
}
|
90
|
+
],
|
91
|
+
"verified": false,
|
92
|
+
"stats": {
|
93
|
+
"checkinsCount": 25,
|
94
|
+
"usersCount": 15
|
95
|
+
},
|
96
|
+
"todos": {
|
97
|
+
"count": 0
|
98
|
+
}
|
99
|
+
},
|
100
|
+
"user": {
|
101
|
+
"id": "5168620",
|
102
|
+
"firstName": "Ana Paula",
|
103
|
+
"lastName": "d.",
|
104
|
+
"photo": "https://playfoursquare.s3.amazonaws.com/userpix_thumbs/M20JL3T15EUIH53Z.jpg",
|
105
|
+
"gender": "female",
|
106
|
+
"homeCity": "Aparecida, Brasil"
|
107
|
+
}
|
108
|
+
}
|
109
|
+
]
|
110
|
+
}
|
111
|
+
}
|
@@ -0,0 +1,553 @@
|
|
1
|
+
{
|
2
|
+
"meta": {
|
3
|
+
"code": 200
|
4
|
+
},
|
5
|
+
"response": {
|
6
|
+
"tips": {
|
7
|
+
"count": 12,
|
8
|
+
"items": [
|
9
|
+
{
|
10
|
+
"id": "4d44492b3616b60c52a6e2c2",
|
11
|
+
"createdAt": 1296320811,
|
12
|
+
"text": "Encontrei mesas e chao sujos.",
|
13
|
+
"todo": {
|
14
|
+
"count": 0
|
15
|
+
},
|
16
|
+
"done": {
|
17
|
+
"count": 1
|
18
|
+
},
|
19
|
+
"venue": {
|
20
|
+
"id": "4cd0330b06b54688b186d994",
|
21
|
+
"name": "Subway Jd. Aquarius",
|
22
|
+
"contact": {
|
23
|
+
|
24
|
+
},
|
25
|
+
"location": {
|
26
|
+
"lat": -23.223232,
|
27
|
+
"lng": -45.903825
|
28
|
+
},
|
29
|
+
"categories": [
|
30
|
+
{
|
31
|
+
"id": "4bf58dd8d48988d16e941735",
|
32
|
+
"name": "Fast Food Restaurants",
|
33
|
+
"icon": "http://foursquare.com/img/categories/food/fastfood.png",
|
34
|
+
"parents": [
|
35
|
+
"Food"
|
36
|
+
],
|
37
|
+
"primary": true
|
38
|
+
}
|
39
|
+
],
|
40
|
+
"verified": false,
|
41
|
+
"stats": {
|
42
|
+
"checkinsCount": 20,
|
43
|
+
"usersCount": 11
|
44
|
+
},
|
45
|
+
"todos": {
|
46
|
+
"count": 0
|
47
|
+
}
|
48
|
+
}
|
49
|
+
},
|
50
|
+
{
|
51
|
+
"id": "4ca7959cd971b1f79edc0be1",
|
52
|
+
"createdAt": 1286051228,
|
53
|
+
"text": "Ambiente muito gostoso para um café com os amigos.",
|
54
|
+
"todo": {
|
55
|
+
"count": 0
|
56
|
+
},
|
57
|
+
"done": {
|
58
|
+
"count": 3
|
59
|
+
},
|
60
|
+
"venue": {
|
61
|
+
"id": "4bc3d330f8219c740cb6b610",
|
62
|
+
"name": "Franz café",
|
63
|
+
"contact": {
|
64
|
+
|
65
|
+
},
|
66
|
+
"location": {
|
67
|
+
"address": "Vilarreal",
|
68
|
+
"crossStreet": "Vila Ema",
|
69
|
+
"city": "São José dos Campos",
|
70
|
+
"state": "São Paulo",
|
71
|
+
"postalCode": "Brasil",
|
72
|
+
"lat": -23.1790801,
|
73
|
+
"lng": -45.8872476
|
74
|
+
},
|
75
|
+
"categories": [
|
76
|
+
{
|
77
|
+
"id": "4bf58dd8d48988d1e1931735",
|
78
|
+
"name": "Arcades",
|
79
|
+
"icon": "http://foursquare.com/img/categories/arts_entertainment/arcade.png",
|
80
|
+
"parents": [
|
81
|
+
"Arts & Entertainment"
|
82
|
+
],
|
83
|
+
"primary": true
|
84
|
+
},
|
85
|
+
{
|
86
|
+
"id": "4bf58dd8d48988d16d941735",
|
87
|
+
"name": "Cafés",
|
88
|
+
"icon": "http://foursquare.com/img/categories/food/cafe.png",
|
89
|
+
"parents": [
|
90
|
+
"Food"
|
91
|
+
]
|
92
|
+
}
|
93
|
+
],
|
94
|
+
"verified": false,
|
95
|
+
"stats": {
|
96
|
+
"checkinsCount": 10,
|
97
|
+
"usersCount": 8
|
98
|
+
},
|
99
|
+
"todos": {
|
100
|
+
"count": 0
|
101
|
+
}
|
102
|
+
}
|
103
|
+
},
|
104
|
+
{
|
105
|
+
"id": "4ca5dcb4931bb60c417d8de2",
|
106
|
+
"createdAt": 1285938356,
|
107
|
+
"text": "O pão de queijo é mto bom!",
|
108
|
+
"todo": {
|
109
|
+
"count": 0
|
110
|
+
},
|
111
|
+
"done": {
|
112
|
+
"count": 4
|
113
|
+
},
|
114
|
+
"venue": {
|
115
|
+
"id": "4bcc558f0687ef3ba303dfcc",
|
116
|
+
"name": "Padaria Guanabara",
|
117
|
+
"contact": {
|
118
|
+
|
119
|
+
},
|
120
|
+
"location": {
|
121
|
+
"city": "São Carlos",
|
122
|
+
"state": "São Paulo",
|
123
|
+
"lat": -22.012264,
|
124
|
+
"lng": -47.896243
|
125
|
+
},
|
126
|
+
"categories": [
|
127
|
+
{
|
128
|
+
"id": "4bf58dd8d48988d16d941735",
|
129
|
+
"name": "Cafés",
|
130
|
+
"icon": "http://foursquare.com/img/categories/food/cafe.png",
|
131
|
+
"parents": [
|
132
|
+
"Food"
|
133
|
+
],
|
134
|
+
"primary": true
|
135
|
+
}
|
136
|
+
],
|
137
|
+
"verified": false,
|
138
|
+
"stats": {
|
139
|
+
"checkinsCount": 80,
|
140
|
+
"usersCount": 20
|
141
|
+
},
|
142
|
+
"todos": {
|
143
|
+
"count": 0
|
144
|
+
}
|
145
|
+
}
|
146
|
+
},
|
147
|
+
{
|
148
|
+
"id": "4ca27492d7c33704d47f9862",
|
149
|
+
"createdAt": 1285715090,
|
150
|
+
"text": "As pizza do rodízio são muito bem servidas!",
|
151
|
+
"todo": {
|
152
|
+
"count": 0
|
153
|
+
},
|
154
|
+
"done": {
|
155
|
+
"count": 2
|
156
|
+
},
|
157
|
+
"venue": {
|
158
|
+
"id": "4c4712b0417b20a1265adca9",
|
159
|
+
"name": "Livorno",
|
160
|
+
"contact": {
|
161
|
+
|
162
|
+
},
|
163
|
+
"location": {
|
164
|
+
"address": "Av. Piracema, 669",
|
165
|
+
"crossStreet": "at Shopping Tamboré",
|
166
|
+
"city": "Barueri",
|
167
|
+
"state": "São Paulo",
|
168
|
+
"lat": -23.5046737,
|
169
|
+
"lng": -46.8325722
|
170
|
+
},
|
171
|
+
"categories": [
|
172
|
+
{
|
173
|
+
"id": "4bf58dd8d48988d16b941735",
|
174
|
+
"name": "Brazilian Restaurants",
|
175
|
+
"icon": "http://foursquare.com/img/categories/food/brazilian.png",
|
176
|
+
"parents": [
|
177
|
+
"Food"
|
178
|
+
],
|
179
|
+
"primary": true
|
180
|
+
}
|
181
|
+
],
|
182
|
+
"verified": false,
|
183
|
+
"stats": {
|
184
|
+
"checkinsCount": 60,
|
185
|
+
"usersCount": 34
|
186
|
+
},
|
187
|
+
"todos": {
|
188
|
+
"count": 0
|
189
|
+
}
|
190
|
+
}
|
191
|
+
},
|
192
|
+
{
|
193
|
+
"id": "4c9f2d060e9bb1f7651fee5f",
|
194
|
+
"createdAt": 1285500166,
|
195
|
+
"text": "Para mais informações acesse www.hominiss.com.br",
|
196
|
+
"todo": {
|
197
|
+
"count": 0
|
198
|
+
},
|
199
|
+
"done": {
|
200
|
+
"count": 3
|
201
|
+
},
|
202
|
+
"venue": {
|
203
|
+
"id": "4c976a6f72dd224bbf44b491",
|
204
|
+
"name": "Hominiss Consulting",
|
205
|
+
"contact": {
|
206
|
+
|
207
|
+
},
|
208
|
+
"location": {
|
209
|
+
"address": "Rua São Sebastião",
|
210
|
+
"crossStreet": "Rua Vitor de Souza",
|
211
|
+
"city": "São Carlos",
|
212
|
+
"state": "São Paulo",
|
213
|
+
"lat": -22.0145343,
|
214
|
+
"lng": -47.894082
|
215
|
+
},
|
216
|
+
"categories": [
|
217
|
+
{
|
218
|
+
"id": "4bf58dd8d48988d124941735",
|
219
|
+
"name": "Offices",
|
220
|
+
"icon": "http://foursquare.com/img/categories/building/default.png",
|
221
|
+
"parents": [
|
222
|
+
"Homes, Work, Others"
|
223
|
+
],
|
224
|
+
"primary": true
|
225
|
+
}
|
226
|
+
],
|
227
|
+
"verified": false,
|
228
|
+
"stats": {
|
229
|
+
"checkinsCount": 31,
|
230
|
+
"usersCount": 5
|
231
|
+
},
|
232
|
+
"todos": {
|
233
|
+
"count": 0
|
234
|
+
}
|
235
|
+
}
|
236
|
+
},
|
237
|
+
{
|
238
|
+
"id": "4c9e166554c8a1cd96e2894b",
|
239
|
+
"createdAt": 1285428837,
|
240
|
+
"text": "A qualidade do atendimento caiu muito.",
|
241
|
+
"todo": {
|
242
|
+
"count": 0
|
243
|
+
},
|
244
|
+
"done": {
|
245
|
+
"count": 3
|
246
|
+
},
|
247
|
+
"venue": {
|
248
|
+
"id": "4c1827d3fe5a76b0cab80115",
|
249
|
+
"name": "Pimenta Chopp e Petiscos",
|
250
|
+
"contact": {
|
251
|
+
|
252
|
+
},
|
253
|
+
"location": {
|
254
|
+
"address": "Carlos Botelho",
|
255
|
+
"crossStreet": "Alexandrina",
|
256
|
+
"city": "Sao Carlos",
|
257
|
+
"state": "São Paulo",
|
258
|
+
"lat": -22.0126343,
|
259
|
+
"lng": -47.8881819
|
260
|
+
},
|
261
|
+
"categories": [
|
262
|
+
{
|
263
|
+
"id": "4bf58dd8d48988d116941735",
|
264
|
+
"name": "Bars",
|
265
|
+
"icon": "http://foursquare.com/img/categories/nightlife/default.png",
|
266
|
+
"parents": [
|
267
|
+
"Nightlife Spots"
|
268
|
+
],
|
269
|
+
"primary": true
|
270
|
+
}
|
271
|
+
],
|
272
|
+
"verified": false,
|
273
|
+
"stats": {
|
274
|
+
"checkinsCount": 32,
|
275
|
+
"usersCount": 22
|
276
|
+
},
|
277
|
+
"todos": {
|
278
|
+
"count": 0
|
279
|
+
}
|
280
|
+
}
|
281
|
+
},
|
282
|
+
{
|
283
|
+
"id": "4c994beda004a1cdd6af3e6e",
|
284
|
+
"createdAt": 1285114861,
|
285
|
+
"text": "O Machiato é muito bom!",
|
286
|
+
"url": "",
|
287
|
+
"todo": {
|
288
|
+
"count": 0
|
289
|
+
},
|
290
|
+
"done": {
|
291
|
+
"count": 2
|
292
|
+
},
|
293
|
+
"venue": {
|
294
|
+
"id": "4bafa174f964a520bf113ce3",
|
295
|
+
"name": "McCafé - Shopping Tamboré",
|
296
|
+
"contact": {
|
297
|
+
|
298
|
+
},
|
299
|
+
"location": {
|
300
|
+
"address": "av. piracema, 669",
|
301
|
+
"city": "Barueri",
|
302
|
+
"state": "São Paulo",
|
303
|
+
"lat": -23.504693184228792,
|
304
|
+
"lng": -46.83265686035156
|
305
|
+
},
|
306
|
+
"categories": [
|
307
|
+
{
|
308
|
+
"id": "4bf58dd8d48988d16d941735",
|
309
|
+
"name": "Cafés",
|
310
|
+
"icon": "http://foursquare.com/img/categories/food/cafe.png",
|
311
|
+
"parents": [
|
312
|
+
"Food"
|
313
|
+
],
|
314
|
+
"primary": true
|
315
|
+
}
|
316
|
+
],
|
317
|
+
"verified": false,
|
318
|
+
"stats": {
|
319
|
+
"checkinsCount": 251,
|
320
|
+
"usersCount": 78
|
321
|
+
},
|
322
|
+
"todos": {
|
323
|
+
"count": 0
|
324
|
+
}
|
325
|
+
}
|
326
|
+
},
|
327
|
+
{
|
328
|
+
"id": "4c94a45c82b56dcb47cad0aa",
|
329
|
+
"createdAt": 1284809820,
|
330
|
+
"text": "A arena é muito legal, mas os equipamentos são péssimos.",
|
331
|
+
"url": "",
|
332
|
+
"todo": {
|
333
|
+
"count": 0
|
334
|
+
},
|
335
|
+
"done": {
|
336
|
+
"count": 1
|
337
|
+
},
|
338
|
+
"venue": {
|
339
|
+
"id": "4bb567e2941ad13a7e3d1ee3",
|
340
|
+
"name": "Counter Strike Paintball",
|
341
|
+
"contact": {
|
342
|
+
"phone": "551239127128"
|
343
|
+
},
|
344
|
+
"location": {
|
345
|
+
"address": "Counter Strike Paintball",
|
346
|
+
"crossStreet": "Rua Joaquim Bagunha Maldos 535 Vila Tesouro CEP 12",
|
347
|
+
"city": "Sao Jose dos Campos",
|
348
|
+
"state": "São Paulo",
|
349
|
+
"postalCode": "12220420",
|
350
|
+
"country": "Brasil",
|
351
|
+
"lat": -23.1764201,
|
352
|
+
"lng": -45.8778545
|
353
|
+
},
|
354
|
+
"categories": [
|
355
|
+
|
356
|
+
],
|
357
|
+
"verified": false,
|
358
|
+
"stats": {
|
359
|
+
"checkinsCount": 27,
|
360
|
+
"usersCount": 2
|
361
|
+
},
|
362
|
+
"todos": {
|
363
|
+
"count": 0
|
364
|
+
}
|
365
|
+
}
|
366
|
+
},
|
367
|
+
{
|
368
|
+
"id": "4c93fd1f82b56dcbc5f1caaa",
|
369
|
+
"createdAt": 1284767007,
|
370
|
+
"text": "O melhor chopp da cidade!",
|
371
|
+
"url": "",
|
372
|
+
"todo": {
|
373
|
+
"count": 0
|
374
|
+
},
|
375
|
+
"done": {
|
376
|
+
"count": 2
|
377
|
+
},
|
378
|
+
"venue": {
|
379
|
+
"id": "4c1827d3fe5a76b0cab80115",
|
380
|
+
"name": "Pimenta Chopp e Petiscos",
|
381
|
+
"contact": {
|
382
|
+
|
383
|
+
},
|
384
|
+
"location": {
|
385
|
+
"address": "Carlos Botelho",
|
386
|
+
"crossStreet": "Alexandrina",
|
387
|
+
"city": "Sao Carlos",
|
388
|
+
"state": "São Paulo",
|
389
|
+
"lat": -22.0126343,
|
390
|
+
"lng": -47.8881819
|
391
|
+
},
|
392
|
+
"categories": [
|
393
|
+
{
|
394
|
+
"id": "4bf58dd8d48988d116941735",
|
395
|
+
"name": "Bars",
|
396
|
+
"icon": "http://foursquare.com/img/categories/nightlife/default.png",
|
397
|
+
"parents": [
|
398
|
+
"Nightlife Spots"
|
399
|
+
],
|
400
|
+
"primary": true
|
401
|
+
}
|
402
|
+
],
|
403
|
+
"verified": false,
|
404
|
+
"stats": {
|
405
|
+
"checkinsCount": 32,
|
406
|
+
"usersCount": 22
|
407
|
+
},
|
408
|
+
"todos": {
|
409
|
+
"count": 0
|
410
|
+
}
|
411
|
+
}
|
412
|
+
},
|
413
|
+
{
|
414
|
+
"id": "4c93649b911b8cfa153ef5b5",
|
415
|
+
"createdAt": 1284727963,
|
416
|
+
"text": "Dica: confirme bem o seu pedido com o garçom, pois é muito comum vc receber algo diferente do que pediu.",
|
417
|
+
"url": "",
|
418
|
+
"todo": {
|
419
|
+
"count": 0
|
420
|
+
},
|
421
|
+
"done": {
|
422
|
+
"count": 1
|
423
|
+
},
|
424
|
+
"venue": {
|
425
|
+
"id": "4c920489b641236ad7048679",
|
426
|
+
"name": "Padaria Leopoldina",
|
427
|
+
"contact": {
|
428
|
+
|
429
|
+
},
|
430
|
+
"location": {
|
431
|
+
"address": "Av. Dr. Carlos Botelho, 1768",
|
432
|
+
"crossStreet": "Rua José Bonifácio",
|
433
|
+
"city": "São Carlos",
|
434
|
+
"state": "São Paulo",
|
435
|
+
"lat": -22.0125525,
|
436
|
+
"lng": -47.8842908
|
437
|
+
},
|
438
|
+
"categories": [
|
439
|
+
{
|
440
|
+
"id": "4bf58dd8d48988d16a941735",
|
441
|
+
"name": "Bakeries",
|
442
|
+
"icon": "http://foursquare.com/img/categories/food/bakery.png",
|
443
|
+
"parents": [
|
444
|
+
"Food"
|
445
|
+
],
|
446
|
+
"primary": true
|
447
|
+
}
|
448
|
+
],
|
449
|
+
"verified": false,
|
450
|
+
"stats": {
|
451
|
+
"checkinsCount": 34,
|
452
|
+
"usersCount": 17
|
453
|
+
},
|
454
|
+
"todos": {
|
455
|
+
"count": 0
|
456
|
+
}
|
457
|
+
}
|
458
|
+
},
|
459
|
+
{
|
460
|
+
"id": "4c92064a238c6dcb859fc455",
|
461
|
+
"createdAt": 1284638282,
|
462
|
+
"text": "Padaria com ambiente requintado, preços justos, porém, o serviço muitas vezes deixa a desejar. Mesmo assim vale a pena visitar!",
|
463
|
+
"url": "",
|
464
|
+
"todo": {
|
465
|
+
"count": 0
|
466
|
+
},
|
467
|
+
"done": {
|
468
|
+
"count": 3
|
469
|
+
},
|
470
|
+
"venue": {
|
471
|
+
"id": "4c920489b641236ad7048679",
|
472
|
+
"name": "Padaria Leopoldina",
|
473
|
+
"contact": {
|
474
|
+
|
475
|
+
},
|
476
|
+
"location": {
|
477
|
+
"address": "Av. Dr. Carlos Botelho, 1768",
|
478
|
+
"crossStreet": "Rua José Bonifácio",
|
479
|
+
"city": "São Carlos",
|
480
|
+
"state": "São Paulo",
|
481
|
+
"lat": -22.0125525,
|
482
|
+
"lng": -47.8842908
|
483
|
+
},
|
484
|
+
"categories": [
|
485
|
+
{
|
486
|
+
"id": "4bf58dd8d48988d16a941735",
|
487
|
+
"name": "Bakeries",
|
488
|
+
"icon": "http://foursquare.com/img/categories/food/bakery.png",
|
489
|
+
"parents": [
|
490
|
+
"Food"
|
491
|
+
],
|
492
|
+
"primary": true
|
493
|
+
}
|
494
|
+
],
|
495
|
+
"verified": false,
|
496
|
+
"stats": {
|
497
|
+
"checkinsCount": 34,
|
498
|
+
"usersCount": 17
|
499
|
+
},
|
500
|
+
"todos": {
|
501
|
+
"count": 0
|
502
|
+
}
|
503
|
+
}
|
504
|
+
},
|
505
|
+
{
|
506
|
+
"id": "4c91452aae96a0938b07a246",
|
507
|
+
"createdAt": 1284588842,
|
508
|
+
"text": "Já comi o de frango, muito bom e bem servido, recomendo!",
|
509
|
+
"url": "",
|
510
|
+
"todo": {
|
511
|
+
"count": 0
|
512
|
+
},
|
513
|
+
"done": {
|
514
|
+
"count": 1
|
515
|
+
},
|
516
|
+
"venue": {
|
517
|
+
"id": "4c6ae7206d390f477b85099a",
|
518
|
+
"name": "Posto Lago Azul",
|
519
|
+
"contact": {
|
520
|
+
|
521
|
+
},
|
522
|
+
"location": {
|
523
|
+
"address": "Rod. Dos bandeirantes",
|
524
|
+
"city": "Jundiaí",
|
525
|
+
"state": "São Paulo",
|
526
|
+
"lat": -23.1862491,
|
527
|
+
"lng": -46.9325781
|
528
|
+
},
|
529
|
+
"categories": [
|
530
|
+
{
|
531
|
+
"id": "4bf58dd8d48988d1c4941735",
|
532
|
+
"name": "Restaurants",
|
533
|
+
"icon": "http://foursquare.com/img/categories/food/default.png",
|
534
|
+
"parents": [
|
535
|
+
"Food"
|
536
|
+
],
|
537
|
+
"primary": true
|
538
|
+
}
|
539
|
+
],
|
540
|
+
"verified": false,
|
541
|
+
"stats": {
|
542
|
+
"checkinsCount": 250,
|
543
|
+
"usersCount": 187
|
544
|
+
},
|
545
|
+
"todos": {
|
546
|
+
"count": 0
|
547
|
+
}
|
548
|
+
}
|
549
|
+
}
|
550
|
+
]
|
551
|
+
}
|
552
|
+
}
|
553
|
+
}
|