disqussion 0.0.1
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/.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,530 @@ | |
| 1 | 
            +
            {
         | 
| 2 | 
            +
              "code": 0, 
         | 
| 3 | 
            +
              "response": [
         | 
| 4 | 
            +
                {
         | 
| 5 | 
            +
                  "category": "595774", 
         | 
| 6 | 
            +
                  "reactions": 0, 
         | 
| 7 | 
            +
                  "identifiers": [
         | 
| 8 | 
            +
                    "post_4507"
         | 
| 9 | 
            +
                  ], 
         | 
| 10 | 
            +
                  "forum": "yvanrodic", 
         | 
| 11 | 
            +
                  "title": "Liverpool", 
         | 
| 12 | 
            +
                  "dislikes": 0, 
         | 
| 13 | 
            +
                  "isDeleted": false, 
         | 
| 14 | 
            +
                  "author": "6138058", 
         | 
| 15 | 
            +
                  "userScore": 0, 
         | 
| 16 | 
            +
                  "id": "276107815", 
         | 
| 17 | 
            +
                  "isClosed": false, 
         | 
| 18 | 
            +
                  "posts": 9, 
         | 
| 19 | 
            +
                  "link": "http://www.yvanrodic.com/posts/4507/liverpool", 
         | 
| 20 | 
            +
                  "likes": 3, 
         | 
| 21 | 
            +
                  "message": "", 
         | 
| 22 | 
            +
                  "slug": "liverpool", 
         | 
| 23 | 
            +
                  "createdAt": "2011-04-10T17:31:07"
         | 
| 24 | 
            +
                }, 
         | 
| 25 | 
            +
                {
         | 
| 26 | 
            +
                  "category": "595774", 
         | 
| 27 | 
            +
                  "reactions": 0, 
         | 
| 28 | 
            +
                  "identifiers": [
         | 
| 29 | 
            +
                    "post_4509"
         | 
| 30 | 
            +
                  ], 
         | 
| 31 | 
            +
                  "forum": "yvanrodic", 
         | 
| 32 | 
            +
                  "title": "London", 
         | 
| 33 | 
            +
                  "dislikes": 0, 
         | 
| 34 | 
            +
                  "isDeleted": false, 
         | 
| 35 | 
            +
                  "author": "6138058", 
         | 
| 36 | 
            +
                  "userScore": 0, 
         | 
| 37 | 
            +
                  "id": "279410358", 
         | 
| 38 | 
            +
                  "isClosed": false, 
         | 
| 39 | 
            +
                  "posts": 2, 
         | 
| 40 | 
            +
                  "link": "http://www.yvanrodic.com/posts/4509/london", 
         | 
| 41 | 
            +
                  "likes": 2, 
         | 
| 42 | 
            +
                  "message": "", 
         | 
| 43 | 
            +
                  "slug": "london_56", 
         | 
| 44 | 
            +
                  "createdAt": "2011-04-14T16:36:04"
         | 
| 45 | 
            +
                },
         | 
| 46 | 
            +
                {
         | 
| 47 | 
            +
                  "category": "595774", 
         | 
| 48 | 
            +
                  "reactions": 13, 
         | 
| 49 | 
            +
                  "identifiers": [
         | 
| 50 | 
            +
                    "post_4508"
         | 
| 51 | 
            +
                  ], 
         | 
| 52 | 
            +
                  "forum": "yvanrodic", 
         | 
| 53 | 
            +
                  "title": "Manchester", 
         | 
| 54 | 
            +
                  "dislikes": 0, 
         | 
| 55 | 
            +
                  "isDeleted": false, 
         | 
| 56 | 
            +
                  "author": "6138058", 
         | 
| 57 | 
            +
                  "userScore": 0, 
         | 
| 58 | 
            +
                  "id": "278447450", 
         | 
| 59 | 
            +
                  "isClosed": false, 
         | 
| 60 | 
            +
                  "posts": 11, 
         | 
| 61 | 
            +
                  "link": "http://yvanrodic.com/posts/4508/manchester", 
         | 
| 62 | 
            +
                  "likes": 0, 
         | 
| 63 | 
            +
                  "message": "", 
         | 
| 64 | 
            +
                  "slug": "manchester", 
         | 
| 65 | 
            +
                  "createdAt": "2011-04-13T14:45:08"
         | 
| 66 | 
            +
                }, 
         | 
| 67 | 
            +
                {
         | 
| 68 | 
            +
                  "category": "595774", 
         | 
| 69 | 
            +
                  "reactions": 15, 
         | 
| 70 | 
            +
                  "identifiers": [
         | 
| 71 | 
            +
                    "post_4518"
         | 
| 72 | 
            +
                  ], 
         | 
| 73 | 
            +
                  "forum": "yvanrodic", 
         | 
| 74 | 
            +
                  "title": "Tokyo", 
         | 
| 75 | 
            +
                  "dislikes": 0, 
         | 
| 76 | 
            +
                  "isDeleted": false, 
         | 
| 77 | 
            +
                  "author": "6138058", 
         | 
| 78 | 
            +
                  "userScore": 0, 
         | 
| 79 | 
            +
                  "id": "291807157", 
         | 
| 80 | 
            +
                  "isClosed": false, 
         | 
| 81 | 
            +
                  "posts": 3, 
         | 
| 82 | 
            +
                  "link": "http://yvanrodic.com/posts/4518/tokyo", 
         | 
| 83 | 
            +
                  "likes": 0, 
         | 
| 84 | 
            +
                  "message": "", 
         | 
| 85 | 
            +
                  "slug": "tokyo_67", 
         | 
| 86 | 
            +
                  "createdAt": "2011-04-30T03:38:20"
         | 
| 87 | 
            +
                }, 
         | 
| 88 | 
            +
                {
         | 
| 89 | 
            +
                  "category": "595774", 
         | 
| 90 | 
            +
                  "reactions": 0, 
         | 
| 91 | 
            +
                  "identifiers": [
         | 
| 92 | 
            +
                    "post_4486"
         | 
| 93 | 
            +
                  ], 
         | 
| 94 | 
            +
                  "forum": "yvanrodic", 
         | 
| 95 | 
            +
                  "title": "Cape Town", 
         | 
| 96 | 
            +
                  "dislikes": 0, 
         | 
| 97 | 
            +
                  "isDeleted": false, 
         | 
| 98 | 
            +
                  "author": "6138058", 
         | 
| 99 | 
            +
                  "userScore": 1, 
         | 
| 100 | 
            +
                  "id": "262130745", 
         | 
| 101 | 
            +
                  "isClosed": false, 
         | 
| 102 | 
            +
                  "posts": 5, 
         | 
| 103 | 
            +
                  "link": "http://yvanrodic.lovethe88.com/posts/4486/cape-town-march-17th-2011", 
         | 
| 104 | 
            +
                  "likes": 1, 
         | 
| 105 | 
            +
                  "message": "", 
         | 
| 106 | 
            +
                  "slug": "cape_town", 
         | 
| 107 | 
            +
                  "createdAt": "2011-03-24T16:30:25"
         | 
| 108 | 
            +
                }, 
         | 
| 109 | 
            +
                {
         | 
| 110 | 
            +
                  "category": "595774", 
         | 
| 111 | 
            +
                  "reactions": 7, 
         | 
| 112 | 
            +
                  "identifiers": [
         | 
| 113 | 
            +
                    "post_4520"
         | 
| 114 | 
            +
                  ], 
         | 
| 115 | 
            +
                  "forum": "yvanrodic", 
         | 
| 116 | 
            +
                  "title": "Shanghai", 
         | 
| 117 | 
            +
                  "dislikes": 0, 
         | 
| 118 | 
            +
                  "isDeleted": false, 
         | 
| 119 | 
            +
                  "author": "6138058", 
         | 
| 120 | 
            +
                  "userScore": 0, 
         | 
| 121 | 
            +
                  "id": "293757871", 
         | 
| 122 | 
            +
                  "isClosed": false, 
         | 
| 123 | 
            +
                  "posts": 7, 
         | 
| 124 | 
            +
                  "link": "http://yvanrodic.com/posts/4520/shanghai", 
         | 
| 125 | 
            +
                  "likes": 0, 
         | 
| 126 | 
            +
                  "message": "", 
         | 
| 127 | 
            +
                  "slug": "shanghai_21", 
         | 
| 128 | 
            +
                  "createdAt": "2011-05-03T00:35:20"
         | 
| 129 | 
            +
                }, 
         | 
| 130 | 
            +
                {
         | 
| 131 | 
            +
                  "category": "595774", 
         | 
| 132 | 
            +
                  "reactions": 0, 
         | 
| 133 | 
            +
                  "identifiers": [
         | 
| 134 | 
            +
                    "post_43"
         | 
| 135 | 
            +
                  ], 
         | 
| 136 | 
            +
                  "forum": "yvanrodic", 
         | 
| 137 | 
            +
                  "title": "Kiev", 
         | 
| 138 | 
            +
                  "dislikes": 0, 
         | 
| 139 | 
            +
                  "isDeleted": false, 
         | 
| 140 | 
            +
                  "author": "6138058", 
         | 
| 141 | 
            +
                  "userScore": 0, 
         | 
| 142 | 
            +
                  "id": "251772663", 
         | 
| 143 | 
            +
                  "isClosed": false, 
         | 
| 144 | 
            +
                  "posts": 1, 
         | 
| 145 | 
            +
                  "link": "http://yvanrodic.lovethe88.com/posts/43/kiev-october-21st-22nd-2010", 
         | 
| 146 | 
            +
                  "likes": 0, 
         | 
| 147 | 
            +
                  "message": "", 
         | 
| 148 | 
            +
                  "slug": "kiev_63", 
         | 
| 149 | 
            +
                  "createdAt": "2011-03-11T23:32:49"
         | 
| 150 | 
            +
                }, 
         | 
| 151 | 
            +
                {
         | 
| 152 | 
            +
                  "category": "595774", 
         | 
| 153 | 
            +
                  "reactions": 7, 
         | 
| 154 | 
            +
                  "identifiers": [
         | 
| 155 | 
            +
                    "post_4506"
         | 
| 156 | 
            +
                  ], 
         | 
| 157 | 
            +
                  "forum": "yvanrodic", 
         | 
| 158 | 
            +
                  "title": "Milan", 
         | 
| 159 | 
            +
                  "dislikes": 0, 
         | 
| 160 | 
            +
                  "isDeleted": false, 
         | 
| 161 | 
            +
                  "author": "6138058", 
         | 
| 162 | 
            +
                  "userScore": 0, 
         | 
| 163 | 
            +
                  "id": "275515296", 
         | 
| 164 | 
            +
                  "isClosed": false, 
         | 
| 165 | 
            +
                  "posts": 2, 
         | 
| 166 | 
            +
                  "link": "http://yvanrodic.com/posts/4506/milan", 
         | 
| 167 | 
            +
                  "likes": 0, 
         | 
| 168 | 
            +
                  "message": "", 
         | 
| 169 | 
            +
                  "slug": "milan_05", 
         | 
| 170 | 
            +
                  "createdAt": "2011-04-09T18:47:49"
         | 
| 171 | 
            +
                }, 
         | 
| 172 | 
            +
                {
         | 
| 173 | 
            +
                  "category": "595774", 
         | 
| 174 | 
            +
                  "reactions": 0, 
         | 
| 175 | 
            +
                  "identifiers": [
         | 
| 176 | 
            +
                    "post_4516"
         | 
| 177 | 
            +
                  ], 
         | 
| 178 | 
            +
                  "forum": "yvanrodic", 
         | 
| 179 | 
            +
                  "title": "Seoul", 
         | 
| 180 | 
            +
                  "dislikes": 0, 
         | 
| 181 | 
            +
                  "isDeleted": false, 
         | 
| 182 | 
            +
                  "author": "6138058", 
         | 
| 183 | 
            +
                  "userScore": 0, 
         | 
| 184 | 
            +
                  "id": "288449201", 
         | 
| 185 | 
            +
                  "isClosed": false, 
         | 
| 186 | 
            +
                  "posts": 2, 
         | 
| 187 | 
            +
                  "link": "http://www.yvanrodic.com/posts/4516/seoul", 
         | 
| 188 | 
            +
                  "likes": 0, 
         | 
| 189 | 
            +
                  "message": "", 
         | 
| 190 | 
            +
                  "slug": "seoul_08", 
         | 
| 191 | 
            +
                  "createdAt": "2011-04-26T01:58:24"
         | 
| 192 | 
            +
                }, 
         | 
| 193 | 
            +
                {
         | 
| 194 | 
            +
                  "category": "595774", 
         | 
| 195 | 
            +
                  "reactions": 0, 
         | 
| 196 | 
            +
                  "identifiers": [
         | 
| 197 | 
            +
                    "6056597042383937483"
         | 
| 198 | 
            +
                  ], 
         | 
| 199 | 
            +
                  "forum": "yvanrodic", 
         | 
| 200 | 
            +
                  "title": "http://yvanrodic.blogspot.com/2009/08/london-august-26th-2009.html", 
         | 
| 201 | 
            +
                  "dislikes": 0, 
         | 
| 202 | 
            +
                  "isDeleted": false, 
         | 
| 203 | 
            +
                  "author": "6138058", 
         | 
| 204 | 
            +
                  "userScore": 0, 
         | 
| 205 | 
            +
                  "id": "199523998", 
         | 
| 206 | 
            +
                  "isClosed": false, 
         | 
| 207 | 
            +
                  "posts": 10, 
         | 
| 208 | 
            +
                  "link": "http://yvanrodic.com/2009/08/london-august-26th-2009.html", 
         | 
| 209 | 
            +
                  "likes": 0, 
         | 
| 210 | 
            +
                  "message": "", 
         | 
| 211 | 
            +
                  "slug": "httpyvanrodicblogspotcom200908london_august_26th_2009html", 
         | 
| 212 | 
            +
                  "createdAt": "2010-12-29T16:04:04"
         | 
| 213 | 
            +
                }, 
         | 
| 214 | 
            +
                {
         | 
| 215 | 
            +
                  "category": "595774", 
         | 
| 216 | 
            +
                  "reactions": 0, 
         | 
| 217 | 
            +
                  "identifiers": [
         | 
| 218 | 
            +
                    "11306092384239221"
         | 
| 219 | 
            +
                  ], 
         | 
| 220 | 
            +
                  "forum": "yvanrodic", 
         | 
| 221 | 
            +
                  "title": "http://yvanrodic.blogspot.com/2010/05/london-april-29th-30th-may-1st-2010.html", 
         | 
| 222 | 
            +
                  "dislikes": 0, 
         | 
| 223 | 
            +
                  "isDeleted": false, 
         | 
| 224 | 
            +
                  "author": "6138058", 
         | 
| 225 | 
            +
                  "userScore": 0, 
         | 
| 226 | 
            +
                  "id": "199521568", 
         | 
| 227 | 
            +
                  "isClosed": false, 
         | 
| 228 | 
            +
                  "posts": 24, 
         | 
| 229 | 
            +
                  "link": "http://yvanrodic.com/2010/05/london-april-29th-30th-may-1st-2010.html", 
         | 
| 230 | 
            +
                  "likes": 0, 
         | 
| 231 | 
            +
                  "message": "", 
         | 
| 232 | 
            +
                  "slug": "httpyvanrodicblogspotcom201005london_april_29th_30th_may_1st_2010html", 
         | 
| 233 | 
            +
                  "createdAt": "2010-12-29T15:58:52"
         | 
| 234 | 
            +
                }, 
         | 
| 235 | 
            +
                {
         | 
| 236 | 
            +
                  "category": "595774", 
         | 
| 237 | 
            +
                  "reactions": 0, 
         | 
| 238 | 
            +
                  "identifiers": [
         | 
| 239 | 
            +
                    "1654684172510087093"
         | 
| 240 | 
            +
                  ], 
         | 
| 241 | 
            +
                  "forum": "yvanrodic", 
         | 
| 242 | 
            +
                  "title": "http://yvanrodic.blogspot.com/2009/12/vevey-les-pleiades-december-23rd-26th.html", 
         | 
| 243 | 
            +
                  "dislikes": 0, 
         | 
| 244 | 
            +
                  "isDeleted": false, 
         | 
| 245 | 
            +
                  "author": "6138058", 
         | 
| 246 | 
            +
                  "userScore": 0, 
         | 
| 247 | 
            +
                  "id": "199522828", 
         | 
| 248 | 
            +
                  "isClosed": false, 
         | 
| 249 | 
            +
                  "posts": 8, 
         | 
| 250 | 
            +
                  "link": "http://yvanrodic.com/2009/12/vevey-les-pleiades-december-23rd-26th.html", 
         | 
| 251 | 
            +
                  "likes": 0, 
         | 
| 252 | 
            +
                  "message": "", 
         | 
| 253 | 
            +
                  "slug": "httpyvanrodicblogspotcom200912vevey_les_pleiades_december_23rd_26thhtml", 
         | 
| 254 | 
            +
                  "createdAt": "2010-12-29T16:01:37"
         | 
| 255 | 
            +
                }, 
         | 
| 256 | 
            +
                {
         | 
| 257 | 
            +
                  "category": "595774", 
         | 
| 258 | 
            +
                  "reactions": 0, 
         | 
| 259 | 
            +
                  "identifiers": [
         | 
| 260 | 
            +
                    "4463411874860605714"
         | 
| 261 | 
            +
                  ], 
         | 
| 262 | 
            +
                  "forum": "yvanrodic", 
         | 
| 263 | 
            +
                  "title": "http://yvanrodic.blogspot.com/2010/06/moscow-may-20th-2010.html", 
         | 
| 264 | 
            +
                  "dislikes": 0, 
         | 
| 265 | 
            +
                  "isDeleted": false, 
         | 
| 266 | 
            +
                  "author": "6138058", 
         | 
| 267 | 
            +
                  "userScore": 0, 
         | 
| 268 | 
            +
                  "id": "199521302", 
         | 
| 269 | 
            +
                  "isClosed": false, 
         | 
| 270 | 
            +
                  "posts": 18, 
         | 
| 271 | 
            +
                  "link": "http://yvanrodic.com/2010/06/moscow-may-20th-2010.html", 
         | 
| 272 | 
            +
                  "likes": 0, 
         | 
| 273 | 
            +
                  "message": "", 
         | 
| 274 | 
            +
                  "slug": "httpyvanrodicblogspotcom201006moscow_may_20th_2010html", 
         | 
| 275 | 
            +
                  "createdAt": "2010-12-29T15:58:18"
         | 
| 276 | 
            +
                }, 
         | 
| 277 | 
            +
                {
         | 
| 278 | 
            +
                  "category": "595774", 
         | 
| 279 | 
            +
                  "reactions": 0, 
         | 
| 280 | 
            +
                  "identifiers": [
         | 
| 281 | 
            +
                    "7666936747554014503"
         | 
| 282 | 
            +
                  ], 
         | 
| 283 | 
            +
                  "forum": "yvanrodic", 
         | 
| 284 | 
            +
                  "title": "http://yvanrodic.blogspot.com/2011/02/istanbul-february-6th-7th-2011.html", 
         | 
| 285 | 
            +
                  "dislikes": 0, 
         | 
| 286 | 
            +
                  "isDeleted": false, 
         | 
| 287 | 
            +
                  "author": "6138058", 
         | 
| 288 | 
            +
                  "userScore": 0, 
         | 
| 289 | 
            +
                  "id": "240460832", 
         | 
| 290 | 
            +
                  "isClosed": false, 
         | 
| 291 | 
            +
                  "posts": 9, 
         | 
| 292 | 
            +
                  "link": "http://yvanrodic.com/posts/9/istanbul-february-6th-7th-2011", 
         | 
| 293 | 
            +
                  "likes": 0, 
         | 
| 294 | 
            +
                  "message": "", 
         | 
| 295 | 
            +
                  "slug": "httpyvanrodicblogspotcom201102istanbul_february_6th_7th_2011html", 
         | 
| 296 | 
            +
                  "createdAt": "2011-02-26T03:36:31"
         | 
| 297 | 
            +
                }, 
         | 
| 298 | 
            +
                {
         | 
| 299 | 
            +
                  "category": "595774", 
         | 
| 300 | 
            +
                  "reactions": 0, 
         | 
| 301 | 
            +
                  "identifiers": [
         | 
| 302 | 
            +
                    "7001345947257905751"
         | 
| 303 | 
            +
                  ], 
         | 
| 304 | 
            +
                  "forum": "yvanrodic", 
         | 
| 305 | 
            +
                  "title": "http://yvanrodic.blogspot.com/2009/11/melbourne-november-22nd-2009.html", 
         | 
| 306 | 
            +
                  "dislikes": 0, 
         | 
| 307 | 
            +
                  "isDeleted": false, 
         | 
| 308 | 
            +
                  "author": "6138058", 
         | 
| 309 | 
            +
                  "userScore": 0, 
         | 
| 310 | 
            +
                  "id": "199523128", 
         | 
| 311 | 
            +
                  "isClosed": false, 
         | 
| 312 | 
            +
                  "posts": 5, 
         | 
| 313 | 
            +
                  "link": "http://yvanrodic.com/2009/11/melbourne-november-22nd-2009.html", 
         | 
| 314 | 
            +
                  "likes": 0, 
         | 
| 315 | 
            +
                  "message": "", 
         | 
| 316 | 
            +
                  "slug": "httpyvanrodicblogspotcom200911melbourne_november_22nd_2009html", 
         | 
| 317 | 
            +
                  "createdAt": "2010-12-29T16:02:14"
         | 
| 318 | 
            +
                }, 
         | 
| 319 | 
            +
                {
         | 
| 320 | 
            +
                  "category": "595774", 
         | 
| 321 | 
            +
                  "reactions": 0, 
         | 
| 322 | 
            +
                  "identifiers": [
         | 
| 323 | 
            +
                    "post_95"
         | 
| 324 | 
            +
                  ], 
         | 
| 325 | 
            +
                  "forum": "yvanrodic", 
         | 
| 326 | 
            +
                  "title": "Paris", 
         | 
| 327 | 
            +
                  "dislikes": 0, 
         | 
| 328 | 
            +
                  "isDeleted": false, 
         | 
| 329 | 
            +
                  "author": "6138058", 
         | 
| 330 | 
            +
                  "userScore": 0, 
         | 
| 331 | 
            +
                  "id": "261448265", 
         | 
| 332 | 
            +
                  "isClosed": false, 
         | 
| 333 | 
            +
                  "posts": 0, 
         | 
| 334 | 
            +
                  "link": "http://yvanrodic.lovethe88.com/posts/95/paris-june-27th-2010", 
         | 
| 335 | 
            +
                  "likes": 0, 
         | 
| 336 | 
            +
                  "message": "", 
         | 
| 337 | 
            +
                  "slug": "paris_74", 
         | 
| 338 | 
            +
                  "createdAt": "2011-03-23T20:36:46"
         | 
| 339 | 
            +
                }, 
         | 
| 340 | 
            +
                {
         | 
| 341 | 
            +
                  "category": "595774", 
         | 
| 342 | 
            +
                  "reactions": 0, 
         | 
| 343 | 
            +
                  "identifiers": [
         | 
| 344 | 
            +
                    "5880865335222145741"
         | 
| 345 | 
            +
                  ], 
         | 
| 346 | 
            +
                  "forum": "yvanrodic", 
         | 
| 347 | 
            +
                  "title": "http://yvanrodic.blogspot.com/2010/11/los-angeles-november-19th-20th-2010.html", 
         | 
| 348 | 
            +
                  "dislikes": 0, 
         | 
| 349 | 
            +
                  "isDeleted": false, 
         | 
| 350 | 
            +
                  "author": "6138058", 
         | 
| 351 | 
            +
                  "userScore": 0, 
         | 
| 352 | 
            +
                  "id": "199519868", 
         | 
| 353 | 
            +
                  "isClosed": false, 
         | 
| 354 | 
            +
                  "posts": 7, 
         | 
| 355 | 
            +
                  "link": "http://yvanrodic.com/2010/11/los-angeles-november-19th-20th-2010.html", 
         | 
| 356 | 
            +
                  "likes": 0, 
         | 
| 357 | 
            +
                  "message": "", 
         | 
| 358 | 
            +
                  "slug": "httpyvanrodicblogspotcom201011los_angeles_november_19th_20th_2010html", 
         | 
| 359 | 
            +
                  "createdAt": "2010-12-29T15:55:03"
         | 
| 360 | 
            +
                }, 
         | 
| 361 | 
            +
                {
         | 
| 362 | 
            +
                  "category": "595774", 
         | 
| 363 | 
            +
                  "reactions": 0, 
         | 
| 364 | 
            +
                  "identifiers": [
         | 
| 365 | 
            +
                    "4455958677907928823"
         | 
| 366 | 
            +
                  ], 
         | 
| 367 | 
            +
                  "forum": "yvanrodic", 
         | 
| 368 | 
            +
                  "title": "http://yvanrodic.blogspot.com/2010/07/seyisfjorur-july-17th-2010.html", 
         | 
| 369 | 
            +
                  "dislikes": 0, 
         | 
| 370 | 
            +
                  "isDeleted": false, 
         | 
| 371 | 
            +
                  "author": "6138058", 
         | 
| 372 | 
            +
                  "userScore": 0, 
         | 
| 373 | 
            +
                  "id": "199520729", 
         | 
| 374 | 
            +
                  "isClosed": false, 
         | 
| 375 | 
            +
                  "posts": 25, 
         | 
| 376 | 
            +
                  "link": "http://yvanrodic.com/2010/07/seyisfjorur-july-17th-2010.html", 
         | 
| 377 | 
            +
                  "likes": 0, 
         | 
| 378 | 
            +
                  "message": "", 
         | 
| 379 | 
            +
                  "slug": "httpyvanrodicblogspotcom201007seyisfjorur_july_17th_2010html", 
         | 
| 380 | 
            +
                  "createdAt": "2010-12-29T15:57:02"
         | 
| 381 | 
            +
                }, 
         | 
| 382 | 
            +
                {
         | 
| 383 | 
            +
                  "category": "595774", 
         | 
| 384 | 
            +
                  "reactions": 0, 
         | 
| 385 | 
            +
                  "identifiers": [
         | 
| 386 | 
            +
                    "5322284814683108616"
         | 
| 387 | 
            +
                  ], 
         | 
| 388 | 
            +
                  "forum": "yvanrodic", 
         | 
| 389 | 
            +
                  "title": "http://yvanrodic.blogspot.com/2009/09/moscow-september-3rd-2009.html", 
         | 
| 390 | 
            +
                  "dislikes": 0, 
         | 
| 391 | 
            +
                  "isDeleted": false, 
         | 
| 392 | 
            +
                  "author": "6138058", 
         | 
| 393 | 
            +
                  "userScore": 0, 
         | 
| 394 | 
            +
                  "id": "199523920", 
         | 
| 395 | 
            +
                  "isClosed": false, 
         | 
| 396 | 
            +
                  "posts": 11, 
         | 
| 397 | 
            +
                  "link": "http://yvanrodic.com/2009/09/moscow-september-3rd-2009.html", 
         | 
| 398 | 
            +
                  "likes": 0, 
         | 
| 399 | 
            +
                  "message": "", 
         | 
| 400 | 
            +
                  "slug": "httpyvanrodicblogspotcom200909moscow_september_3rd_2009html", 
         | 
| 401 | 
            +
                  "createdAt": "2010-12-29T16:03:53"
         | 
| 402 | 
            +
                }, 
         | 
| 403 | 
            +
                {
         | 
| 404 | 
            +
                  "category": "595774", 
         | 
| 405 | 
            +
                  "reactions": 0, 
         | 
| 406 | 
            +
                  "identifiers": [
         | 
| 407 | 
            +
                    "841396457868871171"
         | 
| 408 | 
            +
                  ], 
         | 
| 409 | 
            +
                  "forum": "yvanrodic", 
         | 
| 410 | 
            +
                  "title": "http://yvanrodic.blogspot.com/2009/09/new-york-september-11th-2009.html", 
         | 
| 411 | 
            +
                  "dislikes": 0, 
         | 
| 412 | 
            +
                  "isDeleted": false, 
         | 
| 413 | 
            +
                  "author": "6138058", 
         | 
| 414 | 
            +
                  "userScore": 0, 
         | 
| 415 | 
            +
                  "id": "199523857", 
         | 
| 416 | 
            +
                  "isClosed": false, 
         | 
| 417 | 
            +
                  "posts": 11, 
         | 
| 418 | 
            +
                  "link": "http://yvanrodic.com/2009/09/new-york-september-11th-2009.html", 
         | 
| 419 | 
            +
                  "likes": 0, 
         | 
| 420 | 
            +
                  "message": "", 
         | 
| 421 | 
            +
                  "slug": "httpyvanrodicblogspotcom200909new_york_september_11th_2009html", 
         | 
| 422 | 
            +
                  "createdAt": "2010-12-29T16:03:44"
         | 
| 423 | 
            +
                }, 
         | 
| 424 | 
            +
                {
         | 
| 425 | 
            +
                  "category": "595774", 
         | 
| 426 | 
            +
                  "reactions": 0, 
         | 
| 427 | 
            +
                  "identifiers": [
         | 
| 428 | 
            +
                    "1067213263780273976"
         | 
| 429 | 
            +
                  ], 
         | 
| 430 | 
            +
                  "forum": "yvanrodic", 
         | 
| 431 | 
            +
                  "title": "http://yvanrodic.blogspot.com/2010/08/copenhagen-august-13th-14th-2010.html", 
         | 
| 432 | 
            +
                  "dislikes": 0, 
         | 
| 433 | 
            +
                  "isDeleted": false, 
         | 
| 434 | 
            +
                  "author": "6138058", 
         | 
| 435 | 
            +
                  "userScore": 0, 
         | 
| 436 | 
            +
                  "id": "199520558", 
         | 
| 437 | 
            +
                  "isClosed": false, 
         | 
| 438 | 
            +
                  "posts": 22, 
         | 
| 439 | 
            +
                  "link": "http://yvanrodic.com/2010/08/copenhagen-august-13th-14th-2010.html", 
         | 
| 440 | 
            +
                  "likes": 0, 
         | 
| 441 | 
            +
                  "message": "", 
         | 
| 442 | 
            +
                  "slug": "httpyvanrodicblogspotcom201008copenhagen_august_13th_14th_2010html", 
         | 
| 443 | 
            +
                  "createdAt": "2010-12-29T15:56:40"
         | 
| 444 | 
            +
                }, 
         | 
| 445 | 
            +
                {
         | 
| 446 | 
            +
                  "category": "595774", 
         | 
| 447 | 
            +
                  "reactions": 0, 
         | 
| 448 | 
            +
                  "identifiers": [
         | 
| 449 | 
            +
                    "8146580022149545150"
         | 
| 450 | 
            +
                  ], 
         | 
| 451 | 
            +
                  "forum": "yvanrodic", 
         | 
| 452 | 
            +
                  "title": "http://yvanrodic.blogspot.com/2010/06/amsterdam-may-28th-2010.html", 
         | 
| 453 | 
            +
                  "dislikes": 0, 
         | 
| 454 | 
            +
                  "isDeleted": false, 
         | 
| 455 | 
            +
                  "author": "6138058", 
         | 
| 456 | 
            +
                  "userScore": 0, 
         | 
| 457 | 
            +
                  "id": "199521200", 
         | 
| 458 | 
            +
                  "isClosed": false, 
         | 
| 459 | 
            +
                  "posts": 14, 
         | 
| 460 | 
            +
                  "link": "http://yvanrodic.com/2010/06/amsterdam-may-28th-2010.html", 
         | 
| 461 | 
            +
                  "likes": 0, 
         | 
| 462 | 
            +
                  "message": "", 
         | 
| 463 | 
            +
                  "slug": "httpyvanrodicblogspotcom201006amsterdam_may_28th_2010html", 
         | 
| 464 | 
            +
                  "createdAt": "2010-12-29T15:58:02"
         | 
| 465 | 
            +
                }, 
         | 
| 466 | 
            +
                {
         | 
| 467 | 
            +
                  "category": "595774", 
         | 
| 468 | 
            +
                  "reactions": 0, 
         | 
| 469 | 
            +
                  "identifiers": [
         | 
| 470 | 
            +
                    "post_99"
         | 
| 471 | 
            +
                  ], 
         | 
| 472 | 
            +
                  "forum": "yvanrodic", 
         | 
| 473 | 
            +
                  "title": "Barcelone", 
         | 
| 474 | 
            +
                  "dislikes": 0, 
         | 
| 475 | 
            +
                  "isDeleted": false, 
         | 
| 476 | 
            +
                  "author": "6138058", 
         | 
| 477 | 
            +
                  "userScore": 0, 
         | 
| 478 | 
            +
                  "id": "261506528", 
         | 
| 479 | 
            +
                  "isClosed": false, 
         | 
| 480 | 
            +
                  "posts": 0, 
         | 
| 481 | 
            +
                  "link": "http://yvanrodic.lovethe88.com/posts/99/barcelone-june-17th-2010", 
         | 
| 482 | 
            +
                  "likes": 0, 
         | 
| 483 | 
            +
                  "message": "", 
         | 
| 484 | 
            +
                  "slug": "barcelone_19", 
         | 
| 485 | 
            +
                  "createdAt": "2011-03-23T21:56:14"
         | 
| 486 | 
            +
                }, 
         | 
| 487 | 
            +
                {
         | 
| 488 | 
            +
                  "category": "595774", 
         | 
| 489 | 
            +
                  "reactions": 0, 
         | 
| 490 | 
            +
                  "identifiers": [
         | 
| 491 | 
            +
                    "post_235"
         | 
| 492 | 
            +
                  ], 
         | 
| 493 | 
            +
                  "forum": "yvanrodic", 
         | 
| 494 | 
            +
                  "title": "Auckland", 
         | 
| 495 | 
            +
                  "dislikes": 0, 
         | 
| 496 | 
            +
                  "isDeleted": false, 
         | 
| 497 | 
            +
                  "author": "6138058", 
         | 
| 498 | 
            +
                  "userScore": 0, 
         | 
| 499 | 
            +
                  "id": "261470467", 
         | 
| 500 | 
            +
                  "isClosed": false, 
         | 
| 501 | 
            +
                  "posts": 0, 
         | 
| 502 | 
            +
                  "link": "http://yvanrodic.lovethe88.com/posts/235/auckland-november-24th-2009", 
         | 
| 503 | 
            +
                  "likes": 0, 
         | 
| 504 | 
            +
                  "message": "", 
         | 
| 505 | 
            +
                  "slug": "auckland", 
         | 
| 506 | 
            +
                  "createdAt": "2011-03-23T21:05:15"
         | 
| 507 | 
            +
                }, 
         | 
| 508 | 
            +
                {
         | 
| 509 | 
            +
                  "category": "595774", 
         | 
| 510 | 
            +
                  "reactions": 0, 
         | 
| 511 | 
            +
                  "identifiers": [
         | 
| 512 | 
            +
                    "4932180120710460131"
         | 
| 513 | 
            +
                  ], 
         | 
| 514 | 
            +
                  "forum": "yvanrodic", 
         | 
| 515 | 
            +
                  "title": "http://yvanrodic.blogspot.com/2009/08/tokyo-august-19th-2009.html", 
         | 
| 516 | 
            +
                  "dislikes": 0, 
         | 
| 517 | 
            +
                  "isDeleted": false, 
         | 
| 518 | 
            +
                  "author": "6138058", 
         | 
| 519 | 
            +
                  "userScore": 0, 
         | 
| 520 | 
            +
                  "id": "199524060", 
         | 
| 521 | 
            +
                  "isClosed": false, 
         | 
| 522 | 
            +
                  "posts": 9, 
         | 
| 523 | 
            +
                  "link": "http://yvanrodic.com/2009/08/tokyo-august-19th-2009.html", 
         | 
| 524 | 
            +
                  "likes": 0, 
         | 
| 525 | 
            +
                  "message": "", 
         | 
| 526 | 
            +
                  "slug": "httpyvanrodicblogspotcom200908tokyo_august_19th_2009html", 
         | 
| 527 | 
            +
                  "createdAt": "2010-12-29T16:04:13"
         | 
| 528 | 
            +
                }
         | 
| 529 | 
            +
              ]
         | 
| 530 | 
            +
            }
         | 
