toppr 0.8.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,17 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
@@ -0,0 +1,9 @@
1
+ language: ruby
2
+ matrix:
3
+ allow_failures:
4
+ - rvm: ruby-head
5
+ rvm:
6
+ - 1.8.7
7
+ - 1.9.2
8
+ - 1.9.3
9
+ - ruby-head
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in toppr.gemspec
4
+ gemspec
data/LICENSE ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2012 willrax
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,41 @@
1
+ # Toppr [![Build Status](https://secure.travis-ci.org/willrax/toppr.png?branch=master)][travis]
2
+
3
+ [travis]: http://travis-ci.org/willrax/octokit
4
+
5
+ A simple ruby wrapper for the desktoppr.co API.
6
+
7
+ ## Installation
8
+
9
+ $ gem install toppr
10
+
11
+ ## Examples
12
+
13
+ Each request returns a hash with method access.
14
+
15
+ ### Request a users profile
16
+
17
+ Toppr.user('willrax')
18
+ => #<Hashie::Mash created_at="2012-06-20T11:57:41Z" followers_count=2 following_count=0 lifetime_member=false name="willrax" ... >
19
+
20
+ ### Wallpapers
21
+
22
+ You can fetch all the wallpapers on the desktoppr database
23
+
24
+ Toppr.wallpapers
25
+
26
+ Or you can fetch a random wallpaper
27
+
28
+ Toppr.random
29
+ => #<Hashie::Mash bytes=2267435 created_at="2012-07-01T04:12:40Z" height=1440 id=76285 image=#<Hashie::Mash preview=#<Hashie::Mash height=540 url="http://a.desktopprassets.com/wallpapers/bddef83d0dd366676a0c9977eecd2d06560d7231/preview_wp_2560-3.jpeg" width=960> thumb=#<Hashie::Mash height=185 url="http://a.desktopprassets.com/wallpapers/bddef83d0dd366676a0c9977eecd2d06560d7231/thumb_wp_2560-3.jpeg" width=296> url="http://a.desktopprassets.com/wallpapers/bddef83d0dd366676a0c9977eecd2d06560d7231/wp_2560-3.jpeg"> palette=[] review_state="safe" url="http://www.desktoppr.co/wallpapers/76285" user_count=6 user_id=5286 views_count=15 width=2560>
30
+
31
+ You can also add a username param to fetch either all the wallpapers that a user has in their collection or a random one.
32
+
33
+ Toppr.wallpapers('willrax')
34
+
35
+ ## Contributing
36
+
37
+ 1. Fork it
38
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
39
+ 3. Commit your changes (`git commit -am 'Added some feature'`)
40
+ 4. Push to the branch (`git push origin my-new-feature`)
41
+ 5. Create new Pull Request
@@ -0,0 +1,11 @@
1
+ #!/usr/bin/env rake
2
+ require "bundler/gem_tasks"
3
+
4
+ require "rspec/core/rake_task"
5
+ desc "Run the specs"
6
+ RSpec::Core::RakeTask.new do |t|
7
+ #t.rspec_opts = %w(-fs --color)
8
+ end
9
+
10
+ task :default => :spec
11
+ task :test => :spec
Binary file
@@ -0,0 +1,24 @@
1
+ require 'hashie'
2
+ require 'httparty'
3
+
4
+ require "toppr/client"
5
+ require "toppr/version"
6
+
7
+ module Toppr
8
+ class << self
9
+
10
+ def new
11
+ Toppr::Client.new
12
+ end
13
+
14
+ def method_missing(method, *args, &block)
15
+ return super unless new.respond_to?(method)
16
+ new.send(method, *args, &block)
17
+ end
18
+
19
+ def respond_to?(method, include_private=false)
20
+ new.respond_to?(method, include_private) || super(method, include_private)
21
+ end
22
+
23
+ end
24
+ end
Binary file
@@ -0,0 +1,30 @@
1
+ require "toppr/client/user"
2
+ require "toppr/client/wallpaper"
3
+
4
+ module Toppr
5
+ class Client
6
+
7
+ include Hashie
8
+ include HTTParty
9
+
10
+ base_uri 'https://api.desktoppr.co/1'
11
+
12
+ # Make the request to the API
13
+ #
14
+ def request(action, path, options)
15
+ parse_response(self.class.send(action, path, options))
16
+ end
17
+
18
+ private
19
+
20
+ # Parse the response
21
+ #
22
+ def parse_response(response)
23
+ (Hashie::Mash.new(response)).response
24
+ end
25
+
26
+ include Toppr::Client::User
27
+ include Toppr::Client::Wallpaper
28
+
29
+ end
30
+ end
@@ -0,0 +1,17 @@
1
+ module Toppr
2
+ class Client
3
+ module User
4
+
5
+ # Retrieve a user profile
6
+ #
7
+ # @param username [String]
8
+ # @return [Hashie::Mash] User profile
9
+ # @example Retrieve user profile
10
+ # Toppr.user('willrax')
11
+ def user(username, options={})
12
+ request(:get, "/users/#{username}", options)
13
+ end
14
+
15
+ end
16
+ end
17
+ end
@@ -0,0 +1,36 @@
1
+ module Toppr
2
+ class Client
3
+ module Wallpaper
4
+
5
+ # Retrieve a random wallpaper
6
+ #
7
+ # @param option [String] username
8
+ # @return [Hashie::Mash] A wallpaper
9
+ # @example Retrieve a random wallpaper for user
10
+ # Toppr.random('willrax')
11
+ def random(username=nil, options = {})
12
+ if username == nil
13
+ request(:get, "/wallpapers/random", options)
14
+ else
15
+ request(:get, "/users/#{username}/wallpapers/random", options)
16
+ end
17
+ end
18
+
19
+ # Retrieve all wallpapers
20
+ #
21
+ # @param option [String] username
22
+ # @option option [String] page
23
+ # @return [Hashie::Mash] All Wallpapers
24
+ # @example Retrieve wallpapers for user
25
+ # Toppr.wallpapers('willrax')
26
+ def wallpapers(username=nil, options = {})
27
+ if username == nil
28
+ request(:get, "/wallpapers", options)
29
+ else
30
+ request(:get, "/users/#{username}/wallpapers", options)
31
+ end
32
+ end
33
+
34
+ end
35
+ end
36
+ end
@@ -0,0 +1,3 @@
1
+ module Toppr
2
+ VERSION = '0.8.1'
3
+ end
@@ -0,0 +1,54 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: https://api.desktoppr.co/1/users/willrax
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers: {}
10
+ response:
11
+ status:
12
+ code: 200
13
+ message: OK
14
+ headers:
15
+ Server:
16
+ - nginx/1.3.3
17
+ Date:
18
+ - Tue, 04 Sep 2012 21:04:51 GMT
19
+ Content-Type:
20
+ - application/json; charset=utf-8
21
+ Content-Length:
22
+ - '286'
23
+ Connection:
24
+ - keep-alive
25
+ Status:
26
+ - 200 OK
27
+ Strict-Transport-Security:
28
+ - max-age=31536000
29
+ Etag:
30
+ - ! '"8839d020839c17f2b5b34e33636eaec8:e6815ed2ad7b178c9fc67a0dc5ab16a7"'
31
+ Access-Control-Allow-Methods:
32
+ - POST, GET, PUT, DELETE, OPTIONS
33
+ Access-Control-Max-Age:
34
+ - '1000'
35
+ Cache-Control:
36
+ - public
37
+ X-Ua-Compatible:
38
+ - IE=Edge,chrome=1
39
+ X-Request-Id:
40
+ - a52baebd7ba65ee488df370b01423f8d
41
+ X-Runtime:
42
+ - '0.036098'
43
+ X-Content-Digest:
44
+ - 7c535491fc49db107ad74b83cf12a1f7db8375f1
45
+ Age:
46
+ - '0'
47
+ X-Rack-Cache:
48
+ - miss, store
49
+ body:
50
+ encoding: US-ASCII
51
+ string: ! '{"response":{"username":"willrax","name":"willrax","avatar_url":"https://secure.gravatar.com/avatar/ce0041fa65236f089e20333b6488d981.png?r=PG","wallpapers_count":221,"uploaded_count":0,"followers_count":2,"following_count":0,"created_at":"2012-06-20T11:57:41Z","lifetime_member":false}}'
52
+ http_version:
53
+ recorded_at: Tue, 04 Sep 2012 21:04:58 GMT
54
+ recorded_with: VCR 2.2.4
@@ -0,0 +1,379 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: https://api.desktoppr.co/1/wallpapers?page=1
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers: {}
10
+ response:
11
+ status:
12
+ code: 200
13
+ message: OK
14
+ headers:
15
+ Server:
16
+ - nginx/1.3.3
17
+ Date:
18
+ - Tue, 04 Sep 2012 21:40:53 GMT
19
+ Content-Type:
20
+ - application/json; charset=utf-8
21
+ Content-Length:
22
+ - '13400'
23
+ Connection:
24
+ - keep-alive
25
+ Status:
26
+ - 200 OK
27
+ Strict-Transport-Security:
28
+ - max-age=31536000
29
+ Access-Control-Allow-Methods:
30
+ - POST, GET, PUT, DELETE, OPTIONS
31
+ Access-Control-Max-Age:
32
+ - '1000'
33
+ X-Ua-Compatible:
34
+ - IE=Edge,chrome=1
35
+ Etag:
36
+ - ! '"bfdba0574ec52956c42c8915551429ac"'
37
+ Cache-Control:
38
+ - max-age=0, private, must-revalidate
39
+ X-Request-Id:
40
+ - 79f007d170dc0654b666098687f264d6
41
+ X-Runtime:
42
+ - '0.069500'
43
+ X-Rack-Cache:
44
+ - miss
45
+ body:
46
+ encoding: US-ASCII
47
+ string: ! '{"response":[{"id":1046,"bytes":1360008,"created_at":"2012-05-22T20:56:34Z","image":{"url":"http://a.desktopprassets.com/wallpapers/30e1edcbe3da8b2b1c4288fe1d5ed747420cd094/screenfeeder.png","thumb":{"url":"http://a.desktopprassets.com/wallpapers/30e1edcbe3da8b2b1c4288fe1d5ed747420cd094/thumb_screenfeeder.png","width":296,"height":185},"preview":{"url":"http://a.desktopprassets.com/wallpapers/30e1edcbe3da8b2b1c4288fe1d5ed747420cd094/preview_screenfeeder.png","width":960,"height":540}},"height":1080,"width":1920,"review_state":"safe","user_id":146,"user_count":13,"views_count":96,"palette":["040404","222222","2A2B34","2B3434","373635"],"url":"http://www.desktoppr.co/wallpapers/1046"},{"id":30705,"bytes":4079397,"created_at":"2012-06-18T22:00:06Z","image":{"url":"http://a.desktopprassets.com/wallpapers/8a4f23ad71649dfead3a538ce90a8a148436a103/polarlicht_2.jpg","thumb":{"url":"http://a.desktopprassets.com/wallpapers/8a4f23ad71649dfead3a538ce90a8a148436a103/thumb_polarlicht_2.jpg","width":296,"height":185},"preview":{"url":"http://a.desktopprassets.com/wallpapers/8a4f23ad71649dfead3a538ce90a8a148436a103/preview_polarlicht_2.jpg","width":960,"height":625}},"height":1960,"width":3008,"review_state":"safe","user_id":2964,"user_count":24,"views_count":31,"palette":["1D1820","526580","97D8C1","A7A8CB","C2C7D3"],"url":"http://www.desktoppr.co/wallpapers/30705"},{"id":629,"bytes":94123,"created_at":"2012-04-28T08:23:58Z","image":{"url":"http://a.desktopprassets.com/wallpapers/4c6ab7dd892080b7fb9dbf70212711bfaf6b4a9f/sunny_tropics_2600.jpeg","thumb":{"url":"http://a.desktopprassets.com/wallpapers/4c6ab7dd892080b7fb9dbf70212711bfaf6b4a9f/thumb_sunny_tropics_2600.jpeg","width":296,"height":185},"preview":{"url":"http://a.desktopprassets.com/wallpapers/4c6ab7dd892080b7fb9dbf70212711bfaf6b4a9f/preview_sunny_tropics_2600.jpeg","width":960,"height":720}},"height":1200,"width":1600,"review_state":"safe","user_id":14,"user_count":6,"views_count":23,"palette":["1E8DC1","576F41","6C6C74","86C6E2","F3F4EA"],"url":"http://www.desktoppr.co/wallpapers/629"},{"id":31361,"bytes":3267882,"created_at":"2012-06-19T00:06:34Z","image":{"url":"http://a.desktopprassets.com/wallpapers/247fdeff03ae05a5ed84f4dc0c6cab4286ca2a21/91.jpg","thumb":{"url":"http://a.desktopprassets.com/wallpapers/247fdeff03ae05a5ed84f4dc0c6cab4286ca2a21/thumb_91.jpg","width":296,"height":185},"preview":{"url":"http://a.desktopprassets.com/wallpapers/247fdeff03ae05a5ed84f4dc0c6cab4286ca2a21/preview_91.jpg","width":960,"height":600}},"height":1200,"width":1920,"review_state":"safe","user_id":3349,"user_count":8,"views_count":11,"palette":["2A3120","887964","96929E","97B386","DFB79B"],"url":"http://www.desktoppr.co/wallpapers/31361"},{"id":1730,"bytes":22831,"created_at":"2012-06-01T13:58:04Z","image":{"url":"http://a.desktopprassets.com/wallpapers/16884f60eb89288bd9e06e9bb0ca6a69fe8c6065/lightsaber.png","thumb":{"url":"http://a.desktopprassets.com/wallpapers/16884f60eb89288bd9e06e9bb0ca6a69fe8c6065/thumb_lightsaber.png","width":296,"height":185},"preview":{"url":"http://a.desktopprassets.com/wallpapers/16884f60eb89288bd9e06e9bb0ca6a69fe8c6065/preview_lightsaber.png","width":960,"height":600}},"height":1600,"width":2560,"review_state":"safe","user_id":205,"user_count":7,"views_count":9,"palette":["539583","846025","84C464","B5F9FA","FBA404"],"url":"http://www.desktoppr.co/wallpapers/1730"},{"id":136461,"bytes":192958,"created_at":"2012-07-18T21:08:31Z","image":{"url":"http://a.desktopprassets.com/wallpapers/af125af24a25851d325b7d94baa7fa8e1c70ea50/okx5e_-_imgur.jpg","thumb":{"url":"http://a.desktopprassets.com/wallpapers/af125af24a25851d325b7d94baa7fa8e1c70ea50/thumb_okx5e_-_imgur.jpg","width":296,"height":185},"preview":{"url":"http://a.desktopprassets.com/wallpapers/af125af24a25851d325b7d94baa7fa8e1c70ea50/preview_okx5e_-_imgur.jpg","width":960,"height":540}},"height":1080,"width":1920,"review_state":"safe","user_id":5040,"user_count":18,"views_count":16,"palette":[],"url":"http://www.desktoppr.co/wallpapers/136461"},{"id":55476,"bytes":556272,"created_at":"2012-06-22T23:22:54Z","image":{"url":"http://a.desktopprassets.com/wallpapers/b397b9644bb02f0974a23048308eddfb8f0cde6b/038101__15_.jpg","thumb":{"url":"http://a.desktopprassets.com/wallpapers/b397b9644bb02f0974a23048308eddfb8f0cde6b/thumb_038101__15_.jpg","width":296,"height":185},"preview":{"url":"http://a.desktopprassets.com/wallpapers/b397b9644bb02f0974a23048308eddfb8f0cde6b/preview_038101__15_.jpg","width":960,"height":600}},"height":1200,"width":1920,"review_state":"safe","user_id":4568,"user_count":9,"views_count":18,"palette":[],"url":"http://www.desktoppr.co/wallpapers/55476"},{"id":152896,"bytes":298968,"created_at":"2012-08-10T21:04:27Z","image":{"url":"http://a.desktopprassets.com/wallpapers/d0d060099a6a1edadf9b206f725e902a1b522c08/wallpaper-323940.jpg","thumb":{"url":"http://a.desktopprassets.com/wallpapers/d0d060099a6a1edadf9b206f725e902a1b522c08/thumb_wallpaper-323940.jpg","width":296,"height":185},"preview":{"url":"http://a.desktopprassets.com/wallpapers/d0d060099a6a1edadf9b206f725e902a1b522c08/preview_wallpaper-323940.jpg","width":960,"height":600}},"height":900,"width":1440,"review_state":"safe","user_id":6574,"user_count":8,"views_count":14,"palette":[],"url":"http://www.desktoppr.co/wallpapers/152896"},{"id":37420,"bytes":3796691,"created_at":"2012-06-21T15:01:06Z","image":{"url":"http://a.desktopprassets.com/wallpapers/e1f5c443cd0b0c0454c45a28bfaad289b1482e9a/big_ba526706c147e4aff8d98ffc5a9b3f2e80689e36.jpg","thumb":{"url":"http://a.desktopprassets.com/wallpapers/e1f5c443cd0b0c0454c45a28bfaad289b1482e9a/thumb_big_ba526706c147e4aff8d98ffc5a9b3f2e80689e36.jpg","width":296,"height":185},"preview":{"url":"http://a.desktopprassets.com/wallpapers/e1f5c443cd0b0c0454c45a28bfaad289b1482e9a/preview_big_ba526706c147e4aff8d98ffc5a9b3f2e80689e36.jpg","width":960,"height":600}},"height":1800,"width":2880,"review_state":"safe","user_id":4400,"user_count":34,"views_count":33,"palette":["1D3648","6C7D2B","6C879D","B3CCC9","D6DFD4"],"url":"http://www.desktoppr.co/wallpapers/37420"},{"id":77945,"bytes":1320180,"created_at":"2012-07-01T11:43:06Z","image":{"url":"http://a.desktopprassets.com/wallpapers/c0ce37cbbcfe4db24bf2caab16549f29134e96b7/12c45r41ka0-4x49.jpg","thumb":{"url":"http://a.desktopprassets.com/wallpapers/c0ce37cbbcfe4db24bf2caab16549f29134e96b7/thumb_12c45r41ka0-4x49.jpg","width":296,"height":185},"preview":{"url":"http://a.desktopprassets.com/wallpapers/c0ce37cbbcfe4db24bf2caab16549f29134e96b7/preview_12c45r41ka0-4x49.jpg","width":960,"height":600}},"height":1200,"width":1920,"review_state":"safe","user_id":5604,"user_count":1,"views_count":2,"palette":[],"url":"http://www.desktoppr.co/wallpapers/77945"},{"id":155766,"bytes":331186,"created_at":"2012-08-15T09:18:20Z","image":{"url":"http://a.desktopprassets.com/wallpapers/79a6ffd20ce138118bbed720108a047b1dd88911/bokeh.jpg","thumb":{"url":"http://a.desktopprassets.com/wallpapers/79a6ffd20ce138118bbed720108a047b1dd88911/thumb_bokeh.jpg","width":296,"height":185},"preview":{"url":"http://a.desktopprassets.com/wallpapers/79a6ffd20ce138118bbed720108a047b1dd88911/preview_bokeh.jpg","width":960,"height":600}},"height":1600,"width":2560,"review_state":"safe","user_id":10405,"user_count":17,"views_count":16,"palette":[],"url":"http://www.desktoppr.co/wallpapers/155766"},{"id":652,"bytes":320022,"created_at":"2012-04-30T03:47:41Z","image":{"url":"http://a.desktopprassets.com/wallpapers/357ad377b1cbf621a5112eb6747a109f5a01d844/2m6wr9d.jpg","thumb":{"url":"http://a.desktopprassets.com/wallpapers/357ad377b1cbf621a5112eb6747a109f5a01d844/thumb_2m6wr9d.jpg","width":296,"height":185},"preview":{"url":"http://a.desktopprassets.com/wallpapers/357ad377b1cbf621a5112eb6747a109f5a01d844/preview_2m6wr9d.jpg","width":960,"height":655}},"height":874,"width":1280,"review_state":"safe","user_id":63,"user_count":8,"views_count":25,"palette":["2A2023","8D707B","96564E","A42828","BAD3D0"],"url":"http://www.desktoppr.co/wallpapers/652"},{"id":155709,"bytes":467530,"created_at":"2012-08-14T08:01:00Z","image":{"url":"http://a.desktopprassets.com/wallpapers/1e47d7cca427c602564e29931f95fc16ad110cd1/lwv1c.jpeg","thumb":{"url":"http://a.desktopprassets.com/wallpapers/1e47d7cca427c602564e29931f95fc16ad110cd1/thumb_lwv1c.jpeg","width":296,"height":185},"preview":{"url":"http://a.desktopprassets.com/wallpapers/1e47d7cca427c602564e29931f95fc16ad110cd1/preview_lwv1c.jpeg","width":960,"height":617}},"height":1911,"width":2970,"review_state":"safe","user_id":51,"user_count":21,"views_count":66,"palette":[],"url":"http://www.desktoppr.co/wallpapers/155709"},{"id":95847,"bytes":803412,"created_at":"2012-07-03T13:11:47Z","image":{"url":"http://a.desktopprassets.com/wallpapers/af5a9409a6296193ecb5cf8dd82b6e1c859633fd/chipintel1920.jpg","thumb":{"url":"http://a.desktopprassets.com/wallpapers/af5a9409a6296193ecb5cf8dd82b6e1c859633fd/thumb_chipintel1920.jpg","width":296,"height":185},"preview":{"url":"http://a.desktopprassets.com/wallpapers/af5a9409a6296193ecb5cf8dd82b6e1c859633fd/preview_chipintel1920.jpg","width":960,"height":600}},"height":1200,"width":1920,"review_state":"safe","user_id":5631,"user_count":14,"views_count":24,"palette":[],"url":"http://www.desktoppr.co/wallpapers/95847"},{"id":16679,"bytes":1185082,"created_at":"2012-06-10T12:16:51Z","image":{"url":"http://a.desktopprassets.com/wallpapers/cc5a0c2904c60be0190f20bb267e2f3f26166834/7341816630_42bfa55f06_o.jpg","thumb":{"url":"http://a.desktopprassets.com/wallpapers/cc5a0c2904c60be0190f20bb267e2f3f26166834/thumb_7341816630_42bfa55f06_o.jpg","width":296,"height":185},"preview":{"url":"http://a.desktopprassets.com/wallpapers/cc5a0c2904c60be0190f20bb267e2f3f26166834/preview_7341816630_42bfa55f06_o.jpg","width":960,"height":637}},"height":2848,"width":4288,"review_state":"safe","user_id":345,"user_count":16,"views_count":39,"palette":["171F2B","616D84","7889A9","889DBD","B4B9C7"],"url":"http://www.desktoppr.co/wallpapers/16679"},{"id":77546,"bytes":2219394,"created_at":"2012-07-01T10:31:06Z","image":{"url":"http://a.desktopprassets.com/wallpapers/f5ee050cc9abf66cfd93924909b8890bf83d304c/siva.jpg","thumb":{"url":"http://a.desktopprassets.com/wallpapers/f5ee050cc9abf66cfd93924909b8890bf83d304c/thumb_siva.jpg","width":296,"height":185},"preview":{"url":"http://a.desktopprassets.com/wallpapers/f5ee050cc9abf66cfd93924909b8890bf83d304c/preview_siva.jpg","width":960,"height":572}},"height":1527,"width":2560,"review_state":"safe","user_id":5523,"user_count":17,"views_count":68,"palette":[],"url":"http://www.desktoppr.co/wallpapers/77546"},{"id":155738,"bytes":301638,"created_at":"2012-08-14T16:13:08Z","image":{"url":"http://a.desktopprassets.com/wallpapers/f91d0ae89c3cdf38f833ccf05b37b9302fc4a8ee/tyrael_1920x1200.jpg","thumb":{"url":"http://a.desktopprassets.com/wallpapers/f91d0ae89c3cdf38f833ccf05b37b9302fc4a8ee/thumb_tyrael_1920x1200.jpg","width":296,"height":185},"preview":{"url":"http://a.desktopprassets.com/wallpapers/f91d0ae89c3cdf38f833ccf05b37b9302fc4a8ee/preview_tyrael_1920x1200.jpg","width":960,"height":600}},"height":1200,"width":1920,"review_state":"safe","user_id":6862,"user_count":16,"views_count":42,"palette":[],"url":"http://www.desktoppr.co/wallpapers/155738"},{"id":824,"bytes":442876,"created_at":"2012-05-06T12:56:23Z","image":{"url":"http://a.desktopprassets.com/wallpapers/59011373a94a04260205337bc4cbf41e5c3686fc/wallpaper-1912299.jpeg","thumb":{"url":"http://a.desktopprassets.com/wallpapers/59011373a94a04260205337bc4cbf41e5c3686fc/thumb_wallpaper-1912299.jpeg","width":296,"height":185},"preview":{"url":"http://a.desktopprassets.com/wallpapers/59011373a94a04260205337bc4cbf41e5c3686fc/preview_wallpaper-1912299.jpeg","width":960,"height":600}},"height":1200,"width":1920,"review_state":"safe","user_id":6,"user_count":7,"views_count":22,"palette":["0C1214","487C8C","6B9AA2","886F66","EBE8E6"],"url":"http://www.desktoppr.co/wallpapers/824"},{"id":111124,"bytes":337409,"created_at":"2012-07-07T08:24:26Z","image":{"url":"http://a.desktopprassets.com/wallpapers/3ef372164f1708f2f61035655dd16bb12fbb81fd/mad_svs01_lion_bomb.jpg","thumb":{"url":"http://a.desktopprassets.com/wallpapers/3ef372164f1708f2f61035655dd16bb12fbb81fd/thumb_mad_svs01_lion_bomb.jpg","width":296,"height":185},"preview":{"url":"http://a.desktopprassets.com/wallpapers/3ef372164f1708f2f61035655dd16bb12fbb81fd/preview_mad_svs01_lion_bomb.jpg","width":960,"height":540}},"height":1080,"width":1920,"review_state":"safe","user_id":7849,"user_count":3,"views_count":7,"palette":[],"url":"http://www.desktoppr.co/wallpapers/111124"},{"id":31576,"bytes":76508,"created_at":"2012-06-19T02:49:52Z","image":{"url":"http://a.desktopprassets.com/wallpapers/4bfdd1e1496436f15eb971dd8453b0544e4b5da8/wallpaper-1022849.png","thumb":{"url":"http://a.desktopprassets.com/wallpapers/4bfdd1e1496436f15eb971dd8453b0544e4b5da8/thumb_wallpaper-1022849.png","width":296,"height":185},"preview":{"url":"http://a.desktopprassets.com/wallpapers/4bfdd1e1496436f15eb971dd8453b0544e4b5da8/preview_wallpaper-1022849.png","width":960,"height":540}},"height":1080,"width":1920,"review_state":"safe","user_id":3463,"user_count":10,"views_count":8,"palette":["35A995","9E468B","DF9874","E15236","FBE3B3"],"url":"http://www.desktoppr.co/wallpapers/31576"}],"count":20,"pagination":{"current":1,"previous":null,"next":2,"per_page":20,"pages":822,"count":16428}}'
48
+ http_version:
49
+ recorded_at: Tue, 04 Sep 2012 21:40:59 GMT
50
+ - request:
51
+ method: get
52
+ uri: https://api.desktoppr.co/1/users/2/wallpapers?page=1
53
+ body:
54
+ encoding: US-ASCII
55
+ string: ''
56
+ headers: {}
57
+ response:
58
+ status:
59
+ code: 200
60
+ message: OK
61
+ headers:
62
+ Server:
63
+ - nginx/1.3.3
64
+ Date:
65
+ - Tue, 04 Sep 2012 21:40:55 GMT
66
+ Content-Type:
67
+ - application/json; charset=utf-8
68
+ Content-Length:
69
+ - '13453'
70
+ Connection:
71
+ - keep-alive
72
+ Status:
73
+ - 200 OK
74
+ Strict-Transport-Security:
75
+ - max-age=31536000
76
+ Access-Control-Allow-Methods:
77
+ - POST, GET, PUT, DELETE, OPTIONS
78
+ Access-Control-Max-Age:
79
+ - '1000'
80
+ X-Ua-Compatible:
81
+ - IE=Edge,chrome=1
82
+ Etag:
83
+ - ! '"1220ae609c4d987b5eb5c8de7b429b43"'
84
+ Cache-Control:
85
+ - max-age=0, private, must-revalidate
86
+ X-Request-Id:
87
+ - eb8c2a7211f9b31385aa83a3e55eb657
88
+ X-Runtime:
89
+ - '0.070271'
90
+ X-Rack-Cache:
91
+ - miss
92
+ body:
93
+ encoding: US-ASCII
94
+ string: ! '{"response":[{"id":165697,"bytes":2218927,"created_at":"2012-09-03T21:31:27Z","image":{"url":"http://a.desktopprassets.com/wallpapers/3d669c58e2c3e0a3a0c3285b6cb5e19be82c940c/wallpaper-2200814.png","thumb":{"url":"http://a.desktopprassets.com/wallpapers/3d669c58e2c3e0a3a0c3285b6cb5e19be82c940c/thumb_wallpaper-2200814.png","width":296,"height":185},"preview":{"url":"http://a.desktopprassets.com/wallpapers/3d669c58e2c3e0a3a0c3285b6cb5e19be82c940c/preview_wallpaper-2200814.png","width":960,"height":600}},"height":1200,"width":1920,"review_state":"not_safe","user_id":6177,"user_count":5,"views_count":34,"palette":[],"url":"http://www.desktoppr.co/wallpapers/165697"},{"id":165445,"bytes":620984,"created_at":"2012-09-03T02:27:39Z","image":{"url":"http://a.desktopprassets.com/wallpapers/f248a560590227d097b2bb18e4f6cf157ee68b9f/wallpaper-1594743.jpg","thumb":{"url":"http://a.desktopprassets.com/wallpapers/f248a560590227d097b2bb18e4f6cf157ee68b9f/thumb_wallpaper-1594743.jpg","width":296,"height":185},"preview":{"url":"http://a.desktopprassets.com/wallpapers/f248a560590227d097b2bb18e4f6cf157ee68b9f/preview_wallpaper-1594743.jpg","width":960,"height":600}},"height":1200,"width":1920,"review_state":"pending","user_id":8598,"user_count":7,"views_count":7,"palette":[],"url":"http://www.desktoppr.co/wallpapers/165445"},{"id":163322,"bytes":2244356,"created_at":"2012-08-31T01:01:08Z","image":{"url":"http://a.desktopprassets.com/wallpapers/fd12bae1f5add3c3ad94d05926a697dd16fd64d9/6711221023_c15f843cc2_o.jpeg","thumb":{"url":"http://a.desktopprassets.com/wallpapers/fd12bae1f5add3c3ad94d05926a697dd16fd64d9/thumb_6711221023_c15f843cc2_o.jpeg","width":296,"height":185},"preview":{"url":"http://a.desktopprassets.com/wallpapers/fd12bae1f5add3c3ad94d05926a697dd16fd64d9/preview_6711221023_c15f843cc2_o.jpeg","width":960,"height":640}},"height":1856,"width":2784,"review_state":"safe","user_id":6177,"user_count":9,"views_count":73,"palette":[],"url":"http://www.desktoppr.co/wallpapers/163322"},{"id":160437,"bytes":3222859,"created_at":"2012-08-21T14:34:51Z","image":{"url":"http://a.desktopprassets.com/wallpapers/305898d03dacd1c69e4d22dacfa2ee1ffbd2ed85/higherlight.jpg","thumb":{"url":"http://a.desktopprassets.com/wallpapers/305898d03dacd1c69e4d22dacfa2ee1ffbd2ed85/thumb_higherlight.jpg","width":296,"height":185},"preview":{"url":"http://a.desktopprassets.com/wallpapers/305898d03dacd1c69e4d22dacfa2ee1ffbd2ed85/preview_higherlight.jpg","width":960,"height":600}},"height":1800,"width":2880,"review_state":"safe","user_id":10464,"user_count":12,"views_count":5,"palette":[],"url":"http://www.desktoppr.co/wallpapers/160437"},{"id":160435,"bytes":3084507,"created_at":"2012-08-21T14:34:40Z","image":{"url":"http://a.desktopprassets.com/wallpapers/d8c1ad61795c5bc7e1e43bd92e5ae07323c7ccf8/allalong.jpg","thumb":{"url":"http://a.desktopprassets.com/wallpapers/d8c1ad61795c5bc7e1e43bd92e5ae07323c7ccf8/thumb_allalong.jpg","width":296,"height":185},"preview":{"url":"http://a.desktopprassets.com/wallpapers/d8c1ad61795c5bc7e1e43bd92e5ae07323c7ccf8/preview_allalong.jpg","width":960,"height":600}},"height":1800,"width":2880,"review_state":"pending","user_id":10464,"user_count":6,"views_count":5,"palette":[],"url":"http://www.desktoppr.co/wallpapers/160435"},{"id":160313,"bytes":321179,"created_at":"2012-08-21T05:51:03Z","image":{"url":"http://a.desktopprassets.com/wallpapers/71c04d8b684126bd5048a85d679119a40dd1484e/front-wallpaper-168-gabriella-floor-1920x1200.jpeg","thumb":{"url":"http://a.desktopprassets.com/wallpapers/71c04d8b684126bd5048a85d679119a40dd1484e/thumb_front-wallpaper-168-gabriella-floor-1920x1200.jpeg","width":296,"height":185},"preview":{"url":"http://a.desktopprassets.com/wallpapers/71c04d8b684126bd5048a85d679119a40dd1484e/preview_front-wallpaper-168-gabriella-floor-1920x1200.jpeg","width":960,"height":600}},"height":1200,"width":1920,"review_state":"not_safe","user_id":5604,"user_count":12,"views_count":68,"palette":[],"url":"http://www.desktoppr.co/wallpapers/160313"},{"id":145681,"bytes":798994,"created_at":"2012-07-25T00:02:05Z","image":{"url":"http://a.desktopprassets.com/wallpapers/6e5a5fa80e541a6cdda6c181b1d27218f44180a1/room_302_iv_by_ninasever.jpeg","thumb":{"url":"http://a.desktopprassets.com/wallpapers/6e5a5fa80e541a6cdda6c181b1d27218f44180a1/thumb_room_302_iv_by_ninasever.jpeg","width":296,"height":185},"preview":{"url":"http://a.desktopprassets.com/wallpapers/6e5a5fa80e541a6cdda6c181b1d27218f44180a1/preview_room_302_iv_by_ninasever.jpeg","width":960,"height":637}},"height":2590,"width":3900,"review_state":"not_safe","user_id":6177,"user_count":10,"views_count":80,"palette":[],"url":"http://www.desktoppr.co/wallpapers/145681"},{"id":145679,"bytes":818680,"created_at":"2012-07-25T00:02:04Z","image":{"url":"http://a.desktopprassets.com/wallpapers/4c942955387b8ad0e9d168656427b932d7eaf126/wallpaper-1205818.jpeg","thumb":{"url":"http://a.desktopprassets.com/wallpapers/4c942955387b8ad0e9d168656427b932d7eaf126/thumb_wallpaper-1205818.jpeg","width":296,"height":185},"preview":{"url":"http://a.desktopprassets.com/wallpapers/4c942955387b8ad0e9d168656427b932d7eaf126/preview_wallpaper-1205818.jpeg","width":960,"height":600}},"height":1600,"width":2560,"review_state":"not_safe","user_id":6177,"user_count":7,"views_count":82,"palette":[],"url":"http://www.desktoppr.co/wallpapers/145679"},{"id":145674,"bytes":643651,"created_at":"2012-07-24T23:12:30Z","image":{"url":"http://a.desktopprassets.com/wallpapers/3121ee3d77309001606b7b1bbb4279e1ad53794a/wallpaper-1951544.jpeg","thumb":{"url":"http://a.desktopprassets.com/wallpapers/3121ee3d77309001606b7b1bbb4279e1ad53794a/thumb_wallpaper-1951544.jpeg","width":296,"height":185},"preview":{"url":"http://a.desktopprassets.com/wallpapers/3121ee3d77309001606b7b1bbb4279e1ad53794a/preview_wallpaper-1951544.jpeg","width":960,"height":600}},"height":1600,"width":2560,"review_state":"safe","user_id":6177,"user_count":12,"views_count":83,"palette":[],"url":"http://www.desktoppr.co/wallpapers/145674"},{"id":145673,"bytes":460909,"created_at":"2012-07-24T23:12:30Z","image":{"url":"http://a.desktopprassets.com/wallpapers/c435b348e280d3179dfd85df4eb889c172e770b1/wallpaper-2046452.jpeg","thumb":{"url":"http://a.desktopprassets.com/wallpapers/c435b348e280d3179dfd85df4eb889c172e770b1/thumb_wallpaper-2046452.jpeg","width":296,"height":185},"preview":{"url":"http://a.desktopprassets.com/wallpapers/c435b348e280d3179dfd85df4eb889c172e770b1/preview_wallpaper-2046452.jpeg","width":960,"height":600}},"height":1200,"width":1920,"review_state":"safe","user_id":6177,"user_count":15,"views_count":175,"palette":[],"url":"http://www.desktoppr.co/wallpapers/145673"},{"id":143327,"bytes":283306,"created_at":"2012-07-23T02:53:15Z","image":{"url":"http://a.desktopprassets.com/wallpapers/fadf79d83eea02b017a91dac591130622b3c8b25/1920x1200_hand_down_pants_panties_teasing_wallpaper.jpg","thumb":{"url":"http://a.desktopprassets.com/wallpapers/fadf79d83eea02b017a91dac591130622b3c8b25/thumb_1920x1200_hand_down_pants_panties_teasing_wallpaper.jpg","width":296,"height":185},"preview":{"url":"http://a.desktopprassets.com/wallpapers/fadf79d83eea02b017a91dac591130622b3c8b25/preview_1920x1200_hand_down_pants_panties_teasing_wallpaper.jpg","width":960,"height":600}},"height":1200,"width":1920,"review_state":"not_safe","user_id":9153,"user_count":8,"views_count":24,"palette":[],"url":"http://www.desktoppr.co/wallpapers/143327"},{"id":136730,"bytes":514281,"created_at":"2012-07-19T05:12:31Z","image":{"url":"http://a.desktopprassets.com/wallpapers/ba412833e43e0a8827ceafa4b633b40eb34bd6ea/wallpaper-2072782.jpeg","thumb":{"url":"http://a.desktopprassets.com/wallpapers/ba412833e43e0a8827ceafa4b633b40eb34bd6ea/thumb_wallpaper-2072782.jpeg","width":296,"height":185},"preview":{"url":"http://a.desktopprassets.com/wallpapers/ba412833e43e0a8827ceafa4b633b40eb34bd6ea/preview_wallpaper-2072782.jpeg","width":960,"height":600}},"height":1200,"width":1920,"review_state":"not_safe","user_id":6177,"user_count":5,"views_count":41,"palette":[],"url":"http://www.desktoppr.co/wallpapers/136730"},{"id":133913,"bytes":751347,"created_at":"2012-07-16T02:22:28Z","image":{"url":"http://a.desktopprassets.com/wallpapers/925e309cac6fb31d2531c4648a12b07f3a0efb2e/1340303186454.jpg","thumb":{"url":"http://a.desktopprassets.com/wallpapers/925e309cac6fb31d2531c4648a12b07f3a0efb2e/thumb_1340303186454.jpg","width":296,"height":185},"preview":{"url":"http://a.desktopprassets.com/wallpapers/925e309cac6fb31d2531c4648a12b07f3a0efb2e/preview_1340303186454.jpg","width":960,"height":600}},"height":1600,"width":2560,"review_state":"pending","user_id":4776,"user_count":4,"views_count":5,"palette":[],"url":"http://www.desktoppr.co/wallpapers/133913"},{"id":126931,"bytes":1335014,"created_at":"2012-07-11T00:33:45Z","image":{"url":"http://a.desktopprassets.com/wallpapers/9aa9d8f79a2c30dca0f5174d6dfba104f984aa7a/7157191979_914c11d944_k.jpg","thumb":{"url":"http://a.desktopprassets.com/wallpapers/9aa9d8f79a2c30dca0f5174d6dfba104f984aa7a/thumb_7157191979_914c11d944_k.jpg","width":296,"height":185},"preview":{"url":"http://a.desktopprassets.com/wallpapers/9aa9d8f79a2c30dca0f5174d6dfba104f984aa7a/preview_7157191979_914c11d944_k.jpg","width":960,"height":642}},"height":1371,"width":2048,"review_state":"safe","user_id":9244,"user_count":19,"views_count":22,"palette":[],"url":"http://www.desktoppr.co/wallpapers/126931"},{"id":123115,"bytes":955942,"created_at":"2012-07-10T01:52:38Z","image":{"url":"http://a.desktopprassets.com/wallpapers/9dc7744e91a26f1f58d2e873c0611f29547012d3/wallpaper-2040003.jpeg","thumb":{"url":"http://a.desktopprassets.com/wallpapers/9dc7744e91a26f1f58d2e873c0611f29547012d3/thumb_wallpaper-2040003.jpeg","width":296,"height":185},"preview":{"url":"http://a.desktopprassets.com/wallpapers/9dc7744e91a26f1f58d2e873c0611f29547012d3/preview_wallpaper-2040003.jpeg","width":960,"height":600}},"height":1600,"width":2560,"review_state":"pending","user_id":6177,"user_count":4,"views_count":4,"palette":[],"url":"http://www.desktoppr.co/wallpapers/123115"},{"id":123114,"bytes":652038,"created_at":"2012-07-10T01:52:35Z","image":{"url":"http://a.desktopprassets.com/wallpapers/5875d91c8068183bb62ca7d5f566a8ff0f2c6cf8/wallpaper-2021004.jpeg","thumb":{"url":"http://a.desktopprassets.com/wallpapers/5875d91c8068183bb62ca7d5f566a8ff0f2c6cf8/thumb_wallpaper-2021004.jpeg","width":296,"height":185},"preview":{"url":"http://a.desktopprassets.com/wallpapers/5875d91c8068183bb62ca7d5f566a8ff0f2c6cf8/preview_wallpaper-2021004.jpeg","width":960,"height":600}},"height":1600,"width":2560,"review_state":"pending","user_id":6177,"user_count":6,"views_count":3,"palette":[],"url":"http://www.desktoppr.co/wallpapers/123114"},{"id":123113,"bytes":1814030,"created_at":"2012-07-10T01:52:34Z","image":{"url":"http://a.desktopprassets.com/wallpapers/548f6f54eb6e4f2cb2ad79f7249b64d1146576f2/wallpaper-1332340.jpeg","thumb":{"url":"http://a.desktopprassets.com/wallpapers/548f6f54eb6e4f2cb2ad79f7249b64d1146576f2/thumb_wallpaper-1332340.jpeg","width":296,"height":185},"preview":{"url":"http://a.desktopprassets.com/wallpapers/548f6f54eb6e4f2cb2ad79f7249b64d1146576f2/preview_wallpaper-1332340.jpeg","width":960,"height":540}},"height":1440,"width":2560,"review_state":"pending","user_id":6177,"user_count":1,"views_count":3,"palette":[],"url":"http://www.desktoppr.co/wallpapers/123113"},{"id":123112,"bytes":536998,"created_at":"2012-07-10T01:52:33Z","image":{"url":"http://a.desktopprassets.com/wallpapers/83bf11c2952d7a14bf6fde899bf77a2b7e1458e2/wallpaper-1754976.jpeg","thumb":{"url":"http://a.desktopprassets.com/wallpapers/83bf11c2952d7a14bf6fde899bf77a2b7e1458e2/thumb_wallpaper-1754976.jpeg","width":296,"height":185},"preview":{"url":"http://a.desktopprassets.com/wallpapers/83bf11c2952d7a14bf6fde899bf77a2b7e1458e2/preview_wallpaper-1754976.jpeg","width":960,"height":600}},"height":1600,"width":2560,"review_state":"pending","user_id":6177,"user_count":6,"views_count":21,"palette":[],"url":"http://www.desktoppr.co/wallpapers/123112"},{"id":123111,"bytes":1092651,"created_at":"2012-07-10T01:52:32Z","image":{"url":"http://a.desktopprassets.com/wallpapers/0977cd2d2f4d22a67da4a284d6b280cac545ad42/wallpaper-814991.jpeg","thumb":{"url":"http://a.desktopprassets.com/wallpapers/0977cd2d2f4d22a67da4a284d6b280cac545ad42/thumb_wallpaper-814991.jpeg","width":296,"height":185},"preview":{"url":"http://a.desktopprassets.com/wallpapers/0977cd2d2f4d22a67da4a284d6b280cac545ad42/preview_wallpaper-814991.jpeg","width":960,"height":600}},"height":1600,"width":2560,"review_state":"pending","user_id":6177,"user_count":4,"views_count":20,"palette":[],"url":"http://www.desktoppr.co/wallpapers/123111"},{"id":123110,"bytes":788719,"created_at":"2012-07-10T01:52:31Z","image":{"url":"http://a.desktopprassets.com/wallpapers/e30bf8ccc7e3b3a4a6ac0a7bd48a89feabf35633/wallpaper-1703774.jpeg","thumb":{"url":"http://a.desktopprassets.com/wallpapers/e30bf8ccc7e3b3a4a6ac0a7bd48a89feabf35633/thumb_wallpaper-1703774.jpeg","width":296,"height":185},"preview":{"url":"http://a.desktopprassets.com/wallpapers/e30bf8ccc7e3b3a4a6ac0a7bd48a89feabf35633/preview_wallpaper-1703774.jpeg","width":960,"height":600}},"height":1600,"width":2560,"review_state":"pending","user_id":6177,"user_count":3,"views_count":2,"palette":[],"url":"http://www.desktoppr.co/wallpapers/123110"}],"count":20,"pagination":{"current":1,"previous":null,"next":2,"per_page":20,"pages":3,"count":41}}'
95
+ http_version:
96
+ recorded_at: Tue, 04 Sep 2012 21:41:01 GMT
97
+ - request:
98
+ method: get
99
+ uri: https://api.desktoppr.co/1/wallpapers/random
100
+ body:
101
+ encoding: US-ASCII
102
+ string: ''
103
+ headers: {}
104
+ response:
105
+ status:
106
+ code: 200
107
+ message: OK
108
+ headers:
109
+ Server:
110
+ - nginx/1.3.3
111
+ Date:
112
+ - Tue, 04 Sep 2012 22:27:34 GMT
113
+ Content-Type:
114
+ - application/json; charset=utf-8
115
+ Content-Length:
116
+ - '665'
117
+ Connection:
118
+ - keep-alive
119
+ Status:
120
+ - 200 OK
121
+ Strict-Transport-Security:
122
+ - max-age=31536000
123
+ Access-Control-Allow-Methods:
124
+ - POST, GET, PUT, DELETE, OPTIONS
125
+ Access-Control-Max-Age:
126
+ - '1000'
127
+ X-Ua-Compatible:
128
+ - IE=Edge,chrome=1
129
+ Etag:
130
+ - ! '"53d84eaad7cd7aef01282495d66ee3fe"'
131
+ Cache-Control:
132
+ - max-age=0, private, must-revalidate
133
+ X-Request-Id:
134
+ - f88888a63e80c40e27ee0b9faabe642c
135
+ X-Runtime:
136
+ - '0.046660'
137
+ X-Rack-Cache:
138
+ - miss
139
+ body:
140
+ encoding: US-ASCII
141
+ string: ! '{"response":{"id":124996,"bytes":1215034,"created_at":"2012-07-10T15:01:50Z","image":{"url":"http://a.desktopprassets.com/wallpapers/3bd374260ca1887a39faf9c1c8564c0f0c399f6d/sarahmichelle1080.jpg","thumb":{"url":"http://a.desktopprassets.com/wallpapers/3bd374260ca1887a39faf9c1c8564c0f0c399f6d/thumb_sarahmichelle1080.jpg","width":296,"height":185},"preview":{"url":"http://a.desktopprassets.com/wallpapers/3bd374260ca1887a39faf9c1c8564c0f0c399f6d/preview_sarahmichelle1080.jpg","width":960,"height":540}},"height":1080,"width":1920,"review_state":"safe","user_id":9153,"user_count":1,"views_count":8,"palette":[],"url":"http://www.desktoppr.co/wallpapers/124996"}}'
142
+ http_version:
143
+ recorded_at: Tue, 04 Sep 2012 22:27:41 GMT
144
+ - request:
145
+ method: get
146
+ uri: https://api.desktoppr.co/1/users/willrax/wallpapers/random
147
+ body:
148
+ encoding: US-ASCII
149
+ string: ''
150
+ headers: {}
151
+ response:
152
+ status:
153
+ code: 200
154
+ message: OK
155
+ headers:
156
+ Server:
157
+ - nginx/1.3.3
158
+ Date:
159
+ - Tue, 04 Sep 2012 22:27:36 GMT
160
+ Content-Type:
161
+ - application/json; charset=utf-8
162
+ Content-Length:
163
+ - '673'
164
+ Connection:
165
+ - keep-alive
166
+ Status:
167
+ - 200 OK
168
+ Strict-Transport-Security:
169
+ - max-age=31536000
170
+ Access-Control-Allow-Methods:
171
+ - POST, GET, PUT, DELETE, OPTIONS
172
+ Access-Control-Max-Age:
173
+ - '1000'
174
+ X-Ua-Compatible:
175
+ - IE=Edge,chrome=1
176
+ Etag:
177
+ - ! '"74f8532c9a2c0d531f88b3d52dae1b80"'
178
+ Cache-Control:
179
+ - max-age=0, private, must-revalidate
180
+ X-Request-Id:
181
+ - 25a7592affb99faae3494c65023706db
182
+ X-Runtime:
183
+ - '0.031496'
184
+ X-Rack-Cache:
185
+ - miss
186
+ body:
187
+ encoding: US-ASCII
188
+ string: ! '{"response":{"id":227,"bytes":150843,"created_at":"2012-04-11T10:27:31Z","image":{"url":"http://a.desktopprassets.com/wallpapers/f866f4363a8e0cc24b8e8ccc00818c2470a32bfd/_1440x900_wallpaper-1.jpeg","thumb":{"url":"http://a.desktopprassets.com/wallpapers/f866f4363a8e0cc24b8e8ccc00818c2470a32bfd/thumb__1440x900_wallpaper-1.jpeg","width":296,"height":185},"preview":{"url":"http://a.desktopprassets.com/wallpapers/f866f4363a8e0cc24b8e8ccc00818c2470a32bfd/preview__1440x900_wallpaper-1.jpeg","width":960,"height":600}},"height":900,"width":1440,"review_state":"safe","user_id":1,"user_count":117,"views_count":465,"palette":[],"url":"http://www.desktoppr.co/wallpapers/227"}}'
189
+ http_version:
190
+ recorded_at: Tue, 04 Sep 2012 22:27:43 GMT
191
+ - request:
192
+ method: get
193
+ uri: https://api.desktoppr.co/1/users/willrax/wallpapers?page=1
194
+ body:
195
+ encoding: US-ASCII
196
+ string: ''
197
+ headers: {}
198
+ response:
199
+ status:
200
+ code: 200
201
+ message: OK
202
+ headers:
203
+ Server:
204
+ - nginx/1.3.3
205
+ Date:
206
+ - Tue, 04 Sep 2012 22:27:48 GMT
207
+ Content-Type:
208
+ - application/json; charset=utf-8
209
+ Content-Length:
210
+ - '13366'
211
+ Connection:
212
+ - keep-alive
213
+ Status:
214
+ - 200 OK
215
+ Strict-Transport-Security:
216
+ - max-age=31536000
217
+ Access-Control-Allow-Methods:
218
+ - POST, GET, PUT, DELETE, OPTIONS
219
+ Access-Control-Max-Age:
220
+ - '1000'
221
+ X-Ua-Compatible:
222
+ - IE=Edge,chrome=1
223
+ Etag:
224
+ - ! '"af48c9e2b1ab31f2040edd2bb638e208"'
225
+ Cache-Control:
226
+ - max-age=0, private, must-revalidate
227
+ X-Request-Id:
228
+ - 28d79a658dc02730e01aefab23d39e3c
229
+ X-Runtime:
230
+ - '0.064730'
231
+ X-Rack-Cache:
232
+ - miss
233
+ body:
234
+ encoding: US-ASCII
235
+ string: ! '{"response":[{"id":149218,"bytes":514537,"created_at":"2012-08-01T21:33:38Z","image":{"url":"http://a.desktopprassets.com/wallpapers/a5cb831c5b9b95845c1d50491950c62f45b14a50/wallpaper-59944.jpg","thumb":{"url":"http://a.desktopprassets.com/wallpapers/a5cb831c5b9b95845c1d50491950c62f45b14a50/thumb_wallpaper-59944.jpg","width":296,"height":185},"preview":{"url":"http://a.desktopprassets.com/wallpapers/a5cb831c5b9b95845c1d50491950c62f45b14a50/preview_wallpaper-59944.jpg","width":960,"height":600}},"height":1200,"width":1920,"review_state":"safe","user_id":5355,"user_count":40,"views_count":31,"palette":[],"url":"http://www.desktoppr.co/wallpapers/149218"},{"id":149217,"bytes":232424,"created_at":"2012-08-01T21:33:30Z","image":{"url":"http://a.desktopprassets.com/wallpapers/524c355e103b9089dd35ca5b62440c164dcc624c/wallpaper-98739.png","thumb":{"url":"http://a.desktopprassets.com/wallpapers/524c355e103b9089dd35ca5b62440c164dcc624c/thumb_wallpaper-98739.png","width":296,"height":185},"preview":{"url":"http://a.desktopprassets.com/wallpapers/524c355e103b9089dd35ca5b62440c164dcc624c/preview_wallpaper-98739.png","width":960,"height":600}},"height":1200,"width":1920,"review_state":"safe","user_id":5355,"user_count":51,"views_count":91,"palette":[],"url":"http://www.desktoppr.co/wallpapers/149217"},{"id":149193,"bytes":558114,"created_at":"2012-08-01T18:59:07Z","image":{"url":"http://a.desktopprassets.com/wallpapers/6702d9b541b79ba52d8706a4ae2bd0db43b62436/aeruz.jpg","thumb":{"url":"http://a.desktopprassets.com/wallpapers/6702d9b541b79ba52d8706a4ae2bd0db43b62436/thumb_aeruz.jpg","width":296,"height":185},"preview":{"url":"http://a.desktopprassets.com/wallpapers/6702d9b541b79ba52d8706a4ae2bd0db43b62436/preview_aeruz.jpg","width":960,"height":540}},"height":1440,"width":2560,"review_state":"safe","user_id":5040,"user_count":44,"views_count":36,"palette":[],"url":"http://www.desktoppr.co/wallpapers/149193"},{"id":149105,"bytes":79527,"created_at":"2012-08-01T14:43:19Z","image":{"url":"http://a.desktopprassets.com/wallpapers/67653262a8e11cf475f41892ce39b34eada7fcff/wallpaper-642217.jpg","thumb":{"url":"http://a.desktopprassets.com/wallpapers/67653262a8e11cf475f41892ce39b34eada7fcff/thumb_wallpaper-642217.jpg","width":296,"height":185},"preview":{"url":"http://a.desktopprassets.com/wallpapers/67653262a8e11cf475f41892ce39b34eada7fcff/preview_wallpaper-642217.jpg","width":960,"height":540}},"height":1080,"width":1920,"review_state":"safe","user_id":8338,"user_count":33,"views_count":53,"palette":[],"url":"http://www.desktoppr.co/wallpapers/149105"},{"id":148690,"bytes":97891,"created_at":"2012-07-31T14:23:21Z","image":{"url":"http://a.desktopprassets.com/wallpapers/15f015ff0b0dbba86fc6304114ba3f7291f42d57/33ciy_-_imgur.jpg","thumb":{"url":"http://a.desktopprassets.com/wallpapers/15f015ff0b0dbba86fc6304114ba3f7291f42d57/thumb_33ciy_-_imgur.jpg","width":296,"height":185},"preview":{"url":"http://a.desktopprassets.com/wallpapers/15f015ff0b0dbba86fc6304114ba3f7291f42d57/preview_33ciy_-_imgur.jpg","width":960,"height":540}},"height":1080,"width":1920,"review_state":"safe","user_id":5040,"user_count":39,"views_count":67,"palette":[],"url":"http://www.desktoppr.co/wallpapers/148690"},{"id":148544,"bytes":2343947,"created_at":"2012-07-31T04:33:35Z","image":{"url":"http://a.desktopprassets.com/wallpapers/c72aa80c06e094c32cd34f092b815deeaccd934d/101105-f-8006m-777.jpg","thumb":{"url":"http://a.desktopprassets.com/wallpapers/c72aa80c06e094c32cd34f092b815deeaccd934d/thumb_101105-f-8006m-777.jpg","width":296,"height":185},"preview":{"url":"http://a.desktopprassets.com/wallpapers/c72aa80c06e094c32cd34f092b815deeaccd934d/preview_101105-f-8006m-777.jpg","width":960,"height":612}},"height":1340,"width":2100,"review_state":"safe","user_id":7431,"user_count":16,"views_count":31,"palette":[],"url":"http://www.desktoppr.co/wallpapers/148544"},{"id":148529,"bytes":447323,"created_at":"2012-07-31T03:38:51Z","image":{"url":"http://a.desktopprassets.com/wallpapers/ceafcf8e3adbb17a40177287f762991ba7b025f4/superman_desktop.jpg","thumb":{"url":"http://a.desktopprassets.com/wallpapers/ceafcf8e3adbb17a40177287f762991ba7b025f4/thumb_superman_desktop.jpg","width":296,"height":185},"preview":{"url":"http://a.desktopprassets.com/wallpapers/ceafcf8e3adbb17a40177287f762991ba7b025f4/preview_superman_desktop.jpg","width":960,"height":600}},"height":1050,"width":1680,"review_state":"safe","user_id":10144,"user_count":19,"views_count":39,"palette":[],"url":"http://www.desktoppr.co/wallpapers/148529"},{"id":148524,"bytes":84020,"created_at":"2012-07-31T03:37:54Z","image":{"url":"http://a.desktopprassets.com/wallpapers/f142e475d9d153c0d6006d51412053db4eeea5fb/the-dark-knight.png","thumb":{"url":"http://a.desktopprassets.com/wallpapers/f142e475d9d153c0d6006d51412053db4eeea5fb/thumb_the-dark-knight.png","width":296,"height":185},"preview":{"url":"http://a.desktopprassets.com/wallpapers/f142e475d9d153c0d6006d51412053db4eeea5fb/preview_the-dark-knight.png","width":960,"height":600}},"height":1600,"width":2560,"review_state":"safe","user_id":10144,"user_count":30,"views_count":31,"palette":[],"url":"http://www.desktoppr.co/wallpapers/148524"},{"id":148500,"bytes":143499,"created_at":"2012-07-31T01:54:29Z","image":{"url":"http://a.desktopprassets.com/wallpapers/71637bedcc49c3dfab376a1533b75a47c73a548e/luwvt_-_imgur.jpg","thumb":{"url":"http://a.desktopprassets.com/wallpapers/71637bedcc49c3dfab376a1533b75a47c73a548e/thumb_luwvt_-_imgur.jpg","width":296,"height":185},"preview":{"url":"http://a.desktopprassets.com/wallpapers/71637bedcc49c3dfab376a1533b75a47c73a548e/preview_luwvt_-_imgur.jpg","width":960,"height":540}},"height":1080,"width":1920,"review_state":"safe","user_id":7693,"user_count":45,"views_count":39,"palette":[],"url":"http://www.desktoppr.co/wallpapers/148500"},{"id":147856,"bytes":1792916,"created_at":"2012-07-30T06:13:38Z","image":{"url":"http://a.desktopprassets.com/wallpapers/8fc972d0b35e162bd1206b39e5f8bb263ed8394b/iron_man_movies_rain_comics_marvel_comics_1920x1080_wallpaper_high_resolution_wallpaper_2560x1440_www.wallpaperfo.com.jpg","thumb":{"url":"http://a.desktopprassets.com/wallpapers/8fc972d0b35e162bd1206b39e5f8bb263ed8394b/thumb_iron_man_movies_rain_comics_marvel_comics_1920x1080_wallpaper_high_resolution_wallpaper_2560x1440_www.wallpaperfo.com.jpg","width":296,"height":185},"preview":{"url":"http://a.desktopprassets.com/wallpapers/8fc972d0b35e162bd1206b39e5f8bb263ed8394b/preview_iron_man_movies_rain_comics_marvel_comics_1920x1080_wallpaper_high_resolution_wallpaper_2560x1440_www.wallpaperfo.com.jpg","width":960,"height":540}},"height":1440,"width":2560,"review_state":"safe","user_id":5355,"user_count":37,"views_count":35,"palette":[],"url":"http://www.desktoppr.co/wallpapers/147856"},{"id":147803,"bytes":368260,"created_at":"2012-07-30T05:44:22Z","image":{"url":"http://a.desktopprassets.com/wallpapers/e8c202238a13da6dd059bd4e2c53f1c99e7e992d/foryouyouyou_success_is_not_fatal_1610.jpg","thumb":{"url":"http://a.desktopprassets.com/wallpapers/e8c202238a13da6dd059bd4e2c53f1c99e7e992d/thumb_foryouyouyou_success_is_not_fatal_1610.jpg","width":296,"height":185},"preview":{"url":"http://a.desktopprassets.com/wallpapers/e8c202238a13da6dd059bd4e2c53f1c99e7e992d/preview_foryouyouyou_success_is_not_fatal_1610.jpg","width":960,"height":600}},"height":900,"width":1440,"review_state":"safe","user_id":8439,"user_count":21,"views_count":44,"palette":[],"url":"http://www.desktoppr.co/wallpapers/147803"},{"id":147796,"bytes":2745956,"created_at":"2012-07-30T05:40:23Z","image":{"url":"http://a.desktopprassets.com/wallpapers/077b183af8328eb56d7c426a5a88895b57ddfa4e/kong_hong_1610.jpg","thumb":{"url":"http://a.desktopprassets.com/wallpapers/077b183af8328eb56d7c426a5a88895b57ddfa4e/thumb_kong_hong_1610.jpg","width":296,"height":185},"preview":{"url":"http://a.desktopprassets.com/wallpapers/077b183af8328eb56d7c426a5a88895b57ddfa4e/preview_kong_hong_1610.jpg","width":960,"height":600}},"height":1440,"width":2304,"review_state":"safe","user_id":18,"user_count":13,"views_count":15,"palette":[],"url":"http://www.desktoppr.co/wallpapers/147796"},{"id":147783,"bytes":1125727,"created_at":"2012-07-30T00:22:25Z","image":{"url":"http://a.desktopprassets.com/wallpapers/728d780d402d359880b4e1b34f7a926edff06725/wallpaper-805092.jpg","thumb":{"url":"http://a.desktopprassets.com/wallpapers/728d780d402d359880b4e1b34f7a926edff06725/thumb_wallpaper-805092.jpg","width":296,"height":185},"preview":{"url":"http://a.desktopprassets.com/wallpapers/728d780d402d359880b4e1b34f7a926edff06725/preview_wallpaper-805092.jpg","width":960,"height":540}},"height":1080,"width":1920,"review_state":"safe","user_id":8356,"user_count":16,"views_count":18,"palette":[],"url":"http://www.desktoppr.co/wallpapers/147783"},{"id":147690,"bytes":1478939,"created_at":"2012-07-29T18:05:10Z","image":{"url":"http://a.desktopprassets.com/wallpapers/1803de11798c0ba28d81840f64449ba9ad1a677d/02098_dawndeparture_1920x1080.jpg","thumb":{"url":"http://a.desktopprassets.com/wallpapers/1803de11798c0ba28d81840f64449ba9ad1a677d/thumb_02098_dawndeparture_1920x1080.jpg","width":296,"height":185},"preview":{"url":"http://a.desktopprassets.com/wallpapers/1803de11798c0ba28d81840f64449ba9ad1a677d/preview_02098_dawndeparture_1920x1080.jpg","width":960,"height":540}},"height":1080,"width":1920,"review_state":"safe","user_id":885,"user_count":9,"views_count":16,"palette":[],"url":"http://www.desktoppr.co/wallpapers/147690"},{"id":147656,"bytes":2477932,"created_at":"2012-07-29T16:43:10Z","image":{"url":"http://a.desktopprassets.com/wallpapers/48ade621125c3c6516228f91d046061ee51385a5/m5.jpg","thumb":{"url":"http://a.desktopprassets.com/wallpapers/48ade621125c3c6516228f91d046061ee51385a5/thumb_m5.jpg","width":296,"height":185},"preview":{"url":"http://a.desktopprassets.com/wallpapers/48ade621125c3c6516228f91d046061ee51385a5/preview_m5.jpg","width":960,"height":960}},"height":3482,"width":3482,"review_state":"safe","user_id":192,"user_count":35,"views_count":40,"palette":[],"url":"http://www.desktoppr.co/wallpapers/147656"},{"id":147496,"bytes":1027762,"created_at":"2012-07-28T22:09:57Z","image":{"url":"http://a.desktopprassets.com/wallpapers/90090ea346677b223f46ac50bccb135fd648e39e/image__5_.jpg","thumb":{"url":"http://a.desktopprassets.com/wallpapers/90090ea346677b223f46ac50bccb135fd648e39e/thumb_image__5_.jpg","width":296,"height":185},"preview":{"url":"http://a.desktopprassets.com/wallpapers/90090ea346677b223f46ac50bccb135fd648e39e/preview_image__5_.jpg","width":960,"height":600}},"height":1050,"width":1680,"review_state":"safe","user_id":6373,"user_count":32,"views_count":43,"palette":[],"url":"http://www.desktoppr.co/wallpapers/147496"},{"id":147449,"bytes":2155585,"created_at":"2012-07-28T18:11:04Z","image":{"url":"http://a.desktopprassets.com/wallpapers/ad6bd31f3559340cb22dbc665f7590d7c337e560/wallpaper-661820.jpg","thumb":{"url":"http://a.desktopprassets.com/wallpapers/ad6bd31f3559340cb22dbc665f7590d7c337e560/thumb_wallpaper-661820.jpg","width":296,"height":185},"preview":{"url":"http://a.desktopprassets.com/wallpapers/ad6bd31f3559340cb22dbc665f7590d7c337e560/preview_wallpaper-661820.jpg","width":960,"height":637}},"height":2848,"width":4288,"review_state":"safe","user_id":3001,"user_count":51,"views_count":47,"palette":[],"url":"http://www.desktoppr.co/wallpapers/147449"},{"id":146902,"bytes":1700033,"created_at":"2012-07-27T18:05:11Z","image":{"url":"http://a.desktopprassets.com/wallpapers/610f0f414bd2bf65dd1b521403fc41f711ee8bcc/wallpaper_-_021.jpg","thumb":{"url":"http://a.desktopprassets.com/wallpapers/610f0f414bd2bf65dd1b521403fc41f711ee8bcc/thumb_wallpaper_-_021.jpg","width":296,"height":185},"preview":{"url":"http://a.desktopprassets.com/wallpapers/610f0f414bd2bf65dd1b521403fc41f711ee8bcc/preview_wallpaper_-_021.jpg","width":960,"height":641}},"height":1636,"width":2450,"review_state":"safe","user_id":10067,"user_count":60,"views_count":44,"palette":[],"url":"http://www.desktoppr.co/wallpapers/146902"},{"id":146632,"bytes":806051,"created_at":"2012-07-27T10:31:32Z","image":{"url":"http://a.desktopprassets.com/wallpapers/80b0072fd2cd944ebe2927ac3e78248a963cc825/2100478.jpg","thumb":{"url":"http://a.desktopprassets.com/wallpapers/80b0072fd2cd944ebe2927ac3e78248a963cc825/thumb_2100478.jpg","width":296,"height":185},"preview":{"url":"http://a.desktopprassets.com/wallpapers/80b0072fd2cd944ebe2927ac3e78248a963cc825/preview_2100478.jpg","width":960,"height":540}},"height":1080,"width":1920,"review_state":"safe","user_id":1845,"user_count":29,"views_count":64,"palette":[],"url":"http://www.desktoppr.co/wallpapers/146632"},{"id":146575,"bytes":1345392,"created_at":"2012-07-27T00:32:15Z","image":{"url":"http://a.desktopprassets.com/wallpapers/31d6a419b37fe8abfc1dffa2f4313fa230ea079d/batman1.jpg","thumb":{"url":"http://a.desktopprassets.com/wallpapers/31d6a419b37fe8abfc1dffa2f4313fa230ea079d/thumb_batman1.jpg","width":296,"height":185},"preview":{"url":"http://a.desktopprassets.com/wallpapers/31d6a419b37fe8abfc1dffa2f4313fa230ea079d/preview_batman1.jpg","width":960,"height":600}},"height":1600,"width":2560,"review_state":"safe","user_id":7888,"user_count":52,"views_count":36,"palette":[],"url":"http://www.desktoppr.co/wallpapers/146575"}],"count":20,"pagination":{"current":1,"previous":null,"next":2,"per_page":20,"pages":12,"count":221}}'
236
+ http_version:
237
+ recorded_at: Tue, 04 Sep 2012 22:27:55 GMT
238
+ - request:
239
+ method: get
240
+ uri: https://api.desktoppr.co/1/wallpapers
241
+ body:
242
+ encoding: US-ASCII
243
+ string: ''
244
+ headers: {}
245
+ response:
246
+ status:
247
+ code: 200
248
+ message: OK
249
+ headers:
250
+ Server:
251
+ - nginx/1.3.3
252
+ Date:
253
+ - Wed, 05 Sep 2012 00:02:20 GMT
254
+ Content-Type:
255
+ - application/json; charset=utf-8
256
+ Content-Length:
257
+ - '13400'
258
+ Connection:
259
+ - keep-alive
260
+ Status:
261
+ - 200 OK
262
+ Strict-Transport-Security:
263
+ - max-age=31536000
264
+ Access-Control-Allow-Methods:
265
+ - POST, GET, PUT, DELETE, OPTIONS
266
+ Access-Control-Max-Age:
267
+ - '1000'
268
+ X-Ua-Compatible:
269
+ - IE=Edge,chrome=1
270
+ Etag:
271
+ - ! '"bfdba0574ec52956c42c8915551429ac"'
272
+ Cache-Control:
273
+ - max-age=0, private, must-revalidate
274
+ X-Request-Id:
275
+ - 956ea15948473fa8a0c21e50c05a0d9b
276
+ X-Runtime:
277
+ - '0.067902'
278
+ X-Rack-Cache:
279
+ - miss
280
+ body:
281
+ encoding: US-ASCII
282
+ string: ! '{"response":[{"id":1046,"bytes":1360008,"created_at":"2012-05-22T20:56:34Z","image":{"url":"http://a.desktopprassets.com/wallpapers/30e1edcbe3da8b2b1c4288fe1d5ed747420cd094/screenfeeder.png","thumb":{"url":"http://a.desktopprassets.com/wallpapers/30e1edcbe3da8b2b1c4288fe1d5ed747420cd094/thumb_screenfeeder.png","width":296,"height":185},"preview":{"url":"http://a.desktopprassets.com/wallpapers/30e1edcbe3da8b2b1c4288fe1d5ed747420cd094/preview_screenfeeder.png","width":960,"height":540}},"height":1080,"width":1920,"review_state":"safe","user_id":146,"user_count":13,"views_count":96,"palette":["040404","222222","2A2B34","2B3434","373635"],"url":"http://www.desktoppr.co/wallpapers/1046"},{"id":30705,"bytes":4079397,"created_at":"2012-06-18T22:00:06Z","image":{"url":"http://a.desktopprassets.com/wallpapers/8a4f23ad71649dfead3a538ce90a8a148436a103/polarlicht_2.jpg","thumb":{"url":"http://a.desktopprassets.com/wallpapers/8a4f23ad71649dfead3a538ce90a8a148436a103/thumb_polarlicht_2.jpg","width":296,"height":185},"preview":{"url":"http://a.desktopprassets.com/wallpapers/8a4f23ad71649dfead3a538ce90a8a148436a103/preview_polarlicht_2.jpg","width":960,"height":625}},"height":1960,"width":3008,"review_state":"safe","user_id":2964,"user_count":24,"views_count":31,"palette":["1D1820","526580","97D8C1","A7A8CB","C2C7D3"],"url":"http://www.desktoppr.co/wallpapers/30705"},{"id":629,"bytes":94123,"created_at":"2012-04-28T08:23:58Z","image":{"url":"http://a.desktopprassets.com/wallpapers/4c6ab7dd892080b7fb9dbf70212711bfaf6b4a9f/sunny_tropics_2600.jpeg","thumb":{"url":"http://a.desktopprassets.com/wallpapers/4c6ab7dd892080b7fb9dbf70212711bfaf6b4a9f/thumb_sunny_tropics_2600.jpeg","width":296,"height":185},"preview":{"url":"http://a.desktopprassets.com/wallpapers/4c6ab7dd892080b7fb9dbf70212711bfaf6b4a9f/preview_sunny_tropics_2600.jpeg","width":960,"height":720}},"height":1200,"width":1600,"review_state":"safe","user_id":14,"user_count":6,"views_count":23,"palette":["1E8DC1","576F41","6C6C74","86C6E2","F3F4EA"],"url":"http://www.desktoppr.co/wallpapers/629"},{"id":31361,"bytes":3267882,"created_at":"2012-06-19T00:06:34Z","image":{"url":"http://a.desktopprassets.com/wallpapers/247fdeff03ae05a5ed84f4dc0c6cab4286ca2a21/91.jpg","thumb":{"url":"http://a.desktopprassets.com/wallpapers/247fdeff03ae05a5ed84f4dc0c6cab4286ca2a21/thumb_91.jpg","width":296,"height":185},"preview":{"url":"http://a.desktopprassets.com/wallpapers/247fdeff03ae05a5ed84f4dc0c6cab4286ca2a21/preview_91.jpg","width":960,"height":600}},"height":1200,"width":1920,"review_state":"safe","user_id":3349,"user_count":8,"views_count":11,"palette":["2A3120","887964","96929E","97B386","DFB79B"],"url":"http://www.desktoppr.co/wallpapers/31361"},{"id":1730,"bytes":22831,"created_at":"2012-06-01T13:58:04Z","image":{"url":"http://a.desktopprassets.com/wallpapers/16884f60eb89288bd9e06e9bb0ca6a69fe8c6065/lightsaber.png","thumb":{"url":"http://a.desktopprassets.com/wallpapers/16884f60eb89288bd9e06e9bb0ca6a69fe8c6065/thumb_lightsaber.png","width":296,"height":185},"preview":{"url":"http://a.desktopprassets.com/wallpapers/16884f60eb89288bd9e06e9bb0ca6a69fe8c6065/preview_lightsaber.png","width":960,"height":600}},"height":1600,"width":2560,"review_state":"safe","user_id":205,"user_count":7,"views_count":9,"palette":["539583","846025","84C464","B5F9FA","FBA404"],"url":"http://www.desktoppr.co/wallpapers/1730"},{"id":136461,"bytes":192958,"created_at":"2012-07-18T21:08:31Z","image":{"url":"http://a.desktopprassets.com/wallpapers/af125af24a25851d325b7d94baa7fa8e1c70ea50/okx5e_-_imgur.jpg","thumb":{"url":"http://a.desktopprassets.com/wallpapers/af125af24a25851d325b7d94baa7fa8e1c70ea50/thumb_okx5e_-_imgur.jpg","width":296,"height":185},"preview":{"url":"http://a.desktopprassets.com/wallpapers/af125af24a25851d325b7d94baa7fa8e1c70ea50/preview_okx5e_-_imgur.jpg","width":960,"height":540}},"height":1080,"width":1920,"review_state":"safe","user_id":5040,"user_count":18,"views_count":16,"palette":[],"url":"http://www.desktoppr.co/wallpapers/136461"},{"id":55476,"bytes":556272,"created_at":"2012-06-22T23:22:54Z","image":{"url":"http://a.desktopprassets.com/wallpapers/b397b9644bb02f0974a23048308eddfb8f0cde6b/038101__15_.jpg","thumb":{"url":"http://a.desktopprassets.com/wallpapers/b397b9644bb02f0974a23048308eddfb8f0cde6b/thumb_038101__15_.jpg","width":296,"height":185},"preview":{"url":"http://a.desktopprassets.com/wallpapers/b397b9644bb02f0974a23048308eddfb8f0cde6b/preview_038101__15_.jpg","width":960,"height":600}},"height":1200,"width":1920,"review_state":"safe","user_id":4568,"user_count":9,"views_count":18,"palette":[],"url":"http://www.desktoppr.co/wallpapers/55476"},{"id":152896,"bytes":298968,"created_at":"2012-08-10T21:04:27Z","image":{"url":"http://a.desktopprassets.com/wallpapers/d0d060099a6a1edadf9b206f725e902a1b522c08/wallpaper-323940.jpg","thumb":{"url":"http://a.desktopprassets.com/wallpapers/d0d060099a6a1edadf9b206f725e902a1b522c08/thumb_wallpaper-323940.jpg","width":296,"height":185},"preview":{"url":"http://a.desktopprassets.com/wallpapers/d0d060099a6a1edadf9b206f725e902a1b522c08/preview_wallpaper-323940.jpg","width":960,"height":600}},"height":900,"width":1440,"review_state":"safe","user_id":6574,"user_count":8,"views_count":14,"palette":[],"url":"http://www.desktoppr.co/wallpapers/152896"},{"id":37420,"bytes":3796691,"created_at":"2012-06-21T15:01:06Z","image":{"url":"http://a.desktopprassets.com/wallpapers/e1f5c443cd0b0c0454c45a28bfaad289b1482e9a/big_ba526706c147e4aff8d98ffc5a9b3f2e80689e36.jpg","thumb":{"url":"http://a.desktopprassets.com/wallpapers/e1f5c443cd0b0c0454c45a28bfaad289b1482e9a/thumb_big_ba526706c147e4aff8d98ffc5a9b3f2e80689e36.jpg","width":296,"height":185},"preview":{"url":"http://a.desktopprassets.com/wallpapers/e1f5c443cd0b0c0454c45a28bfaad289b1482e9a/preview_big_ba526706c147e4aff8d98ffc5a9b3f2e80689e36.jpg","width":960,"height":600}},"height":1800,"width":2880,"review_state":"safe","user_id":4400,"user_count":34,"views_count":33,"palette":["1D3648","6C7D2B","6C879D","B3CCC9","D6DFD4"],"url":"http://www.desktoppr.co/wallpapers/37420"},{"id":77945,"bytes":1320180,"created_at":"2012-07-01T11:43:06Z","image":{"url":"http://a.desktopprassets.com/wallpapers/c0ce37cbbcfe4db24bf2caab16549f29134e96b7/12c45r41ka0-4x49.jpg","thumb":{"url":"http://a.desktopprassets.com/wallpapers/c0ce37cbbcfe4db24bf2caab16549f29134e96b7/thumb_12c45r41ka0-4x49.jpg","width":296,"height":185},"preview":{"url":"http://a.desktopprassets.com/wallpapers/c0ce37cbbcfe4db24bf2caab16549f29134e96b7/preview_12c45r41ka0-4x49.jpg","width":960,"height":600}},"height":1200,"width":1920,"review_state":"safe","user_id":5604,"user_count":1,"views_count":2,"palette":[],"url":"http://www.desktoppr.co/wallpapers/77945"},{"id":155766,"bytes":331186,"created_at":"2012-08-15T09:18:20Z","image":{"url":"http://a.desktopprassets.com/wallpapers/79a6ffd20ce138118bbed720108a047b1dd88911/bokeh.jpg","thumb":{"url":"http://a.desktopprassets.com/wallpapers/79a6ffd20ce138118bbed720108a047b1dd88911/thumb_bokeh.jpg","width":296,"height":185},"preview":{"url":"http://a.desktopprassets.com/wallpapers/79a6ffd20ce138118bbed720108a047b1dd88911/preview_bokeh.jpg","width":960,"height":600}},"height":1600,"width":2560,"review_state":"safe","user_id":10405,"user_count":17,"views_count":16,"palette":[],"url":"http://www.desktoppr.co/wallpapers/155766"},{"id":652,"bytes":320022,"created_at":"2012-04-30T03:47:41Z","image":{"url":"http://a.desktopprassets.com/wallpapers/357ad377b1cbf621a5112eb6747a109f5a01d844/2m6wr9d.jpg","thumb":{"url":"http://a.desktopprassets.com/wallpapers/357ad377b1cbf621a5112eb6747a109f5a01d844/thumb_2m6wr9d.jpg","width":296,"height":185},"preview":{"url":"http://a.desktopprassets.com/wallpapers/357ad377b1cbf621a5112eb6747a109f5a01d844/preview_2m6wr9d.jpg","width":960,"height":655}},"height":874,"width":1280,"review_state":"safe","user_id":63,"user_count":8,"views_count":25,"palette":["2A2023","8D707B","96564E","A42828","BAD3D0"],"url":"http://www.desktoppr.co/wallpapers/652"},{"id":155709,"bytes":467530,"created_at":"2012-08-14T08:01:00Z","image":{"url":"http://a.desktopprassets.com/wallpapers/1e47d7cca427c602564e29931f95fc16ad110cd1/lwv1c.jpeg","thumb":{"url":"http://a.desktopprassets.com/wallpapers/1e47d7cca427c602564e29931f95fc16ad110cd1/thumb_lwv1c.jpeg","width":296,"height":185},"preview":{"url":"http://a.desktopprassets.com/wallpapers/1e47d7cca427c602564e29931f95fc16ad110cd1/preview_lwv1c.jpeg","width":960,"height":617}},"height":1911,"width":2970,"review_state":"safe","user_id":51,"user_count":21,"views_count":66,"palette":[],"url":"http://www.desktoppr.co/wallpapers/155709"},{"id":95847,"bytes":803412,"created_at":"2012-07-03T13:11:47Z","image":{"url":"http://a.desktopprassets.com/wallpapers/af5a9409a6296193ecb5cf8dd82b6e1c859633fd/chipintel1920.jpg","thumb":{"url":"http://a.desktopprassets.com/wallpapers/af5a9409a6296193ecb5cf8dd82b6e1c859633fd/thumb_chipintel1920.jpg","width":296,"height":185},"preview":{"url":"http://a.desktopprassets.com/wallpapers/af5a9409a6296193ecb5cf8dd82b6e1c859633fd/preview_chipintel1920.jpg","width":960,"height":600}},"height":1200,"width":1920,"review_state":"safe","user_id":5631,"user_count":14,"views_count":24,"palette":[],"url":"http://www.desktoppr.co/wallpapers/95847"},{"id":16679,"bytes":1185082,"created_at":"2012-06-10T12:16:51Z","image":{"url":"http://a.desktopprassets.com/wallpapers/cc5a0c2904c60be0190f20bb267e2f3f26166834/7341816630_42bfa55f06_o.jpg","thumb":{"url":"http://a.desktopprassets.com/wallpapers/cc5a0c2904c60be0190f20bb267e2f3f26166834/thumb_7341816630_42bfa55f06_o.jpg","width":296,"height":185},"preview":{"url":"http://a.desktopprassets.com/wallpapers/cc5a0c2904c60be0190f20bb267e2f3f26166834/preview_7341816630_42bfa55f06_o.jpg","width":960,"height":637}},"height":2848,"width":4288,"review_state":"safe","user_id":345,"user_count":16,"views_count":39,"palette":["171F2B","616D84","7889A9","889DBD","B4B9C7"],"url":"http://www.desktoppr.co/wallpapers/16679"},{"id":77546,"bytes":2219394,"created_at":"2012-07-01T10:31:06Z","image":{"url":"http://a.desktopprassets.com/wallpapers/f5ee050cc9abf66cfd93924909b8890bf83d304c/siva.jpg","thumb":{"url":"http://a.desktopprassets.com/wallpapers/f5ee050cc9abf66cfd93924909b8890bf83d304c/thumb_siva.jpg","width":296,"height":185},"preview":{"url":"http://a.desktopprassets.com/wallpapers/f5ee050cc9abf66cfd93924909b8890bf83d304c/preview_siva.jpg","width":960,"height":572}},"height":1527,"width":2560,"review_state":"safe","user_id":5523,"user_count":17,"views_count":68,"palette":[],"url":"http://www.desktoppr.co/wallpapers/77546"},{"id":155738,"bytes":301638,"created_at":"2012-08-14T16:13:08Z","image":{"url":"http://a.desktopprassets.com/wallpapers/f91d0ae89c3cdf38f833ccf05b37b9302fc4a8ee/tyrael_1920x1200.jpg","thumb":{"url":"http://a.desktopprassets.com/wallpapers/f91d0ae89c3cdf38f833ccf05b37b9302fc4a8ee/thumb_tyrael_1920x1200.jpg","width":296,"height":185},"preview":{"url":"http://a.desktopprassets.com/wallpapers/f91d0ae89c3cdf38f833ccf05b37b9302fc4a8ee/preview_tyrael_1920x1200.jpg","width":960,"height":600}},"height":1200,"width":1920,"review_state":"safe","user_id":6862,"user_count":16,"views_count":42,"palette":[],"url":"http://www.desktoppr.co/wallpapers/155738"},{"id":824,"bytes":442876,"created_at":"2012-05-06T12:56:23Z","image":{"url":"http://a.desktopprassets.com/wallpapers/59011373a94a04260205337bc4cbf41e5c3686fc/wallpaper-1912299.jpeg","thumb":{"url":"http://a.desktopprassets.com/wallpapers/59011373a94a04260205337bc4cbf41e5c3686fc/thumb_wallpaper-1912299.jpeg","width":296,"height":185},"preview":{"url":"http://a.desktopprassets.com/wallpapers/59011373a94a04260205337bc4cbf41e5c3686fc/preview_wallpaper-1912299.jpeg","width":960,"height":600}},"height":1200,"width":1920,"review_state":"safe","user_id":6,"user_count":7,"views_count":22,"palette":["0C1214","487C8C","6B9AA2","886F66","EBE8E6"],"url":"http://www.desktoppr.co/wallpapers/824"},{"id":111124,"bytes":337409,"created_at":"2012-07-07T08:24:26Z","image":{"url":"http://a.desktopprassets.com/wallpapers/3ef372164f1708f2f61035655dd16bb12fbb81fd/mad_svs01_lion_bomb.jpg","thumb":{"url":"http://a.desktopprassets.com/wallpapers/3ef372164f1708f2f61035655dd16bb12fbb81fd/thumb_mad_svs01_lion_bomb.jpg","width":296,"height":185},"preview":{"url":"http://a.desktopprassets.com/wallpapers/3ef372164f1708f2f61035655dd16bb12fbb81fd/preview_mad_svs01_lion_bomb.jpg","width":960,"height":540}},"height":1080,"width":1920,"review_state":"safe","user_id":7849,"user_count":3,"views_count":7,"palette":[],"url":"http://www.desktoppr.co/wallpapers/111124"},{"id":31576,"bytes":76508,"created_at":"2012-06-19T02:49:52Z","image":{"url":"http://a.desktopprassets.com/wallpapers/4bfdd1e1496436f15eb971dd8453b0544e4b5da8/wallpaper-1022849.png","thumb":{"url":"http://a.desktopprassets.com/wallpapers/4bfdd1e1496436f15eb971dd8453b0544e4b5da8/thumb_wallpaper-1022849.png","width":296,"height":185},"preview":{"url":"http://a.desktopprassets.com/wallpapers/4bfdd1e1496436f15eb971dd8453b0544e4b5da8/preview_wallpaper-1022849.png","width":960,"height":540}},"height":1080,"width":1920,"review_state":"safe","user_id":3463,"user_count":10,"views_count":8,"palette":["35A995","9E468B","DF9874","E15236","FBE3B3"],"url":"http://www.desktoppr.co/wallpapers/31576"}],"count":20,"pagination":{"current":1,"previous":null,"next":2,"per_page":20,"pages":822,"count":16428}}'
283
+ http_version:
284
+ recorded_at: Wed, 05 Sep 2012 00:02:26 GMT
285
+ - request:
286
+ method: get
287
+ uri: https://api.desktoppr.co/1/users/2/wallpapers
288
+ body:
289
+ encoding: US-ASCII
290
+ string: ''
291
+ headers: {}
292
+ response:
293
+ status:
294
+ code: 200
295
+ message: OK
296
+ headers:
297
+ Server:
298
+ - nginx/1.3.3
299
+ Date:
300
+ - Wed, 05 Sep 2012 00:02:22 GMT
301
+ Content-Type:
302
+ - application/json; charset=utf-8
303
+ Content-Length:
304
+ - '13453'
305
+ Connection:
306
+ - keep-alive
307
+ Status:
308
+ - 200 OK
309
+ Strict-Transport-Security:
310
+ - max-age=31536000
311
+ Access-Control-Allow-Methods:
312
+ - POST, GET, PUT, DELETE, OPTIONS
313
+ Access-Control-Max-Age:
314
+ - '1000'
315
+ X-Ua-Compatible:
316
+ - IE=Edge,chrome=1
317
+ Etag:
318
+ - ! '"df439b7f9338c13f3fea1ba874ca7bb3"'
319
+ Cache-Control:
320
+ - max-age=0, private, must-revalidate
321
+ X-Request-Id:
322
+ - c4f070df65c592c0c55b5588509527f6
323
+ X-Runtime:
324
+ - '0.058568'
325
+ X-Rack-Cache:
326
+ - miss
327
+ body:
328
+ encoding: US-ASCII
329
+ string: ! '{"response":[{"id":165697,"bytes":2218927,"created_at":"2012-09-03T21:31:27Z","image":{"url":"http://a.desktopprassets.com/wallpapers/3d669c58e2c3e0a3a0c3285b6cb5e19be82c940c/wallpaper-2200814.png","thumb":{"url":"http://a.desktopprassets.com/wallpapers/3d669c58e2c3e0a3a0c3285b6cb5e19be82c940c/thumb_wallpaper-2200814.png","width":296,"height":185},"preview":{"url":"http://a.desktopprassets.com/wallpapers/3d669c58e2c3e0a3a0c3285b6cb5e19be82c940c/preview_wallpaper-2200814.png","width":960,"height":600}},"height":1200,"width":1920,"review_state":"not_safe","user_id":6177,"user_count":5,"views_count":34,"palette":[],"url":"http://www.desktoppr.co/wallpapers/165697"},{"id":165445,"bytes":620984,"created_at":"2012-09-03T02:27:39Z","image":{"url":"http://a.desktopprassets.com/wallpapers/f248a560590227d097b2bb18e4f6cf157ee68b9f/wallpaper-1594743.jpg","thumb":{"url":"http://a.desktopprassets.com/wallpapers/f248a560590227d097b2bb18e4f6cf157ee68b9f/thumb_wallpaper-1594743.jpg","width":296,"height":185},"preview":{"url":"http://a.desktopprassets.com/wallpapers/f248a560590227d097b2bb18e4f6cf157ee68b9f/preview_wallpaper-1594743.jpg","width":960,"height":600}},"height":1200,"width":1920,"review_state":"pending","user_id":8598,"user_count":7,"views_count":7,"palette":[],"url":"http://www.desktoppr.co/wallpapers/165445"},{"id":163322,"bytes":2244356,"created_at":"2012-08-31T01:01:08Z","image":{"url":"http://a.desktopprassets.com/wallpapers/fd12bae1f5add3c3ad94d05926a697dd16fd64d9/6711221023_c15f843cc2_o.jpeg","thumb":{"url":"http://a.desktopprassets.com/wallpapers/fd12bae1f5add3c3ad94d05926a697dd16fd64d9/thumb_6711221023_c15f843cc2_o.jpeg","width":296,"height":185},"preview":{"url":"http://a.desktopprassets.com/wallpapers/fd12bae1f5add3c3ad94d05926a697dd16fd64d9/preview_6711221023_c15f843cc2_o.jpeg","width":960,"height":640}},"height":1856,"width":2784,"review_state":"safe","user_id":6177,"user_count":9,"views_count":74,"palette":[],"url":"http://www.desktoppr.co/wallpapers/163322"},{"id":160437,"bytes":3222859,"created_at":"2012-08-21T14:34:51Z","image":{"url":"http://a.desktopprassets.com/wallpapers/305898d03dacd1c69e4d22dacfa2ee1ffbd2ed85/higherlight.jpg","thumb":{"url":"http://a.desktopprassets.com/wallpapers/305898d03dacd1c69e4d22dacfa2ee1ffbd2ed85/thumb_higherlight.jpg","width":296,"height":185},"preview":{"url":"http://a.desktopprassets.com/wallpapers/305898d03dacd1c69e4d22dacfa2ee1ffbd2ed85/preview_higherlight.jpg","width":960,"height":600}},"height":1800,"width":2880,"review_state":"safe","user_id":10464,"user_count":12,"views_count":5,"palette":[],"url":"http://www.desktoppr.co/wallpapers/160437"},{"id":160435,"bytes":3084507,"created_at":"2012-08-21T14:34:40Z","image":{"url":"http://a.desktopprassets.com/wallpapers/d8c1ad61795c5bc7e1e43bd92e5ae07323c7ccf8/allalong.jpg","thumb":{"url":"http://a.desktopprassets.com/wallpapers/d8c1ad61795c5bc7e1e43bd92e5ae07323c7ccf8/thumb_allalong.jpg","width":296,"height":185},"preview":{"url":"http://a.desktopprassets.com/wallpapers/d8c1ad61795c5bc7e1e43bd92e5ae07323c7ccf8/preview_allalong.jpg","width":960,"height":600}},"height":1800,"width":2880,"review_state":"pending","user_id":10464,"user_count":6,"views_count":5,"palette":[],"url":"http://www.desktoppr.co/wallpapers/160435"},{"id":160313,"bytes":321179,"created_at":"2012-08-21T05:51:03Z","image":{"url":"http://a.desktopprassets.com/wallpapers/71c04d8b684126bd5048a85d679119a40dd1484e/front-wallpaper-168-gabriella-floor-1920x1200.jpeg","thumb":{"url":"http://a.desktopprassets.com/wallpapers/71c04d8b684126bd5048a85d679119a40dd1484e/thumb_front-wallpaper-168-gabriella-floor-1920x1200.jpeg","width":296,"height":185},"preview":{"url":"http://a.desktopprassets.com/wallpapers/71c04d8b684126bd5048a85d679119a40dd1484e/preview_front-wallpaper-168-gabriella-floor-1920x1200.jpeg","width":960,"height":600}},"height":1200,"width":1920,"review_state":"not_safe","user_id":5604,"user_count":12,"views_count":68,"palette":[],"url":"http://www.desktoppr.co/wallpapers/160313"},{"id":145681,"bytes":798994,"created_at":"2012-07-25T00:02:05Z","image":{"url":"http://a.desktopprassets.com/wallpapers/6e5a5fa80e541a6cdda6c181b1d27218f44180a1/room_302_iv_by_ninasever.jpeg","thumb":{"url":"http://a.desktopprassets.com/wallpapers/6e5a5fa80e541a6cdda6c181b1d27218f44180a1/thumb_room_302_iv_by_ninasever.jpeg","width":296,"height":185},"preview":{"url":"http://a.desktopprassets.com/wallpapers/6e5a5fa80e541a6cdda6c181b1d27218f44180a1/preview_room_302_iv_by_ninasever.jpeg","width":960,"height":637}},"height":2590,"width":3900,"review_state":"not_safe","user_id":6177,"user_count":10,"views_count":80,"palette":[],"url":"http://www.desktoppr.co/wallpapers/145681"},{"id":145679,"bytes":818680,"created_at":"2012-07-25T00:02:04Z","image":{"url":"http://a.desktopprassets.com/wallpapers/4c942955387b8ad0e9d168656427b932d7eaf126/wallpaper-1205818.jpeg","thumb":{"url":"http://a.desktopprassets.com/wallpapers/4c942955387b8ad0e9d168656427b932d7eaf126/thumb_wallpaper-1205818.jpeg","width":296,"height":185},"preview":{"url":"http://a.desktopprassets.com/wallpapers/4c942955387b8ad0e9d168656427b932d7eaf126/preview_wallpaper-1205818.jpeg","width":960,"height":600}},"height":1600,"width":2560,"review_state":"not_safe","user_id":6177,"user_count":7,"views_count":82,"palette":[],"url":"http://www.desktoppr.co/wallpapers/145679"},{"id":145674,"bytes":643651,"created_at":"2012-07-24T23:12:30Z","image":{"url":"http://a.desktopprassets.com/wallpapers/3121ee3d77309001606b7b1bbb4279e1ad53794a/wallpaper-1951544.jpeg","thumb":{"url":"http://a.desktopprassets.com/wallpapers/3121ee3d77309001606b7b1bbb4279e1ad53794a/thumb_wallpaper-1951544.jpeg","width":296,"height":185},"preview":{"url":"http://a.desktopprassets.com/wallpapers/3121ee3d77309001606b7b1bbb4279e1ad53794a/preview_wallpaper-1951544.jpeg","width":960,"height":600}},"height":1600,"width":2560,"review_state":"safe","user_id":6177,"user_count":12,"views_count":85,"palette":[],"url":"http://www.desktoppr.co/wallpapers/145674"},{"id":145673,"bytes":460909,"created_at":"2012-07-24T23:12:30Z","image":{"url":"http://a.desktopprassets.com/wallpapers/c435b348e280d3179dfd85df4eb889c172e770b1/wallpaper-2046452.jpeg","thumb":{"url":"http://a.desktopprassets.com/wallpapers/c435b348e280d3179dfd85df4eb889c172e770b1/thumb_wallpaper-2046452.jpeg","width":296,"height":185},"preview":{"url":"http://a.desktopprassets.com/wallpapers/c435b348e280d3179dfd85df4eb889c172e770b1/preview_wallpaper-2046452.jpeg","width":960,"height":600}},"height":1200,"width":1920,"review_state":"safe","user_id":6177,"user_count":15,"views_count":175,"palette":[],"url":"http://www.desktoppr.co/wallpapers/145673"},{"id":143327,"bytes":283306,"created_at":"2012-07-23T02:53:15Z","image":{"url":"http://a.desktopprassets.com/wallpapers/fadf79d83eea02b017a91dac591130622b3c8b25/1920x1200_hand_down_pants_panties_teasing_wallpaper.jpg","thumb":{"url":"http://a.desktopprassets.com/wallpapers/fadf79d83eea02b017a91dac591130622b3c8b25/thumb_1920x1200_hand_down_pants_panties_teasing_wallpaper.jpg","width":296,"height":185},"preview":{"url":"http://a.desktopprassets.com/wallpapers/fadf79d83eea02b017a91dac591130622b3c8b25/preview_1920x1200_hand_down_pants_panties_teasing_wallpaper.jpg","width":960,"height":600}},"height":1200,"width":1920,"review_state":"not_safe","user_id":9153,"user_count":8,"views_count":24,"palette":[],"url":"http://www.desktoppr.co/wallpapers/143327"},{"id":136730,"bytes":514281,"created_at":"2012-07-19T05:12:31Z","image":{"url":"http://a.desktopprassets.com/wallpapers/ba412833e43e0a8827ceafa4b633b40eb34bd6ea/wallpaper-2072782.jpeg","thumb":{"url":"http://a.desktopprassets.com/wallpapers/ba412833e43e0a8827ceafa4b633b40eb34bd6ea/thumb_wallpaper-2072782.jpeg","width":296,"height":185},"preview":{"url":"http://a.desktopprassets.com/wallpapers/ba412833e43e0a8827ceafa4b633b40eb34bd6ea/preview_wallpaper-2072782.jpeg","width":960,"height":600}},"height":1200,"width":1920,"review_state":"not_safe","user_id":6177,"user_count":5,"views_count":41,"palette":[],"url":"http://www.desktoppr.co/wallpapers/136730"},{"id":133913,"bytes":751347,"created_at":"2012-07-16T02:22:28Z","image":{"url":"http://a.desktopprassets.com/wallpapers/925e309cac6fb31d2531c4648a12b07f3a0efb2e/1340303186454.jpg","thumb":{"url":"http://a.desktopprassets.com/wallpapers/925e309cac6fb31d2531c4648a12b07f3a0efb2e/thumb_1340303186454.jpg","width":296,"height":185},"preview":{"url":"http://a.desktopprassets.com/wallpapers/925e309cac6fb31d2531c4648a12b07f3a0efb2e/preview_1340303186454.jpg","width":960,"height":600}},"height":1600,"width":2560,"review_state":"pending","user_id":4776,"user_count":4,"views_count":5,"palette":[],"url":"http://www.desktoppr.co/wallpapers/133913"},{"id":126931,"bytes":1335014,"created_at":"2012-07-11T00:33:45Z","image":{"url":"http://a.desktopprassets.com/wallpapers/9aa9d8f79a2c30dca0f5174d6dfba104f984aa7a/7157191979_914c11d944_k.jpg","thumb":{"url":"http://a.desktopprassets.com/wallpapers/9aa9d8f79a2c30dca0f5174d6dfba104f984aa7a/thumb_7157191979_914c11d944_k.jpg","width":296,"height":185},"preview":{"url":"http://a.desktopprassets.com/wallpapers/9aa9d8f79a2c30dca0f5174d6dfba104f984aa7a/preview_7157191979_914c11d944_k.jpg","width":960,"height":642}},"height":1371,"width":2048,"review_state":"safe","user_id":9244,"user_count":19,"views_count":22,"palette":[],"url":"http://www.desktoppr.co/wallpapers/126931"},{"id":123115,"bytes":955942,"created_at":"2012-07-10T01:52:38Z","image":{"url":"http://a.desktopprassets.com/wallpapers/9dc7744e91a26f1f58d2e873c0611f29547012d3/wallpaper-2040003.jpeg","thumb":{"url":"http://a.desktopprassets.com/wallpapers/9dc7744e91a26f1f58d2e873c0611f29547012d3/thumb_wallpaper-2040003.jpeg","width":296,"height":185},"preview":{"url":"http://a.desktopprassets.com/wallpapers/9dc7744e91a26f1f58d2e873c0611f29547012d3/preview_wallpaper-2040003.jpeg","width":960,"height":600}},"height":1600,"width":2560,"review_state":"pending","user_id":6177,"user_count":4,"views_count":4,"palette":[],"url":"http://www.desktoppr.co/wallpapers/123115"},{"id":123114,"bytes":652038,"created_at":"2012-07-10T01:52:35Z","image":{"url":"http://a.desktopprassets.com/wallpapers/5875d91c8068183bb62ca7d5f566a8ff0f2c6cf8/wallpaper-2021004.jpeg","thumb":{"url":"http://a.desktopprassets.com/wallpapers/5875d91c8068183bb62ca7d5f566a8ff0f2c6cf8/thumb_wallpaper-2021004.jpeg","width":296,"height":185},"preview":{"url":"http://a.desktopprassets.com/wallpapers/5875d91c8068183bb62ca7d5f566a8ff0f2c6cf8/preview_wallpaper-2021004.jpeg","width":960,"height":600}},"height":1600,"width":2560,"review_state":"pending","user_id":6177,"user_count":6,"views_count":3,"palette":[],"url":"http://www.desktoppr.co/wallpapers/123114"},{"id":123113,"bytes":1814030,"created_at":"2012-07-10T01:52:34Z","image":{"url":"http://a.desktopprassets.com/wallpapers/548f6f54eb6e4f2cb2ad79f7249b64d1146576f2/wallpaper-1332340.jpeg","thumb":{"url":"http://a.desktopprassets.com/wallpapers/548f6f54eb6e4f2cb2ad79f7249b64d1146576f2/thumb_wallpaper-1332340.jpeg","width":296,"height":185},"preview":{"url":"http://a.desktopprassets.com/wallpapers/548f6f54eb6e4f2cb2ad79f7249b64d1146576f2/preview_wallpaper-1332340.jpeg","width":960,"height":540}},"height":1440,"width":2560,"review_state":"pending","user_id":6177,"user_count":1,"views_count":3,"palette":[],"url":"http://www.desktoppr.co/wallpapers/123113"},{"id":123112,"bytes":536998,"created_at":"2012-07-10T01:52:33Z","image":{"url":"http://a.desktopprassets.com/wallpapers/83bf11c2952d7a14bf6fde899bf77a2b7e1458e2/wallpaper-1754976.jpeg","thumb":{"url":"http://a.desktopprassets.com/wallpapers/83bf11c2952d7a14bf6fde899bf77a2b7e1458e2/thumb_wallpaper-1754976.jpeg","width":296,"height":185},"preview":{"url":"http://a.desktopprassets.com/wallpapers/83bf11c2952d7a14bf6fde899bf77a2b7e1458e2/preview_wallpaper-1754976.jpeg","width":960,"height":600}},"height":1600,"width":2560,"review_state":"pending","user_id":6177,"user_count":6,"views_count":21,"palette":[],"url":"http://www.desktoppr.co/wallpapers/123112"},{"id":123111,"bytes":1092651,"created_at":"2012-07-10T01:52:32Z","image":{"url":"http://a.desktopprassets.com/wallpapers/0977cd2d2f4d22a67da4a284d6b280cac545ad42/wallpaper-814991.jpeg","thumb":{"url":"http://a.desktopprassets.com/wallpapers/0977cd2d2f4d22a67da4a284d6b280cac545ad42/thumb_wallpaper-814991.jpeg","width":296,"height":185},"preview":{"url":"http://a.desktopprassets.com/wallpapers/0977cd2d2f4d22a67da4a284d6b280cac545ad42/preview_wallpaper-814991.jpeg","width":960,"height":600}},"height":1600,"width":2560,"review_state":"pending","user_id":6177,"user_count":4,"views_count":20,"palette":[],"url":"http://www.desktoppr.co/wallpapers/123111"},{"id":123110,"bytes":788719,"created_at":"2012-07-10T01:52:31Z","image":{"url":"http://a.desktopprassets.com/wallpapers/e30bf8ccc7e3b3a4a6ac0a7bd48a89feabf35633/wallpaper-1703774.jpeg","thumb":{"url":"http://a.desktopprassets.com/wallpapers/e30bf8ccc7e3b3a4a6ac0a7bd48a89feabf35633/thumb_wallpaper-1703774.jpeg","width":296,"height":185},"preview":{"url":"http://a.desktopprassets.com/wallpapers/e30bf8ccc7e3b3a4a6ac0a7bd48a89feabf35633/preview_wallpaper-1703774.jpeg","width":960,"height":600}},"height":1600,"width":2560,"review_state":"pending","user_id":6177,"user_count":3,"views_count":2,"palette":[],"url":"http://www.desktoppr.co/wallpapers/123110"}],"count":20,"pagination":{"current":1,"previous":null,"next":2,"per_page":20,"pages":3,"count":41}}'
330
+ http_version:
331
+ recorded_at: Wed, 05 Sep 2012 00:02:29 GMT
332
+ - request:
333
+ method: get
334
+ uri: https://api.desktoppr.co/1/users/willrax/wallpapers
335
+ body:
336
+ encoding: US-ASCII
337
+ string: ''
338
+ headers: {}
339
+ response:
340
+ status:
341
+ code: 200
342
+ message: OK
343
+ headers:
344
+ Server:
345
+ - nginx/1.3.3
346
+ Date:
347
+ - Wed, 05 Sep 2012 00:02:24 GMT
348
+ Content-Type:
349
+ - application/json; charset=utf-8
350
+ Content-Length:
351
+ - '13366'
352
+ Connection:
353
+ - keep-alive
354
+ Status:
355
+ - 200 OK
356
+ Strict-Transport-Security:
357
+ - max-age=31536000
358
+ Access-Control-Allow-Methods:
359
+ - POST, GET, PUT, DELETE, OPTIONS
360
+ Access-Control-Max-Age:
361
+ - '1000'
362
+ X-Ua-Compatible:
363
+ - IE=Edge,chrome=1
364
+ Etag:
365
+ - ! '"af48c9e2b1ab31f2040edd2bb638e208"'
366
+ Cache-Control:
367
+ - max-age=0, private, must-revalidate
368
+ X-Request-Id:
369
+ - 0041e0e089bc491e8bf6e6c92f371443
370
+ X-Runtime:
371
+ - '0.077452'
372
+ X-Rack-Cache:
373
+ - miss
374
+ body:
375
+ encoding: US-ASCII
376
+ string: ! '{"response":[{"id":149218,"bytes":514537,"created_at":"2012-08-01T21:33:38Z","image":{"url":"http://a.desktopprassets.com/wallpapers/a5cb831c5b9b95845c1d50491950c62f45b14a50/wallpaper-59944.jpg","thumb":{"url":"http://a.desktopprassets.com/wallpapers/a5cb831c5b9b95845c1d50491950c62f45b14a50/thumb_wallpaper-59944.jpg","width":296,"height":185},"preview":{"url":"http://a.desktopprassets.com/wallpapers/a5cb831c5b9b95845c1d50491950c62f45b14a50/preview_wallpaper-59944.jpg","width":960,"height":600}},"height":1200,"width":1920,"review_state":"safe","user_id":5355,"user_count":40,"views_count":31,"palette":[],"url":"http://www.desktoppr.co/wallpapers/149218"},{"id":149217,"bytes":232424,"created_at":"2012-08-01T21:33:30Z","image":{"url":"http://a.desktopprassets.com/wallpapers/524c355e103b9089dd35ca5b62440c164dcc624c/wallpaper-98739.png","thumb":{"url":"http://a.desktopprassets.com/wallpapers/524c355e103b9089dd35ca5b62440c164dcc624c/thumb_wallpaper-98739.png","width":296,"height":185},"preview":{"url":"http://a.desktopprassets.com/wallpapers/524c355e103b9089dd35ca5b62440c164dcc624c/preview_wallpaper-98739.png","width":960,"height":600}},"height":1200,"width":1920,"review_state":"safe","user_id":5355,"user_count":51,"views_count":91,"palette":[],"url":"http://www.desktoppr.co/wallpapers/149217"},{"id":149193,"bytes":558114,"created_at":"2012-08-01T18:59:07Z","image":{"url":"http://a.desktopprassets.com/wallpapers/6702d9b541b79ba52d8706a4ae2bd0db43b62436/aeruz.jpg","thumb":{"url":"http://a.desktopprassets.com/wallpapers/6702d9b541b79ba52d8706a4ae2bd0db43b62436/thumb_aeruz.jpg","width":296,"height":185},"preview":{"url":"http://a.desktopprassets.com/wallpapers/6702d9b541b79ba52d8706a4ae2bd0db43b62436/preview_aeruz.jpg","width":960,"height":540}},"height":1440,"width":2560,"review_state":"safe","user_id":5040,"user_count":44,"views_count":36,"palette":[],"url":"http://www.desktoppr.co/wallpapers/149193"},{"id":149105,"bytes":79527,"created_at":"2012-08-01T14:43:19Z","image":{"url":"http://a.desktopprassets.com/wallpapers/67653262a8e11cf475f41892ce39b34eada7fcff/wallpaper-642217.jpg","thumb":{"url":"http://a.desktopprassets.com/wallpapers/67653262a8e11cf475f41892ce39b34eada7fcff/thumb_wallpaper-642217.jpg","width":296,"height":185},"preview":{"url":"http://a.desktopprassets.com/wallpapers/67653262a8e11cf475f41892ce39b34eada7fcff/preview_wallpaper-642217.jpg","width":960,"height":540}},"height":1080,"width":1920,"review_state":"safe","user_id":8338,"user_count":33,"views_count":53,"palette":[],"url":"http://www.desktoppr.co/wallpapers/149105"},{"id":148690,"bytes":97891,"created_at":"2012-07-31T14:23:21Z","image":{"url":"http://a.desktopprassets.com/wallpapers/15f015ff0b0dbba86fc6304114ba3f7291f42d57/33ciy_-_imgur.jpg","thumb":{"url":"http://a.desktopprassets.com/wallpapers/15f015ff0b0dbba86fc6304114ba3f7291f42d57/thumb_33ciy_-_imgur.jpg","width":296,"height":185},"preview":{"url":"http://a.desktopprassets.com/wallpapers/15f015ff0b0dbba86fc6304114ba3f7291f42d57/preview_33ciy_-_imgur.jpg","width":960,"height":540}},"height":1080,"width":1920,"review_state":"safe","user_id":5040,"user_count":39,"views_count":67,"palette":[],"url":"http://www.desktoppr.co/wallpapers/148690"},{"id":148544,"bytes":2343947,"created_at":"2012-07-31T04:33:35Z","image":{"url":"http://a.desktopprassets.com/wallpapers/c72aa80c06e094c32cd34f092b815deeaccd934d/101105-f-8006m-777.jpg","thumb":{"url":"http://a.desktopprassets.com/wallpapers/c72aa80c06e094c32cd34f092b815deeaccd934d/thumb_101105-f-8006m-777.jpg","width":296,"height":185},"preview":{"url":"http://a.desktopprassets.com/wallpapers/c72aa80c06e094c32cd34f092b815deeaccd934d/preview_101105-f-8006m-777.jpg","width":960,"height":612}},"height":1340,"width":2100,"review_state":"safe","user_id":7431,"user_count":16,"views_count":31,"palette":[],"url":"http://www.desktoppr.co/wallpapers/148544"},{"id":148529,"bytes":447323,"created_at":"2012-07-31T03:38:51Z","image":{"url":"http://a.desktopprassets.com/wallpapers/ceafcf8e3adbb17a40177287f762991ba7b025f4/superman_desktop.jpg","thumb":{"url":"http://a.desktopprassets.com/wallpapers/ceafcf8e3adbb17a40177287f762991ba7b025f4/thumb_superman_desktop.jpg","width":296,"height":185},"preview":{"url":"http://a.desktopprassets.com/wallpapers/ceafcf8e3adbb17a40177287f762991ba7b025f4/preview_superman_desktop.jpg","width":960,"height":600}},"height":1050,"width":1680,"review_state":"safe","user_id":10144,"user_count":19,"views_count":39,"palette":[],"url":"http://www.desktoppr.co/wallpapers/148529"},{"id":148524,"bytes":84020,"created_at":"2012-07-31T03:37:54Z","image":{"url":"http://a.desktopprassets.com/wallpapers/f142e475d9d153c0d6006d51412053db4eeea5fb/the-dark-knight.png","thumb":{"url":"http://a.desktopprassets.com/wallpapers/f142e475d9d153c0d6006d51412053db4eeea5fb/thumb_the-dark-knight.png","width":296,"height":185},"preview":{"url":"http://a.desktopprassets.com/wallpapers/f142e475d9d153c0d6006d51412053db4eeea5fb/preview_the-dark-knight.png","width":960,"height":600}},"height":1600,"width":2560,"review_state":"safe","user_id":10144,"user_count":30,"views_count":31,"palette":[],"url":"http://www.desktoppr.co/wallpapers/148524"},{"id":148500,"bytes":143499,"created_at":"2012-07-31T01:54:29Z","image":{"url":"http://a.desktopprassets.com/wallpapers/71637bedcc49c3dfab376a1533b75a47c73a548e/luwvt_-_imgur.jpg","thumb":{"url":"http://a.desktopprassets.com/wallpapers/71637bedcc49c3dfab376a1533b75a47c73a548e/thumb_luwvt_-_imgur.jpg","width":296,"height":185},"preview":{"url":"http://a.desktopprassets.com/wallpapers/71637bedcc49c3dfab376a1533b75a47c73a548e/preview_luwvt_-_imgur.jpg","width":960,"height":540}},"height":1080,"width":1920,"review_state":"safe","user_id":7693,"user_count":45,"views_count":39,"palette":[],"url":"http://www.desktoppr.co/wallpapers/148500"},{"id":147856,"bytes":1792916,"created_at":"2012-07-30T06:13:38Z","image":{"url":"http://a.desktopprassets.com/wallpapers/8fc972d0b35e162bd1206b39e5f8bb263ed8394b/iron_man_movies_rain_comics_marvel_comics_1920x1080_wallpaper_high_resolution_wallpaper_2560x1440_www.wallpaperfo.com.jpg","thumb":{"url":"http://a.desktopprassets.com/wallpapers/8fc972d0b35e162bd1206b39e5f8bb263ed8394b/thumb_iron_man_movies_rain_comics_marvel_comics_1920x1080_wallpaper_high_resolution_wallpaper_2560x1440_www.wallpaperfo.com.jpg","width":296,"height":185},"preview":{"url":"http://a.desktopprassets.com/wallpapers/8fc972d0b35e162bd1206b39e5f8bb263ed8394b/preview_iron_man_movies_rain_comics_marvel_comics_1920x1080_wallpaper_high_resolution_wallpaper_2560x1440_www.wallpaperfo.com.jpg","width":960,"height":540}},"height":1440,"width":2560,"review_state":"safe","user_id":5355,"user_count":37,"views_count":35,"palette":[],"url":"http://www.desktoppr.co/wallpapers/147856"},{"id":147803,"bytes":368260,"created_at":"2012-07-30T05:44:22Z","image":{"url":"http://a.desktopprassets.com/wallpapers/e8c202238a13da6dd059bd4e2c53f1c99e7e992d/foryouyouyou_success_is_not_fatal_1610.jpg","thumb":{"url":"http://a.desktopprassets.com/wallpapers/e8c202238a13da6dd059bd4e2c53f1c99e7e992d/thumb_foryouyouyou_success_is_not_fatal_1610.jpg","width":296,"height":185},"preview":{"url":"http://a.desktopprassets.com/wallpapers/e8c202238a13da6dd059bd4e2c53f1c99e7e992d/preview_foryouyouyou_success_is_not_fatal_1610.jpg","width":960,"height":600}},"height":900,"width":1440,"review_state":"safe","user_id":8439,"user_count":21,"views_count":44,"palette":[],"url":"http://www.desktoppr.co/wallpapers/147803"},{"id":147796,"bytes":2745956,"created_at":"2012-07-30T05:40:23Z","image":{"url":"http://a.desktopprassets.com/wallpapers/077b183af8328eb56d7c426a5a88895b57ddfa4e/kong_hong_1610.jpg","thumb":{"url":"http://a.desktopprassets.com/wallpapers/077b183af8328eb56d7c426a5a88895b57ddfa4e/thumb_kong_hong_1610.jpg","width":296,"height":185},"preview":{"url":"http://a.desktopprassets.com/wallpapers/077b183af8328eb56d7c426a5a88895b57ddfa4e/preview_kong_hong_1610.jpg","width":960,"height":600}},"height":1440,"width":2304,"review_state":"safe","user_id":18,"user_count":13,"views_count":15,"palette":[],"url":"http://www.desktoppr.co/wallpapers/147796"},{"id":147783,"bytes":1125727,"created_at":"2012-07-30T00:22:25Z","image":{"url":"http://a.desktopprassets.com/wallpapers/728d780d402d359880b4e1b34f7a926edff06725/wallpaper-805092.jpg","thumb":{"url":"http://a.desktopprassets.com/wallpapers/728d780d402d359880b4e1b34f7a926edff06725/thumb_wallpaper-805092.jpg","width":296,"height":185},"preview":{"url":"http://a.desktopprassets.com/wallpapers/728d780d402d359880b4e1b34f7a926edff06725/preview_wallpaper-805092.jpg","width":960,"height":540}},"height":1080,"width":1920,"review_state":"safe","user_id":8356,"user_count":16,"views_count":18,"palette":[],"url":"http://www.desktoppr.co/wallpapers/147783"},{"id":147690,"bytes":1478939,"created_at":"2012-07-29T18:05:10Z","image":{"url":"http://a.desktopprassets.com/wallpapers/1803de11798c0ba28d81840f64449ba9ad1a677d/02098_dawndeparture_1920x1080.jpg","thumb":{"url":"http://a.desktopprassets.com/wallpapers/1803de11798c0ba28d81840f64449ba9ad1a677d/thumb_02098_dawndeparture_1920x1080.jpg","width":296,"height":185},"preview":{"url":"http://a.desktopprassets.com/wallpapers/1803de11798c0ba28d81840f64449ba9ad1a677d/preview_02098_dawndeparture_1920x1080.jpg","width":960,"height":540}},"height":1080,"width":1920,"review_state":"safe","user_id":885,"user_count":9,"views_count":16,"palette":[],"url":"http://www.desktoppr.co/wallpapers/147690"},{"id":147656,"bytes":2477932,"created_at":"2012-07-29T16:43:10Z","image":{"url":"http://a.desktopprassets.com/wallpapers/48ade621125c3c6516228f91d046061ee51385a5/m5.jpg","thumb":{"url":"http://a.desktopprassets.com/wallpapers/48ade621125c3c6516228f91d046061ee51385a5/thumb_m5.jpg","width":296,"height":185},"preview":{"url":"http://a.desktopprassets.com/wallpapers/48ade621125c3c6516228f91d046061ee51385a5/preview_m5.jpg","width":960,"height":960}},"height":3482,"width":3482,"review_state":"safe","user_id":192,"user_count":35,"views_count":40,"palette":[],"url":"http://www.desktoppr.co/wallpapers/147656"},{"id":147496,"bytes":1027762,"created_at":"2012-07-28T22:09:57Z","image":{"url":"http://a.desktopprassets.com/wallpapers/90090ea346677b223f46ac50bccb135fd648e39e/image__5_.jpg","thumb":{"url":"http://a.desktopprassets.com/wallpapers/90090ea346677b223f46ac50bccb135fd648e39e/thumb_image__5_.jpg","width":296,"height":185},"preview":{"url":"http://a.desktopprassets.com/wallpapers/90090ea346677b223f46ac50bccb135fd648e39e/preview_image__5_.jpg","width":960,"height":600}},"height":1050,"width":1680,"review_state":"safe","user_id":6373,"user_count":32,"views_count":43,"palette":[],"url":"http://www.desktoppr.co/wallpapers/147496"},{"id":147449,"bytes":2155585,"created_at":"2012-07-28T18:11:04Z","image":{"url":"http://a.desktopprassets.com/wallpapers/ad6bd31f3559340cb22dbc665f7590d7c337e560/wallpaper-661820.jpg","thumb":{"url":"http://a.desktopprassets.com/wallpapers/ad6bd31f3559340cb22dbc665f7590d7c337e560/thumb_wallpaper-661820.jpg","width":296,"height":185},"preview":{"url":"http://a.desktopprassets.com/wallpapers/ad6bd31f3559340cb22dbc665f7590d7c337e560/preview_wallpaper-661820.jpg","width":960,"height":637}},"height":2848,"width":4288,"review_state":"safe","user_id":3001,"user_count":51,"views_count":47,"palette":[],"url":"http://www.desktoppr.co/wallpapers/147449"},{"id":146902,"bytes":1700033,"created_at":"2012-07-27T18:05:11Z","image":{"url":"http://a.desktopprassets.com/wallpapers/610f0f414bd2bf65dd1b521403fc41f711ee8bcc/wallpaper_-_021.jpg","thumb":{"url":"http://a.desktopprassets.com/wallpapers/610f0f414bd2bf65dd1b521403fc41f711ee8bcc/thumb_wallpaper_-_021.jpg","width":296,"height":185},"preview":{"url":"http://a.desktopprassets.com/wallpapers/610f0f414bd2bf65dd1b521403fc41f711ee8bcc/preview_wallpaper_-_021.jpg","width":960,"height":641}},"height":1636,"width":2450,"review_state":"safe","user_id":10067,"user_count":60,"views_count":44,"palette":[],"url":"http://www.desktoppr.co/wallpapers/146902"},{"id":146632,"bytes":806051,"created_at":"2012-07-27T10:31:32Z","image":{"url":"http://a.desktopprassets.com/wallpapers/80b0072fd2cd944ebe2927ac3e78248a963cc825/2100478.jpg","thumb":{"url":"http://a.desktopprassets.com/wallpapers/80b0072fd2cd944ebe2927ac3e78248a963cc825/thumb_2100478.jpg","width":296,"height":185},"preview":{"url":"http://a.desktopprassets.com/wallpapers/80b0072fd2cd944ebe2927ac3e78248a963cc825/preview_2100478.jpg","width":960,"height":540}},"height":1080,"width":1920,"review_state":"safe","user_id":1845,"user_count":29,"views_count":64,"palette":[],"url":"http://www.desktoppr.co/wallpapers/146632"},{"id":146575,"bytes":1345392,"created_at":"2012-07-27T00:32:15Z","image":{"url":"http://a.desktopprassets.com/wallpapers/31d6a419b37fe8abfc1dffa2f4313fa230ea079d/batman1.jpg","thumb":{"url":"http://a.desktopprassets.com/wallpapers/31d6a419b37fe8abfc1dffa2f4313fa230ea079d/thumb_batman1.jpg","width":296,"height":185},"preview":{"url":"http://a.desktopprassets.com/wallpapers/31d6a419b37fe8abfc1dffa2f4313fa230ea079d/preview_batman1.jpg","width":960,"height":600}},"height":1600,"width":2560,"review_state":"safe","user_id":7888,"user_count":52,"views_count":36,"palette":[],"url":"http://www.desktoppr.co/wallpapers/146575"}],"count":20,"pagination":{"current":1,"previous":null,"next":2,"per_page":20,"pages":12,"count":221}}'
377
+ http_version:
378
+ recorded_at: Wed, 05 Sep 2012 00:02:30 GMT
379
+ recorded_with: VCR 2.2.4