disqussion 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +9 -0
- data/Gemfile +3 -0
- data/Gemfile.lock +80 -0
- data/HISTORY.mkd +5 -0
- data/LICENSE.mkd +20 -0
- data/README.mkd +139 -0
- data/Rakefile +23 -0
- data/disqussion.gemspec +37 -0
- data/lib/disqussion/api.rb +21 -0
- data/lib/disqussion/client/.DS_Store +0 -0
- data/lib/disqussion/client/applications.rb +20 -0
- data/lib/disqussion/client/blacklists.rb +4 -0
- data/lib/disqussion/client/categories.rb +4 -0
- data/lib/disqussion/client/exports.rb +4 -0
- data/lib/disqussion/client/forums.rb +122 -0
- data/lib/disqussion/client/imports.rb +4 -0
- data/lib/disqussion/client/posts.rb +217 -0
- data/lib/disqussion/client/reactions.rb +79 -0
- data/lib/disqussion/client/reports.rb +4 -0
- data/lib/disqussion/client/threads.rb +199 -0
- data/lib/disqussion/client/trends.rb +23 -0
- data/lib/disqussion/client/users.rb +103 -0
- data/lib/disqussion/client/utils.rb +90 -0
- data/lib/disqussion/client/whitelists.rb +4 -0
- data/lib/disqussion/client.rb +46 -0
- data/lib/disqussion/configuration.rb +121 -0
- data/lib/disqussion/connection.rb +36 -0
- data/lib/disqussion/error.rb +51 -0
- data/lib/disqussion/request.rb +38 -0
- data/lib/disqussion/version.rb +3 -0
- data/lib/disqussion/view_helpers.rb +9 -0
- data/lib/disqussion/widget.rb +183 -0
- data/lib/disqussion.rb +25 -0
- data/lib/faraday/response/raise_http_4xx.rb +41 -0
- data/lib/faraday/response/raise_http_5xx.rb +20 -0
- data/spec/disqussion/api_spec.rb +63 -0
- data/spec/disqussion/client/.DS_Store +0 -0
- data/spec/disqussion/client/applications_spec.rb +24 -0
- data/spec/disqussion/client/forums_spec.rb +80 -0
- data/spec/disqussion/client/posts_spec.rb +154 -0
- data/spec/disqussion/client/reactions_spec.rb +63 -0
- data/spec/disqussion/client/threads_spec.rb +128 -0
- data/spec/disqussion/client/trends_spec.rb +24 -0
- data/spec/disqussion/client/users_spec.rb +33 -0
- data/spec/disqussion/client_spec.rb +15 -0
- data/spec/disqussion_spec.rb +101 -0
- data/spec/faraday/response_spec.rb +30 -0
- data/spec/fixtures/applications/listUsage.json +129 -0
- data/spec/fixtures/forums/create.json +12 -0
- data/spec/fixtures/forums/details.json +12 -0
- data/spec/fixtures/forums/listCategories.json +21 -0
- data/spec/fixtures/forums/listPosts.json +859 -0
- data/spec/fixtures/forums/listThreads.json +533 -0
- data/spec/fixtures/posts/approve.json +6 -0
- data/spec/fixtures/posts/create.json +6 -0
- data/spec/fixtures/posts/details.json +35 -0
- data/spec/fixtures/posts/highlight.json +6 -0
- data/spec/fixtures/posts/list.json +247 -0
- data/spec/fixtures/posts/remove.json +6 -0
- data/spec/fixtures/posts/report.json +6 -0
- data/spec/fixtures/posts/restore.json +6 -0
- data/spec/fixtures/posts/spam.json +6 -0
- data/spec/fixtures/posts/unhighlight.json +6 -0
- data/spec/fixtures/posts/vote.json +6 -0
- data/spec/fixtures/reactions/domains.json +4 -0
- data/spec/fixtures/reactions/ips.json +131 -0
- data/spec/fixtures/reactions/threads.json +4 -0
- data/spec/fixtures/reactions/users.json +124 -0
- data/spec/fixtures/threads/close.json +4 -0
- data/spec/fixtures/threads/create.json +22 -0
- data/spec/fixtures/threads/details.json +24 -0
- data/spec/fixtures/threads/list.json +531 -0
- data/spec/fixtures/threads/listMostLiked.json +530 -0
- data/spec/fixtures/threads/listPosts.json +87 -0
- data/spec/fixtures/threads/open.json +8 -0
- data/spec/fixtures/threads/remove.json +4 -0
- data/spec/fixtures/threads/restore.json +4 -0
- data/spec/fixtures/threads/vote.json +4 -0
- data/spec/fixtures/trends/listTreads.json +283 -0
- data/spec/fixtures/users/details.json +19 -0
- data/spec/fixtures/users/follow.json +4 -0
- data/spec/helper.rb +47 -0
- metadata +348 -0
@@ -0,0 +1,533 @@
|
|
1
|
+
{
|
2
|
+
"cursor": {
|
3
|
+
"prev": null,
|
4
|
+
"hasNext": true,
|
5
|
+
"next": "1301661689038847:0:0",
|
6
|
+
"hasPrev": false,
|
7
|
+
"total": null,
|
8
|
+
"id": "1301661689038847:0:0",
|
9
|
+
"more": true
|
10
|
+
},
|
11
|
+
"code": 0,
|
12
|
+
"response": [
|
13
|
+
{
|
14
|
+
"category": "595774",
|
15
|
+
"reactions": 2,
|
16
|
+
"identifiers": [
|
17
|
+
"post_4521"
|
18
|
+
],
|
19
|
+
"forum": "yvanrodic",
|
20
|
+
"title": "Sydney",
|
21
|
+
"dislikes": 0,
|
22
|
+
"isDeleted": false,
|
23
|
+
"author": "6138058",
|
24
|
+
"userScore": 0,
|
25
|
+
"id": "295818503",
|
26
|
+
"isClosed": false,
|
27
|
+
"posts": 0,
|
28
|
+
"link": "http://yvanrodic.com/posts/4521/sydney",
|
29
|
+
"likes": 0,
|
30
|
+
"message": "",
|
31
|
+
"slug": "sydney_27",
|
32
|
+
"createdAt": "2011-05-05T08:40:37"
|
33
|
+
},
|
34
|
+
{
|
35
|
+
"category": "595774",
|
36
|
+
"reactions": 7,
|
37
|
+
"identifiers": [
|
38
|
+
"post_4520"
|
39
|
+
],
|
40
|
+
"forum": "yvanrodic",
|
41
|
+
"title": "Shanghai",
|
42
|
+
"dislikes": 0,
|
43
|
+
"isDeleted": false,
|
44
|
+
"author": "6138058",
|
45
|
+
"userScore": 0,
|
46
|
+
"id": "293757871",
|
47
|
+
"isClosed": false,
|
48
|
+
"posts": 5,
|
49
|
+
"link": "http://yvanrodic.com/posts/4520/shanghai",
|
50
|
+
"likes": 0,
|
51
|
+
"message": "",
|
52
|
+
"slug": "shanghai_21",
|
53
|
+
"createdAt": "2011-05-03T00:35:20"
|
54
|
+
},
|
55
|
+
{
|
56
|
+
"category": "595774",
|
57
|
+
"reactions": 10,
|
58
|
+
"identifiers": [
|
59
|
+
"post_4519"
|
60
|
+
],
|
61
|
+
"forum": "yvanrodic",
|
62
|
+
"title": "Shanghai",
|
63
|
+
"dislikes": 0,
|
64
|
+
"isDeleted": false,
|
65
|
+
"author": "6138058",
|
66
|
+
"userScore": 0,
|
67
|
+
"id": "292599971",
|
68
|
+
"isClosed": false,
|
69
|
+
"posts": 3,
|
70
|
+
"link": "http://yvanrodic.com/posts/4519/shanghai",
|
71
|
+
"likes": 0,
|
72
|
+
"message": "",
|
73
|
+
"slug": "shanghai",
|
74
|
+
"createdAt": "2011-05-01T11:08:44"
|
75
|
+
},
|
76
|
+
{
|
77
|
+
"category": "595774",
|
78
|
+
"reactions": 13,
|
79
|
+
"identifiers": [
|
80
|
+
"post_4518"
|
81
|
+
],
|
82
|
+
"forum": "yvanrodic",
|
83
|
+
"title": "Tokyo",
|
84
|
+
"dislikes": 0,
|
85
|
+
"isDeleted": false,
|
86
|
+
"author": "6138058",
|
87
|
+
"userScore": 0,
|
88
|
+
"id": "291807157",
|
89
|
+
"isClosed": false,
|
90
|
+
"posts": 2,
|
91
|
+
"link": "http://yvanrodic.com/posts/4518/tokyo",
|
92
|
+
"likes": 0,
|
93
|
+
"message": "",
|
94
|
+
"slug": "tokyo_67",
|
95
|
+
"createdAt": "2011-04-30T03:38:20"
|
96
|
+
},
|
97
|
+
{
|
98
|
+
"category": "595774",
|
99
|
+
"reactions": 5,
|
100
|
+
"identifiers": [
|
101
|
+
"post_4517"
|
102
|
+
],
|
103
|
+
"forum": "yvanrodic",
|
104
|
+
"title": "Seoul",
|
105
|
+
"dislikes": 0,
|
106
|
+
"isDeleted": false,
|
107
|
+
"author": "6138058",
|
108
|
+
"userScore": 0,
|
109
|
+
"id": "289356160",
|
110
|
+
"isClosed": false,
|
111
|
+
"posts": 2,
|
112
|
+
"link": "http://yvanrodic.com/posts/4517/seoul",
|
113
|
+
"likes": 0,
|
114
|
+
"message": "",
|
115
|
+
"slug": "seoul_52",
|
116
|
+
"createdAt": "2011-04-27T04:12:03"
|
117
|
+
},
|
118
|
+
{
|
119
|
+
"category": "595774",
|
120
|
+
"reactions": 0,
|
121
|
+
"identifiers": [
|
122
|
+
"post_4516"
|
123
|
+
],
|
124
|
+
"forum": "yvanrodic",
|
125
|
+
"title": "Seoul",
|
126
|
+
"dislikes": 0,
|
127
|
+
"isDeleted": false,
|
128
|
+
"author": "6138058",
|
129
|
+
"userScore": 0,
|
130
|
+
"id": "288449201",
|
131
|
+
"isClosed": false,
|
132
|
+
"posts": 2,
|
133
|
+
"link": "http://www.yvanrodic.com/posts/4516/seoul",
|
134
|
+
"likes": 0,
|
135
|
+
"message": "",
|
136
|
+
"slug": "seoul_08",
|
137
|
+
"createdAt": "2011-04-26T01:58:24"
|
138
|
+
},
|
139
|
+
{
|
140
|
+
"category": "595774",
|
141
|
+
"reactions": 16,
|
142
|
+
"identifiers": [
|
143
|
+
"post_4515"
|
144
|
+
],
|
145
|
+
"forum": "yvanrodic",
|
146
|
+
"title": "Seoul",
|
147
|
+
"dislikes": 0,
|
148
|
+
"isDeleted": false,
|
149
|
+
"author": "6138058",
|
150
|
+
"userScore": 0,
|
151
|
+
"id": "287593148",
|
152
|
+
"isClosed": false,
|
153
|
+
"posts": 1,
|
154
|
+
"link": "http://yvanrodic.com/posts/4515/seoul",
|
155
|
+
"likes": 0,
|
156
|
+
"message": "",
|
157
|
+
"slug": "seoul_526",
|
158
|
+
"createdAt": "2011-04-24T22:10:02"
|
159
|
+
},
|
160
|
+
{
|
161
|
+
"category": "595774",
|
162
|
+
"reactions": 0,
|
163
|
+
"identifiers": [],
|
164
|
+
"forum": "yvanrodic",
|
165
|
+
"title": "Yvan Rodic - Cape Town - March 22 2011",
|
166
|
+
"dislikes": 0,
|
167
|
+
"isDeleted": false,
|
168
|
+
"author": "6138058",
|
169
|
+
"userScore": 0,
|
170
|
+
"id": "286471516",
|
171
|
+
"isClosed": false,
|
172
|
+
"posts": 0,
|
173
|
+
"link": "http://www.yvanrodic.com/posts/4488/cape-town-march-14th-15th-2011",
|
174
|
+
"likes": 0,
|
175
|
+
"message": "",
|
176
|
+
"slug": "yvan_rodic_cape_town_march_22_2011",
|
177
|
+
"createdAt": "2011-04-23T04:52:27"
|
178
|
+
},
|
179
|
+
{
|
180
|
+
"category": "595774",
|
181
|
+
"reactions": 0,
|
182
|
+
"identifiers": [],
|
183
|
+
"forum": "yvanrodic",
|
184
|
+
"title": "Yvan Rodic - Cape Town - March 24 2011",
|
185
|
+
"dislikes": 0,
|
186
|
+
"isDeleted": false,
|
187
|
+
"author": "6138058",
|
188
|
+
"userScore": 0,
|
189
|
+
"id": "286471507",
|
190
|
+
"isClosed": false,
|
191
|
+
"posts": 0,
|
192
|
+
"link": "http://www.yvanrodic.com/posts/4486/cape-town-march-17th-2011",
|
193
|
+
"likes": 0,
|
194
|
+
"message": "",
|
195
|
+
"slug": "yvan_rodic_cape_town_march_24_2011",
|
196
|
+
"createdAt": "2011-04-23T04:52:25"
|
197
|
+
},
|
198
|
+
{
|
199
|
+
"category": "595774",
|
200
|
+
"reactions": 2,
|
201
|
+
"identifiers": [
|
202
|
+
"post_4514"
|
203
|
+
],
|
204
|
+
"forum": "yvanrodic",
|
205
|
+
"title": "Seoul",
|
206
|
+
"dislikes": 0,
|
207
|
+
"isDeleted": false,
|
208
|
+
"author": "6138058",
|
209
|
+
"userScore": 0,
|
210
|
+
"id": "284628014",
|
211
|
+
"isClosed": false,
|
212
|
+
"posts": 5,
|
213
|
+
"link": "http://www.yvanrodic.com/posts/4514/seoul",
|
214
|
+
"likes": 0,
|
215
|
+
"message": "",
|
216
|
+
"slug": "seoul_41",
|
217
|
+
"createdAt": "2011-04-20T21:25:23"
|
218
|
+
},
|
219
|
+
{
|
220
|
+
"category": "595774",
|
221
|
+
"reactions": 12,
|
222
|
+
"identifiers": [
|
223
|
+
"post_4513"
|
224
|
+
],
|
225
|
+
"forum": "yvanrodic",
|
226
|
+
"title": "New York",
|
227
|
+
"dislikes": 0,
|
228
|
+
"isDeleted": false,
|
229
|
+
"author": "6138058",
|
230
|
+
"userScore": 0,
|
231
|
+
"id": "282369868",
|
232
|
+
"isClosed": false,
|
233
|
+
"posts": 3,
|
234
|
+
"link": "http://yvanrodic.com/posts/4513/new-york",
|
235
|
+
"likes": 0,
|
236
|
+
"message": "",
|
237
|
+
"slug": "new_york_99",
|
238
|
+
"createdAt": "2011-04-18T12:07:42"
|
239
|
+
},
|
240
|
+
{
|
241
|
+
"category": "595774",
|
242
|
+
"reactions": 0,
|
243
|
+
"identifiers": [
|
244
|
+
"post_4512"
|
245
|
+
],
|
246
|
+
"forum": "yvanrodic",
|
247
|
+
"title": "New York",
|
248
|
+
"dislikes": 0,
|
249
|
+
"isDeleted": false,
|
250
|
+
"author": "6138058",
|
251
|
+
"userScore": 0,
|
252
|
+
"id": "281693372",
|
253
|
+
"isClosed": false,
|
254
|
+
"posts": 3,
|
255
|
+
"link": "http://www.yvanrodic.com/posts/4512/new-york",
|
256
|
+
"likes": 0,
|
257
|
+
"message": "",
|
258
|
+
"slug": "new_york_703",
|
259
|
+
"createdAt": "2011-04-17T15:10:49"
|
260
|
+
},
|
261
|
+
{
|
262
|
+
"category": "595774",
|
263
|
+
"reactions": 7,
|
264
|
+
"identifiers": [
|
265
|
+
"post_4511"
|
266
|
+
],
|
267
|
+
"forum": "yvanrodic",
|
268
|
+
"title": "New York",
|
269
|
+
"dislikes": 0,
|
270
|
+
"isDeleted": false,
|
271
|
+
"author": "6138058",
|
272
|
+
"userScore": 0,
|
273
|
+
"id": "281253585",
|
274
|
+
"isClosed": false,
|
275
|
+
"posts": 1,
|
276
|
+
"link": "http://yvanrodic.com/posts/4511/new-york",
|
277
|
+
"likes": 0,
|
278
|
+
"message": "",
|
279
|
+
"slug": "new_york_549",
|
280
|
+
"createdAt": "2011-04-16T23:55:04"
|
281
|
+
},
|
282
|
+
{
|
283
|
+
"category": "595774",
|
284
|
+
"reactions": 5,
|
285
|
+
"identifiers": [
|
286
|
+
"post_4510"
|
287
|
+
],
|
288
|
+
"forum": "yvanrodic",
|
289
|
+
"title": "New York",
|
290
|
+
"dislikes": 0,
|
291
|
+
"isDeleted": false,
|
292
|
+
"author": "6138058",
|
293
|
+
"userScore": 0,
|
294
|
+
"id": "281227676",
|
295
|
+
"isClosed": false,
|
296
|
+
"posts": 2,
|
297
|
+
"link": "http://yvanrodic.com/posts/4510/new-york",
|
298
|
+
"likes": 0,
|
299
|
+
"message": "",
|
300
|
+
"slug": "new_york_75",
|
301
|
+
"createdAt": "2011-04-16T22:52:46"
|
302
|
+
},
|
303
|
+
{
|
304
|
+
"category": "595774",
|
305
|
+
"reactions": 0,
|
306
|
+
"identifiers": [
|
307
|
+
"post_4509"
|
308
|
+
],
|
309
|
+
"forum": "yvanrodic",
|
310
|
+
"title": "London",
|
311
|
+
"dislikes": 0,
|
312
|
+
"isDeleted": false,
|
313
|
+
"author": "6138058",
|
314
|
+
"userScore": 0,
|
315
|
+
"id": "279410358",
|
316
|
+
"isClosed": false,
|
317
|
+
"posts": 2,
|
318
|
+
"link": "http://www.yvanrodic.com/posts/4509/london",
|
319
|
+
"likes": 2,
|
320
|
+
"message": "",
|
321
|
+
"slug": "london_56",
|
322
|
+
"createdAt": "2011-04-14T16:36:04"
|
323
|
+
},
|
324
|
+
{
|
325
|
+
"category": "595774",
|
326
|
+
"reactions": 13,
|
327
|
+
"identifiers": [
|
328
|
+
"post_4508"
|
329
|
+
],
|
330
|
+
"forum": "yvanrodic",
|
331
|
+
"title": "Manchester",
|
332
|
+
"dislikes": 0,
|
333
|
+
"isDeleted": false,
|
334
|
+
"author": "6138058",
|
335
|
+
"userScore": 0,
|
336
|
+
"id": "278447450",
|
337
|
+
"isClosed": false,
|
338
|
+
"posts": 11,
|
339
|
+
"link": "http://yvanrodic.com/posts/4508/manchester",
|
340
|
+
"likes": 0,
|
341
|
+
"message": "",
|
342
|
+
"slug": "manchester",
|
343
|
+
"createdAt": "2011-04-13T14:45:08"
|
344
|
+
},
|
345
|
+
{
|
346
|
+
"category": "595774",
|
347
|
+
"reactions": 0,
|
348
|
+
"identifiers": [
|
349
|
+
"post_4507"
|
350
|
+
],
|
351
|
+
"forum": "yvanrodic",
|
352
|
+
"title": "Liverpool",
|
353
|
+
"dislikes": 0,
|
354
|
+
"isDeleted": false,
|
355
|
+
"author": "6138058",
|
356
|
+
"userScore": 0,
|
357
|
+
"id": "276107815",
|
358
|
+
"isClosed": false,
|
359
|
+
"posts": 9,
|
360
|
+
"link": "http://www.yvanrodic.com/posts/4507/liverpool",
|
361
|
+
"likes": 3,
|
362
|
+
"message": "",
|
363
|
+
"slug": "liverpool",
|
364
|
+
"createdAt": "2011-04-10T17:31:07"
|
365
|
+
},
|
366
|
+
{
|
367
|
+
"category": "595774",
|
368
|
+
"reactions": 7,
|
369
|
+
"identifiers": [
|
370
|
+
"post_4506"
|
371
|
+
],
|
372
|
+
"forum": "yvanrodic",
|
373
|
+
"title": "Milan",
|
374
|
+
"dislikes": 0,
|
375
|
+
"isDeleted": false,
|
376
|
+
"author": "6138058",
|
377
|
+
"userScore": 0,
|
378
|
+
"id": "275515296",
|
379
|
+
"isClosed": false,
|
380
|
+
"posts": 2,
|
381
|
+
"link": "http://yvanrodic.com/posts/4506/milan",
|
382
|
+
"likes": 0,
|
383
|
+
"message": "",
|
384
|
+
"slug": "milan_05",
|
385
|
+
"createdAt": "2011-04-09T18:47:49"
|
386
|
+
},
|
387
|
+
{
|
388
|
+
"category": "595774",
|
389
|
+
"reactions": 4,
|
390
|
+
"identifiers": [
|
391
|
+
"post_4505"
|
392
|
+
],
|
393
|
+
"forum": "yvanrodic",
|
394
|
+
"title": "Milan",
|
395
|
+
"dislikes": 0,
|
396
|
+
"isDeleted": false,
|
397
|
+
"author": "6138058",
|
398
|
+
"userScore": 0,
|
399
|
+
"id": "274499225",
|
400
|
+
"isClosed": false,
|
401
|
+
"posts": 2,
|
402
|
+
"link": "http://yvanrodic.com/posts/4505/milan",
|
403
|
+
"likes": 0,
|
404
|
+
"message": "",
|
405
|
+
"slug": "milan_82",
|
406
|
+
"createdAt": "2011-04-08T12:16:33"
|
407
|
+
},
|
408
|
+
{
|
409
|
+
"category": "595774",
|
410
|
+
"reactions": 0,
|
411
|
+
"identifiers": [],
|
412
|
+
"forum": "yvanrodic",
|
413
|
+
"title": "Yvan Rodic - London - April 1 2011",
|
414
|
+
"dislikes": 0,
|
415
|
+
"isDeleted": false,
|
416
|
+
"author": "6138058",
|
417
|
+
"userScore": 0,
|
418
|
+
"id": "273875089",
|
419
|
+
"isClosed": false,
|
420
|
+
"posts": 0,
|
421
|
+
"link": "http://www.yvanrodic.com/posts/4500/LFW",
|
422
|
+
"likes": 0,
|
423
|
+
"message": "",
|
424
|
+
"slug": "yvan_rodic_london_april_1_2011",
|
425
|
+
"createdAt": "2011-04-07T20:19:22"
|
426
|
+
},
|
427
|
+
{
|
428
|
+
"category": "595774",
|
429
|
+
"reactions": 1,
|
430
|
+
"identifiers": [
|
431
|
+
"post_4504"
|
432
|
+
],
|
433
|
+
"forum": "yvanrodic",
|
434
|
+
"title": "Reykjav\u00edk",
|
435
|
+
"dislikes": 0,
|
436
|
+
"isDeleted": false,
|
437
|
+
"author": "6138058",
|
438
|
+
"userScore": 0,
|
439
|
+
"id": "272906432",
|
440
|
+
"isClosed": false,
|
441
|
+
"posts": 2,
|
442
|
+
"link": "http://www.yvanrodic.com/posts/4504/reykjavik",
|
443
|
+
"likes": 0,
|
444
|
+
"message": "",
|
445
|
+
"slug": "reykjavik_25",
|
446
|
+
"createdAt": "2011-04-06T19:31:36"
|
447
|
+
},
|
448
|
+
{
|
449
|
+
"category": "595774",
|
450
|
+
"reactions": 0,
|
451
|
+
"identifiers": [
|
452
|
+
"post_347"
|
453
|
+
],
|
454
|
+
"forum": "yvanrodic",
|
455
|
+
"title": "Stockholm",
|
456
|
+
"dislikes": 0,
|
457
|
+
"isDeleted": false,
|
458
|
+
"author": "6138058",
|
459
|
+
"userScore": 0,
|
460
|
+
"id": "270681479",
|
461
|
+
"isClosed": false,
|
462
|
+
"posts": 0,
|
463
|
+
"link": "http://www.yvanrodic.com/posts/347/stockholm-august-1st-2009",
|
464
|
+
"likes": 0,
|
465
|
+
"message": "",
|
466
|
+
"slug": "stockholm_20",
|
467
|
+
"createdAt": "2011-04-04T13:14:49"
|
468
|
+
},
|
469
|
+
{
|
470
|
+
"category": "595774",
|
471
|
+
"reactions": 21,
|
472
|
+
"identifiers": [
|
473
|
+
"post_4503"
|
474
|
+
],
|
475
|
+
"forum": "yvanrodic",
|
476
|
+
"title": "Reykjav\u00edk",
|
477
|
+
"dislikes": 0,
|
478
|
+
"isDeleted": false,
|
479
|
+
"author": "6138058",
|
480
|
+
"userScore": 0,
|
481
|
+
"id": "270595549",
|
482
|
+
"isClosed": false,
|
483
|
+
"posts": 1,
|
484
|
+
"link": "http://yvanrodic.com/posts/4503/reykjavik",
|
485
|
+
"likes": 0,
|
486
|
+
"message": "",
|
487
|
+
"slug": "reykjavik_80",
|
488
|
+
"createdAt": "2011-04-04T10:48:06"
|
489
|
+
},
|
490
|
+
{
|
491
|
+
"category": "595774",
|
492
|
+
"reactions": 0,
|
493
|
+
"identifiers": [
|
494
|
+
"post_348"
|
495
|
+
],
|
496
|
+
"forum": "yvanrodic",
|
497
|
+
"title": "Stockholm",
|
498
|
+
"dislikes": 0,
|
499
|
+
"isDeleted": false,
|
500
|
+
"author": "6138058",
|
501
|
+
"userScore": 0,
|
502
|
+
"id": "269029706",
|
503
|
+
"isClosed": false,
|
504
|
+
"posts": 0,
|
505
|
+
"link": "http://www.yvanrodic.com/posts/348/stockholm",
|
506
|
+
"likes": 0,
|
507
|
+
"message": "",
|
508
|
+
"slug": "stockholm_82",
|
509
|
+
"createdAt": "2011-04-02T06:36:05"
|
510
|
+
},
|
511
|
+
{
|
512
|
+
"category": "595774",
|
513
|
+
"reactions": 1,
|
514
|
+
"identifiers": [
|
515
|
+
"post_4502"
|
516
|
+
],
|
517
|
+
"forum": "yvanrodic",
|
518
|
+
"title": "London",
|
519
|
+
"dislikes": 0,
|
520
|
+
"isDeleted": false,
|
521
|
+
"author": "6138058",
|
522
|
+
"userScore": 0,
|
523
|
+
"id": "268450878",
|
524
|
+
"isClosed": false,
|
525
|
+
"posts": 3,
|
526
|
+
"link": "http://yvanrodic.com/posts/4502/london",
|
527
|
+
"likes": 0,
|
528
|
+
"message": "",
|
529
|
+
"slug": "london_279",
|
530
|
+
"createdAt": "2011-04-01T13:56:53"
|
531
|
+
}
|
532
|
+
]
|
533
|
+
}
|
@@ -0,0 +1,35 @@
|
|
1
|
+
{
|
2
|
+
"code": 0,
|
3
|
+
"response": {
|
4
|
+
"isJuliaFlagged": true,
|
5
|
+
"isFlagged": false,
|
6
|
+
"forum": "yvanrodic",
|
7
|
+
"parent": 196091929,
|
8
|
+
"author": {
|
9
|
+
"name": "Yvan Rodic",
|
10
|
+
"url": "",
|
11
|
+
"profileUrl": "http://disqus.com/guest/390a7c26055b5315c0c49623bef84674/",
|
12
|
+
"emailHash": "390a7c26055b5315c0c49623bef84674",
|
13
|
+
"avatar": {
|
14
|
+
"permalink": "http://www.gravatar.com/avatar.php?gravatar_id=390a7c26055b5315c0c49623bef84674&size=32&default=http://mediacdn.disqus.com/1304703476/images/noavatar32.png",
|
15
|
+
"cache": "http://www.gravatar.com/avatar.php?gravatar_id=390a7c26055b5315c0c49623bef84674&size=32&default=http://mediacdn.disqus.com/1304703476/images/noavatar32.png"
|
16
|
+
},
|
17
|
+
"isAnonymous": true,
|
18
|
+
"email": "yvan.rodic@gmail.com"
|
19
|
+
},
|
20
|
+
"media": [],
|
21
|
+
"isApproved": true,
|
22
|
+
"dislikes": 0,
|
23
|
+
"raw_message": "Arare, There's only one homeless man in this set vs. plenty of people with a home...",
|
24
|
+
"isSpam": false,
|
25
|
+
"thread": "293757871",
|
26
|
+
"points": 0,
|
27
|
+
"createdAt": "2011-05-04T04:55:06",
|
28
|
+
"message": "Arare, There's only one homeless man in this set vs. plenty of people with a home...",
|
29
|
+
"isHighlighted": false,
|
30
|
+
"ipAddress": "110.173.235.196",
|
31
|
+
"id": "196726567",
|
32
|
+
"isDeleted": false,
|
33
|
+
"likes": 0
|
34
|
+
}
|
35
|
+
}
|