| @@ -0,0 +1,87 @@ | |
| 1 | 
            +
            {
         | 
| 2 | 
            +
              "cursor": {
         | 
| 3 | 
            +
                "prev": null, 
         | 
| 4 | 
            +
                "hasNext": false, 
         | 
| 5 | 
            +
                "next": "1304739587938416:0:0", 
         | 
| 6 | 
            +
                "hasPrev": false, 
         | 
| 7 | 
            +
                "total": null, 
         | 
| 8 | 
            +
                "id": "1304739587938416:0:0", 
         | 
| 9 | 
            +
                "more": false
         | 
| 10 | 
            +
              }, 
         | 
| 11 | 
            +
              "code": 0, 
         | 
| 12 | 
            +
              "response": [
         | 
| 13 | 
            +
                {
         | 
| 14 | 
            +
                  "isJuliaFlagged": true, 
         | 
| 15 | 
            +
                  "isFlagged": false, 
         | 
| 16 | 
            +
                  "forum": "yvanrodic", 
         | 
| 17 | 
            +
                  "parent": 199054391, 
         | 
| 18 | 
            +
                  "author": {
         | 
| 19 | 
            +
                    "name": "cat", 
         | 
| 20 | 
            +
                    "url": "", 
         | 
| 21 | 
            +
                    "profileUrl": "http://disqus.com/guest/86a6a9e72914d50f4557111a85e1628d/", 
         | 
| 22 | 
            +
                    "emailHash": "86a6a9e72914d50f4557111a85e1628d", 
         | 
| 23 | 
            +
                    "avatar": {
         | 
| 24 | 
            +
                      "permalink": "http://www.gravatar.com/avatar.php?gravatar_id=86a6a9e72914d50f4557111a85e1628d&size=32&default=http://mediacdn.disqus.com/1304703476/images/noavatar32.png", 
         | 
| 25 | 
            +
                      "cache": "http://www.gravatar.com/avatar.php?gravatar_id=86a6a9e72914d50f4557111a85e1628d&size=32&default=http://mediacdn.disqus.com/1304703476/images/noavatar32.png"
         | 
| 26 | 
            +
                    }, 
         | 
| 27 | 
            +
                    "isAnonymous": true, 
         | 
| 28 | 
            +
                    "email": "bellcath@gmail.com"
         | 
| 29 | 
            +
                  }, 
         | 
| 30 | 
            +
                  "media": [], 
         | 
| 31 | 
            +
                  "isApproved": true, 
         | 
| 32 | 
            +
                  "dislikes": 0, 
         | 
| 33 | 
            +
                  "raw_message": "such great photos! I love Sydney! ", 
         | 
| 34 | 
            +
                  "isSpam": false, 
         | 
| 35 | 
            +
                  "thread": "297457168", 
         | 
| 36 | 
            +
                  "points": 0, 
         | 
| 37 | 
            +
                  "createdAt": "2011-05-07T04:43:30", 
         | 
| 38 | 
            +
                  "message": "such great photos! I love Sydney!", 
         | 
| 39 | 
            +
                  "isHighlighted": false, 
         | 
| 40 | 
            +
                  "ipAddress": "173.67.229.81", 
         | 
| 41 | 
            +
                  "id": "199088808", 
         | 
| 42 | 
            +
                  "isDeleted": false, 
         | 
| 43 | 
            +
                  "likes": 0
         | 
| 44 | 
            +
                }, 
         | 
| 45 | 
            +
                {
         | 
| 46 | 
            +
                  "isJuliaFlagged": true, 
         | 
| 47 | 
            +
                  "isFlagged": false, 
         | 
| 48 | 
            +
                  "forum": "yvanrodic", 
         | 
| 49 | 
            +
                  "parent": null, 
         | 
| 50 | 
            +
                  "author": {
         | 
| 51 | 
            +
                    "username": "twitter-72943267", 
         | 
| 52 | 
            +
                    "about": "", 
         | 
| 53 | 
            +
                    "remote": {
         | 
| 54 | 
            +
                      "domain": "twitter", 
         | 
| 55 | 
            +
                      "identifier": "72943267"
         | 
| 56 | 
            +
                    }, 
         | 
| 57 | 
            +
                    "name": "Diego Maya Medina", 
         | 
| 58 | 
            +
                    "url": "http://twitter.com/futuro_freak", 
         | 
| 59 | 
            +
                    "isFollowing": false, 
         | 
| 60 | 
            +
                    "isFollowedBy": false, 
         | 
| 61 | 
            +
                    "profileUrl": "http://disqus.com/twitter-72943267/", 
         | 
| 62 | 
            +
                    "emailHash": "d41d8cd98f00b204e9800998ecf8427e", 
         | 
| 63 | 
            +
                    "avatar": {
         | 
| 64 | 
            +
                      "permalink": "http://disqus.com/api/users/avatars/twitter-72943267.jpg", 
         | 
| 65 | 
            +
                      "cache": "http://mediacdn.disqus.com/uploads/users/490/3276/avatar92.jpg?1304739585"
         | 
| 66 | 
            +
                    }, 
         | 
| 67 | 
            +
                    "id": "4903276", 
         | 
| 68 | 
            +
                    "isAnonymous": false, 
         | 
| 69 | 
            +
                    "email": ""
         | 
| 70 | 
            +
                  }, 
         | 
| 71 | 
            +
                  "media": [], 
         | 
| 72 | 
            +
                  "isApproved": true, 
         | 
| 73 | 
            +
                  "dislikes": 0, 
         | 
| 74 | 
            +
                  "raw_message": "Always beautiful and fun pictures \n", 
         | 
| 75 | 
            +
                  "isSpam": false, 
         | 
| 76 | 
            +
                  "thread": "297457168", 
         | 
| 77 | 
            +
                  "points": 0, 
         | 
| 78 | 
            +
                  "createdAt": "2011-05-07T03:39:47", 
         | 
| 79 | 
            +
                  "message": "Always beautiful and fun pictures <br>", 
         | 
| 80 | 
            +
                  "isHighlighted": false, 
         | 
| 81 | 
            +
                  "ipAddress": "201.246.104.142", 
         | 
| 82 | 
            +
                  "id": "199054391", 
         | 
| 83 | 
            +
                  "isDeleted": false, 
         | 
| 84 | 
            +
                  "likes": 0
         | 
| 85 | 
            +
                }
         | 
| 86 | 
            +
              ]
         | 
| 87 | 
            +
            }
         |