social_auth 0.0.9

Sign up to get free protection for your applications and to get access to all the features.
Files changed (85) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/Rakefile +39 -0
  4. data/app/models/social_auth/facebook_service.rb +60 -0
  5. data/app/models/social_auth/google_plus_service.rb +106 -0
  6. data/app/models/social_auth/service.rb +152 -0
  7. data/app/models/social_auth/twitter_service.rb +67 -0
  8. data/config/routes.rb +2 -0
  9. data/lib/generators/social_auth/install/install_generator.rb +37 -0
  10. data/lib/generators/social_auth/install/templates/create_social_auth_services.rb +12 -0
  11. data/lib/generators/social_auth/install/templates/initializer.rb +15 -0
  12. data/lib/social_auth.rb +73 -0
  13. data/lib/social_auth/acts_as_social_user.rb +23 -0
  14. data/lib/social_auth/engine.rb +12 -0
  15. data/lib/social_auth/railtie.rb +7 -0
  16. data/lib/social_auth/version.rb +3 -0
  17. data/lib/tasks/social_auth_tasks.rake +4 -0
  18. data/spec/dummy/rails-4.2.0/Gemfile +42 -0
  19. data/spec/dummy/rails-4.2.0/README.rdoc +28 -0
  20. data/spec/dummy/rails-4.2.0/Rakefile +6 -0
  21. data/spec/dummy/rails-4.2.0/app/assets/javascripts/application.js +16 -0
  22. data/spec/dummy/rails-4.2.0/app/assets/stylesheets/application.css +15 -0
  23. data/spec/dummy/rails-4.2.0/app/controllers/application_controller.rb +5 -0
  24. data/spec/dummy/rails-4.2.0/app/helpers/application_helper.rb +2 -0
  25. data/spec/dummy/rails-4.2.0/app/models/user.rb +2 -0
  26. data/spec/dummy/rails-4.2.0/app/views/layouts/application.html.erb +14 -0
  27. data/spec/dummy/rails-4.2.0/bin/bundle +3 -0
  28. data/spec/dummy/rails-4.2.0/bin/rails +4 -0
  29. data/spec/dummy/rails-4.2.0/bin/rake +4 -0
  30. data/spec/dummy/rails-4.2.0/bin/setup +29 -0
  31. data/spec/dummy/rails-4.2.0/config.ru +4 -0
  32. data/spec/dummy/rails-4.2.0/config/application.rb +26 -0
  33. data/spec/dummy/rails-4.2.0/config/boot.rb +3 -0
  34. data/spec/dummy/rails-4.2.0/config/database.yml +15 -0
  35. data/spec/dummy/rails-4.2.0/config/environment.rb +5 -0
  36. data/spec/dummy/rails-4.2.0/config/environments/development.rb +41 -0
  37. data/spec/dummy/rails-4.2.0/config/environments/production.rb +79 -0
  38. data/spec/dummy/rails-4.2.0/config/environments/test.rb +42 -0
  39. data/spec/dummy/rails-4.2.0/config/initializers/assets.rb +11 -0
  40. data/spec/dummy/rails-4.2.0/config/initializers/backtrace_silencers.rb +7 -0
  41. data/spec/dummy/rails-4.2.0/config/initializers/cookies_serializer.rb +3 -0
  42. data/spec/dummy/rails-4.2.0/config/initializers/filter_parameter_logging.rb +4 -0
  43. data/spec/dummy/rails-4.2.0/config/initializers/inflections.rb +16 -0
  44. data/spec/dummy/rails-4.2.0/config/initializers/mime_types.rb +4 -0
  45. data/spec/dummy/rails-4.2.0/config/initializers/session_store.rb +3 -0
  46. data/spec/dummy/rails-4.2.0/config/initializers/social_auth.rb +15 -0
  47. data/spec/dummy/rails-4.2.0/config/initializers/wrap_parameters.rb +14 -0
  48. data/spec/dummy/rails-4.2.0/config/locales/en.yml +23 -0
  49. data/spec/dummy/rails-4.2.0/config/routes.rb +56 -0
  50. data/spec/dummy/rails-4.2.0/config/secrets.yml +22 -0
  51. data/spec/dummy/rails-4.2.0/db/migrate/20150504044515878_create_social_auth_services.rb +12 -0
  52. data/spec/dummy/rails-4.2.0/db/migrate/20150504044519_create_users.rb +9 -0
  53. data/spec/dummy/rails-4.2.0/db/schema.rb +35 -0
  54. data/spec/dummy/rails-4.2.0/db/seeds.rb +7 -0
  55. data/spec/dummy/rails-4.2.0/log/test.log +2570 -0
  56. data/spec/dummy/rails-4.2.0/public/404.html +67 -0
  57. data/spec/dummy/rails-4.2.0/public/422.html +67 -0
  58. data/spec/dummy/rails-4.2.0/public/500.html +66 -0
  59. data/spec/dummy/rails-4.2.0/public/favicon.ico +0 -0
  60. data/spec/dummy/rails-4.2.0/public/robots.txt +5 -0
  61. data/spec/dummy/rails-4.2.0/test/fixtures/users.yml +7 -0
  62. data/spec/dummy/rails-4.2.0/test/models/user_test.rb +7 -0
  63. data/spec/dummy/rails-4.2.0/test/test_helper.rb +10 -0
  64. data/spec/fixtures/vcr_cassettes/facebook_service/invalid_friends_request.yml +54 -0
  65. data/spec/fixtures/vcr_cassettes/facebook_service/invalid_request.yml +50 -0
  66. data/spec/fixtures/vcr_cassettes/facebook_service/invalid_token.yml +50 -0
  67. data/spec/fixtures/vcr_cassettes/facebook_service/valid_friends_request.yml +110 -0
  68. data/spec/fixtures/vcr_cassettes/facebook_service/valid_request.yml +55 -0
  69. data/spec/fixtures/vcr_cassettes/google_plus_service/invalid_authorization.yml +51 -0
  70. data/spec/fixtures/vcr_cassettes/google_plus_service/invalid_friends_request.yml +53 -0
  71. data/spec/fixtures/vcr_cassettes/google_plus_service/invalid_token.yml +51 -0
  72. data/spec/fixtures/vcr_cassettes/google_plus_service/valid_authorization.yml +56 -0
  73. data/spec/fixtures/vcr_cassettes/google_plus_service/valid_friends_request.yml +132 -0
  74. data/spec/fixtures/vcr_cassettes/google_plus_service/valid_request.yml +110 -0
  75. data/spec/fixtures/vcr_cassettes/twitter_service/invalid_friends_request.yml +47 -0
  76. data/spec/fixtures/vcr_cassettes/twitter_service/valid_friends_request.yml +159 -0
  77. data/spec/fixtures/vcr_cassettes/twitter_service/valid_request.yml +337 -0
  78. data/spec/models/facebook_service_spec.rb +127 -0
  79. data/spec/models/google_plus_service_spec.rb +133 -0
  80. data/spec/models/service_spec.rb +236 -0
  81. data/spec/models/twitter_service_spec.rb +100 -0
  82. data/spec/spec_helper.rb +74 -0
  83. data/spec/support/database.yml +15 -0
  84. data/spec/support/rails_template.rb +15 -0
  85. metadata +376 -0
@@ -0,0 +1,47 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: https://api.twitter.com/1.1/account/verify_credentials.json?skip_status=true
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ Accept:
11
+ - application/json
12
+ User-Agent:
13
+ - TwitterRubyGem/5.14.0
14
+ Authorization:
15
+ - OAuth oauth_consumer_key="MxzWRgtXC2CVc71azEnN9u2Df", oauth_nonce="abc33eead86dbe6780167251defc6f93",
16
+ oauth_signature="O9t4zlNBJvlOtZAmJ6nmHXOfmQY%3D", oauth_signature_method="HMAC-SHA1",
17
+ oauth_timestamp="1429778938", oauth_token="test", oauth_version="1.0"
18
+ Accept-Encoding:
19
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
20
+ response:
21
+ status:
22
+ code: 401
23
+ message: Authorization Required
24
+ headers:
25
+ Content-Length:
26
+ - '87'
27
+ Content-Type:
28
+ - application/json;charset=utf-8
29
+ Date:
30
+ - Thu, 23 Apr 2015 08:49:00 GMT
31
+ Server:
32
+ - tsa_a
33
+ Set-Cookie:
34
+ - guest_id=v1%3A142977894021623341; Domain=.twitter.com; Path=/; Expires=Sat,
35
+ 22-Apr-2017 08:49:00 UTC
36
+ Strict-Transport-Security:
37
+ - max-age=631138519
38
+ X-Connection-Hash:
39
+ - 2b5b68c77b10305aa73fab86bcbd4bc8
40
+ X-Response-Time:
41
+ - '6'
42
+ body:
43
+ encoding: UTF-8
44
+ string: '{"errors":[{"code":89,"message":"Invalid or expired token."}]}'
45
+ http_version:
46
+ recorded_at: Thu, 23 Apr 2015 08:49:00 GMT
47
+ recorded_with: VCR 2.9.3
@@ -0,0 +1,159 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: https://api.twitter.com/1.1/account/verify_credentials.json?skip_status=true
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ Accept:
11
+ - application/json
12
+ User-Agent:
13
+ - TwitterRubyGem/5.14.0
14
+ Authorization:
15
+ - OAuth oauth_consumer_key="MxzWRgtXC2CVc71azEnN9u2Df", oauth_nonce="abbf6ef7f2eead07e985da70278eeea1",
16
+ oauth_signature="sIDVimOb%2BaE2DrKgCt%2BpFKwkI8w%3D", oauth_signature_method="HMAC-SHA1",
17
+ oauth_timestamp="1428466986", oauth_token="410739240-pHPJnKJsQufXJXrH2j2gmhWx923Y4O3b1ziOZ3gi",
18
+ oauth_version="1.0"
19
+ Accept-Encoding:
20
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
21
+ response:
22
+ status:
23
+ code: 200
24
+ message: OK
25
+ headers:
26
+ Cache-Control:
27
+ - no-cache, no-store, must-revalidate, pre-check=0, post-check=0
28
+ Content-Disposition:
29
+ - attachment; filename=json.json
30
+ Content-Length:
31
+ - '625'
32
+ Content-Type:
33
+ - application/json;charset=utf-8
34
+ Date:
35
+ - Wed, 08 Apr 2015 04:23:06 GMT
36
+ Expires:
37
+ - Tue, 31 Mar 1981 05:00:00 GMT
38
+ Last-Modified:
39
+ - Wed, 08 Apr 2015 04:23:06 GMT
40
+ Pragma:
41
+ - no-cache
42
+ Server:
43
+ - tsa_a
44
+ Set-Cookie:
45
+ - guest_id=v1%3A142846698683187729; Domain=.twitter.com; Path=/; Expires=Fri,
46
+ 07-Apr-2017 04:23:06 UTC
47
+ - lang=en
48
+ Status:
49
+ - 200 OK
50
+ Strict-Transport-Security:
51
+ - max-age=631138519
52
+ X-Access-Level:
53
+ - read-write
54
+ X-Connection-Hash:
55
+ - 42e8701fd40b3167002079e848d80747
56
+ X-Content-Type-Options:
57
+ - nosniff
58
+ X-Frame-Options:
59
+ - SAMEORIGIN
60
+ X-Rate-Limit-Limit:
61
+ - '15'
62
+ X-Rate-Limit-Remaining:
63
+ - '11'
64
+ X-Rate-Limit-Reset:
65
+ - '1428467622'
66
+ X-Response-Time:
67
+ - '103'
68
+ X-Transaction:
69
+ - 405f12fbaca5f9ae
70
+ X-Twitter-Response-Tags:
71
+ - BouncerCompliant
72
+ - BouncerExempt
73
+ X-Xss-Protection:
74
+ - 1; mode=block
75
+ body:
76
+ encoding: UTF-8
77
+ string: '{"id":410739240,"id_str":"410739240","name":"William Porter","screen_name":"willports","location":"Melbourne,
78
+ Australia","profile_location":null,"description":"Startup enthusiast, basketballer,
79
+ computer science major at RMIT and software developer at Papercloud","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":232,"friends_count":404,"listed_count":22,"created_at":"Sat
80
+ Nov 12 14:09:45 +0000 2011","favourites_count":38,"utc_offset":36000,"time_zone":"Melbourne","geo_enabled":false,"verified":false,"statuses_count":163,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2421220373\/u8kjwo6me39pos7nolzj_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2421220373\/u8kjwo6me39pos7nolzj_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}'
81
+ http_version:
82
+ recorded_at: Wed, 08 Apr 2015 04:23:07 GMT
83
+ - request:
84
+ method: get
85
+ uri: https://api.twitter.com/1.1/friends/ids.json?cursor=-1&user_id=410739240
86
+ body:
87
+ encoding: US-ASCII
88
+ string: ''
89
+ headers:
90
+ Accept:
91
+ - application/json
92
+ User-Agent:
93
+ - TwitterRubyGem/5.14.0
94
+ Authorization:
95
+ - OAuth oauth_consumer_key="MxzWRgtXC2CVc71azEnN9u2Df", oauth_nonce="f73aad2e0e5eb3f640ba844d9ed8f1ae",
96
+ oauth_signature="6aAsb0owFUd8%2BBJf%2BzO5HPLDEdE%3D", oauth_signature_method="HMAC-SHA1",
97
+ oauth_timestamp="1428466987", oauth_token="410739240-pHPJnKJsQufXJXrH2j2gmhWx923Y4O3b1ziOZ3gi",
98
+ oauth_version="1.0"
99
+ Accept-Encoding:
100
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
101
+ response:
102
+ status:
103
+ code: 200
104
+ message: OK
105
+ headers:
106
+ Cache-Control:
107
+ - no-cache, no-store, must-revalidate, pre-check=0, post-check=0
108
+ Content-Disposition:
109
+ - attachment; filename=json.json
110
+ Content-Length:
111
+ - '2040'
112
+ Content-Type:
113
+ - application/json;charset=utf-8
114
+ Date:
115
+ - Wed, 08 Apr 2015 04:23:07 GMT
116
+ Expires:
117
+ - Tue, 31 Mar 1981 05:00:00 GMT
118
+ Last-Modified:
119
+ - Wed, 08 Apr 2015 04:23:07 GMT
120
+ Pragma:
121
+ - no-cache
122
+ Server:
123
+ - tsa_a
124
+ Set-Cookie:
125
+ - guest_id=v1%3A142846698775568767; Domain=.twitter.com; Path=/; Expires=Fri,
126
+ 07-Apr-2017 04:23:07 UTC
127
+ - lang=en
128
+ Status:
129
+ - 200 OK
130
+ Strict-Transport-Security:
131
+ - max-age=631138519
132
+ X-Access-Level:
133
+ - read-write
134
+ X-Connection-Hash:
135
+ - 28fbc7095844f9462a343bce790f582d
136
+ X-Content-Type-Options:
137
+ - nosniff
138
+ X-Frame-Options:
139
+ - SAMEORIGIN
140
+ X-Rate-Limit-Limit:
141
+ - '15'
142
+ X-Rate-Limit-Remaining:
143
+ - '13'
144
+ X-Rate-Limit-Reset:
145
+ - '1428467627'
146
+ X-Response-Time:
147
+ - '205'
148
+ X-Transaction:
149
+ - e767cc5e6d551675
150
+ X-Twitter-Response-Tags:
151
+ - BouncerCompliant
152
+ X-Xss-Protection:
153
+ - 1; mode=block
154
+ body:
155
+ encoding: UTF-8
156
+ string: '{"ids":[15169196,14321259,170662357,16601619,19080399,372041439,592535210,13334762,209058378,226993426,236588417,11348282,252481460,311340284,1008000139,289969718,35432131,990244189,65517538,1704785540,19691971,34605923,2526229286,26241538,16731023,604417908,34224632,291049995,118029798,22955180,47334057,278825529,358052219,1306819549,173006018,489068782,483409655,280612866,1946120082,826510740,95943980,40175742,21502768,974616096,47273137,35115377,14610920,4959061,10173942,567200327,184997446,81291664,556678231,30015171,76200378,295010895,14708671,17939037,598149199,15214620,745273,44196397,250831586,378223565,21176417,65646293,503579230,17230018,373951619,53297035,1374527978,407137170,257827156,176400317,169969771,66561957,78546352,329303394,6475722,78035324,600194036,181907535,1205666185,27816957,1054326152,68390700,334614829,31371926,43207644,32375516,225932374,43492132,116701868,29170474,19456870,40914569,20304556,15888142,334488320,511097213,14561327,25791837,49317804,424020215,273383780,30814395,30852503,21292944,5520332,48651868,14671837,72725663,33338077,17858193,7899052,30639567,406083970,249497487,74543,17503180,18448750,150519208,898371,112880396,21191567,567705818,7315022,252543357,577798385,298527546,239284645,17444309,508110571,218167872,18923195,12,17100329,42455153,571491988,14589257,92727851,24564883,6880,78041067,541724545,166739404,3840,22588936,16350858,26189696,586,24289404,3475,108698830,59949396,52613032,213855080,16142240,473498327,21834394,251844666,19366976,268381315,95141340,6778812,163468416,405136915,1267041,11740902,36079474,40456367,1000591,14999454,21082741,235741536,657863,14243030,1081,254507180,16664291,19210648,94682674,212511043,65581771,151796023,569033585,8287602,22747624,6516132,14500709,677933,14793506,402957957,557454411,8317932,190533521,8504952,1054521,197962366,14092590,132340401,309951877,181096818,414519804,15755519,92413756,14967672,14445920,540425623,373413896,14307228,186740669,550589842,9106622,7676722,310839630,9520772,260684611,191334657,34257807,115667735,15996963,501625529,160191295,322658104,491550269,513766127,511147157,374498833,431535555,408193749,24684877,423293779,233830388,531729008,365766740,56596744,14381036,19429964,243284052,8460032,183749519,297586910,407304219,126523687,19085108,413616506,168857946,15188235,431542058,252535878,14314500,18593650,4928781,44826246,205963730,109867106,14278978,15363341,282434241,304210747,74630135,20194104,288575853,119070272,466310992,47913254,262098482,66330367,71695193,440476664,375839907,281896895,18181705,22204844,14474599,38448399,20115812,135400632,17433901,1073761,14599126,17098067,78194038,17420537,6249902,32148489,366865469,21380002,34270684,57961091,237507666,18479184,11827122,149072105,14777529,47071455,41858914,388856816,25470584,14863890,439774596,71630332,11447312,456228469,16878874,24693686,131475221,321206343,16210968,32756754,23423553,20569367,467155554,244719708,52410697,455214376,423731825,450226400,146862054,23292721,247732003,16849887,360495519,123543362,479673980,411904878,22356478,374952014,384293883,178956661,149142585,377796166,18552088,20215898,302475974,471628328,200716446,369218507,368708962,1331551,298315153,146879421,395826772,21162266,148142411,15423671,14900275,18173336,14104965,19374104,125625006,231730551,415765530,112679183,7512,215857426,412831279,43014478,10706,41003985,14189878,130338010,28060716,96710406,4641021,259559783,349170833,127475673,280330423,17726639,330179472,18966165,278252108,178503255,14077095,292129641,52558567,243454963,335358150,19500345,372075189,249639024,101937286,18009367,252405424,255327700,448649580,190177160,148613127,24137054,138278044,21954001,158568333,52339517,150146259,312391268,275870003,292715332,24685056,180183677,411652759,136826054,15125371],"next_cursor":0,"next_cursor_str":"0","previous_cursor":0,"previous_cursor_str":"0"}'
157
+ http_version:
158
+ recorded_at: Wed, 08 Apr 2015 04:23:08 GMT
159
+ recorded_with: VCR 2.9.3
@@ -0,0 +1,337 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: https://api.twitter.com/1.1/account/verify_credentials.json
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ Accept:
11
+ - application/json
12
+ User-Agent:
13
+ - TwitterRubyGem/5.14.0
14
+ Authorization:
15
+ - OAuth oauth_consumer_key="MxzWRgtXC2CVc71azEnN9u2Df", oauth_nonce="977f1eab5462c329d0195b9c61d2dff0",
16
+ oauth_signature="dJVOoIiH2JpgVybxctM%2BQOCZ%2BTE%3D", oauth_signature_method="HMAC-SHA1",
17
+ oauth_timestamp="1428466719", oauth_token="410739240-pHPJnKJsQufXJXrH2j2gmhWx923Y4O3b1ziOZ3gi",
18
+ oauth_version="1.0"
19
+ Accept-Encoding:
20
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
21
+ response:
22
+ status:
23
+ code: 200
24
+ message: OK
25
+ headers:
26
+ Cache-Control:
27
+ - no-cache, no-store, must-revalidate, pre-check=0, post-check=0
28
+ Content-Disposition:
29
+ - attachment; filename=json.json
30
+ Content-Length:
31
+ - '1348'
32
+ Content-Type:
33
+ - application/json;charset=utf-8
34
+ Date:
35
+ - Wed, 08 Apr 2015 04:18:42 GMT
36
+ Expires:
37
+ - Tue, 31 Mar 1981 05:00:00 GMT
38
+ Last-Modified:
39
+ - Wed, 08 Apr 2015 04:18:42 GMT
40
+ Pragma:
41
+ - no-cache
42
+ Server:
43
+ - tsa_a
44
+ Set-Cookie:
45
+ - guest_id=v1%3A142846672252953062; Domain=.twitter.com; Path=/; Expires=Fri,
46
+ 07-Apr-2017 04:18:42 UTC
47
+ - lang=en
48
+ Status:
49
+ - 200 OK
50
+ Strict-Transport-Security:
51
+ - max-age=631138519
52
+ X-Access-Level:
53
+ - read-write
54
+ X-Connection-Hash:
55
+ - fbbb804e4a0f6823579f736d9de48c85
56
+ X-Content-Type-Options:
57
+ - nosniff
58
+ X-Frame-Options:
59
+ - SAMEORIGIN
60
+ X-Rate-Limit-Limit:
61
+ - '15'
62
+ X-Rate-Limit-Remaining:
63
+ - '14'
64
+ X-Rate-Limit-Reset:
65
+ - '1428467622'
66
+ X-Response-Time:
67
+ - '137'
68
+ X-Transaction:
69
+ - 27e4789a08dd5929
70
+ X-Twitter-Response-Tags:
71
+ - BouncerCompliant
72
+ - BouncerExempt
73
+ X-Xss-Protection:
74
+ - 1; mode=block
75
+ body:
76
+ encoding: UTF-8
77
+ string: '{"id":410739240,"id_str":"410739240","name":"William Porter","screen_name":"willports","location":"Melbourne,
78
+ Australia","profile_location":null,"description":"Startup enthusiast, basketballer,
79
+ computer science major at RMIT and software developer at Papercloud","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":232,"friends_count":404,"listed_count":22,"created_at":"Sat
80
+ Nov 12 14:09:45 +0000 2011","favourites_count":38,"utc_offset":36000,"time_zone":"Melbourne","geo_enabled":false,"verified":false,"statuses_count":163,"lang":"en","status":{"created_at":"Thu
81
+ Feb 05 08:20:26 +0000 2015","id":563250784351948800,"id_str":"563250784351948800","text":"RT
82
+ @PapercloudAUS: Our new website has just launched! Check out some of our latest
83
+ work. http:\/\/t.co\/3HUXlv7HUE http:\/\/t.co\/vAHoOzCWzf","source":"\u003ca
84
+ href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter
85
+ for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed
86
+ Feb 04 23:53:59 +0000 2015","id":563123334750027776,"id_str":"563123334750027776","text":"Our
87
+ new website has just launched! Check out some of our latest work. http:\/\/t.co\/3HUXlv7HUE
88
+ http:\/\/t.co\/vAHoOzCWzf","source":"\u003ca href=\"http:\/\/twitter.com\"
89
+ rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":4,"favorite_count":5,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"http:\/\/t.co\/3HUXlv7HUE","expanded_url":"http:\/\/papercloud.com.au\/","display_url":"papercloud.com.au","indices":[70,92]}],"media":[{"id":563123333667880961,"id_str":"563123333667880961","indices":[93,115],"media_url":"http:\/\/pbs.twimg.com\/media\/B9CdsDwCAAEjQ7J.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/B9CdsDwCAAEjQ7J.png","url":"http:\/\/t.co\/vAHoOzCWzf","display_url":"pic.twitter.com\/vAHoOzCWzf","expanded_url":"http:\/\/twitter.com\/PapercloudAUS\/status\/563123334750027776\/photo\/1","type":"photo","sizes":{"large":{"w":800,"h":800,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"favorited":false,"retweeted":true,"possibly_sensitive":false,"lang":"en"},"retweet_count":4,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"PapercloudAUS","name":"Papercloud","id":604417908,"id_str":"604417908","indices":[3,17]}],"urls":[{"url":"http:\/\/t.co\/3HUXlv7HUE","expanded_url":"http:\/\/papercloud.com.au\/","display_url":"papercloud.com.au","indices":[89,111]}],"media":[{"id":563123333667880961,"id_str":"563123333667880961","indices":[112,134],"media_url":"http:\/\/pbs.twimg.com\/media\/B9CdsDwCAAEjQ7J.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/B9CdsDwCAAEjQ7J.png","url":"http:\/\/t.co\/vAHoOzCWzf","display_url":"pic.twitter.com\/vAHoOzCWzf","expanded_url":"http:\/\/twitter.com\/PapercloudAUS\/status\/563123334750027776\/photo\/1","type":"photo","sizes":{"large":{"w":800,"h":800,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":563123334750027776,"source_status_id_str":"563123334750027776","source_user_id":604417908,"source_user_id_str":"604417908"}]},"favorited":false,"retweeted":true,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2421220373\/u8kjwo6me39pos7nolzj_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2421220373\/u8kjwo6me39pos7nolzj_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}'
90
+ http_version:
91
+ recorded_at: Wed, 08 Apr 2015 04:18:42 GMT
92
+ - request:
93
+ method: get
94
+ uri: https://api.twitter.com/1.1/account/verify_credentials.json
95
+ body:
96
+ encoding: US-ASCII
97
+ string: ''
98
+ headers:
99
+ Accept:
100
+ - application/json
101
+ User-Agent:
102
+ - TwitterRubyGem/5.14.0
103
+ Authorization:
104
+ - OAuth oauth_consumer_key="MxzWRgtXC2CVc71azEnN9u2Df", oauth_nonce="7ae306ca262203e3089c2eb8bc9f2c66",
105
+ oauth_signature="xXlUa1PlQOHbdt%2FQkKsyyMhRQlM%3D", oauth_signature_method="HMAC-SHA1",
106
+ oauth_timestamp="1428466722", oauth_token="410739240-pHPJnKJsQufXJXrH2j2gmhWx923Y4O3b1ziOZ3gi",
107
+ oauth_version="1.0"
108
+ Accept-Encoding:
109
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
110
+ response:
111
+ status:
112
+ code: 200
113
+ message: OK
114
+ headers:
115
+ Cache-Control:
116
+ - no-cache, no-store, must-revalidate, pre-check=0, post-check=0
117
+ Content-Disposition:
118
+ - attachment; filename=json.json
119
+ Content-Length:
120
+ - '1348'
121
+ Content-Type:
122
+ - application/json;charset=utf-8
123
+ Date:
124
+ - Wed, 08 Apr 2015 04:18:45 GMT
125
+ Expires:
126
+ - Tue, 31 Mar 1981 05:00:00 GMT
127
+ Last-Modified:
128
+ - Wed, 08 Apr 2015 04:18:44 GMT
129
+ Pragma:
130
+ - no-cache
131
+ Server:
132
+ - tsa_a
133
+ Set-Cookie:
134
+ - guest_id=v1%3A142846672493030546; Domain=.twitter.com; Path=/; Expires=Fri,
135
+ 07-Apr-2017 04:18:45 UTC
136
+ - lang=en
137
+ Status:
138
+ - 200 OK
139
+ Strict-Transport-Security:
140
+ - max-age=631138519
141
+ X-Access-Level:
142
+ - read-write
143
+ X-Connection-Hash:
144
+ - 3d995d51470e73f526ee6981671e61c7
145
+ X-Content-Type-Options:
146
+ - nosniff
147
+ X-Frame-Options:
148
+ - SAMEORIGIN
149
+ X-Rate-Limit-Limit:
150
+ - '15'
151
+ X-Rate-Limit-Remaining:
152
+ - '13'
153
+ X-Rate-Limit-Reset:
154
+ - '1428467622'
155
+ X-Response-Time:
156
+ - '255'
157
+ X-Transaction:
158
+ - a3b724282d43d65e
159
+ X-Twitter-Response-Tags:
160
+ - BouncerCompliant
161
+ - BouncerExempt
162
+ X-Xss-Protection:
163
+ - 1; mode=block
164
+ body:
165
+ encoding: UTF-8
166
+ string: '{"id":410739240,"id_str":"410739240","name":"William Porter","screen_name":"willports","location":"Melbourne,
167
+ Australia","profile_location":null,"description":"Startup enthusiast, basketballer,
168
+ computer science major at RMIT and software developer at Papercloud","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":232,"friends_count":404,"listed_count":22,"created_at":"Sat
169
+ Nov 12 14:09:45 +0000 2011","favourites_count":38,"utc_offset":36000,"time_zone":"Melbourne","geo_enabled":false,"verified":false,"statuses_count":163,"lang":"en","status":{"created_at":"Thu
170
+ Feb 05 08:20:26 +0000 2015","id":563250784351948800,"id_str":"563250784351948800","text":"RT
171
+ @PapercloudAUS: Our new website has just launched! Check out some of our latest
172
+ work. http:\/\/t.co\/3HUXlv7HUE http:\/\/t.co\/vAHoOzCWzf","source":"\u003ca
173
+ href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter
174
+ for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed
175
+ Feb 04 23:53:59 +0000 2015","id":563123334750027776,"id_str":"563123334750027776","text":"Our
176
+ new website has just launched! Check out some of our latest work. http:\/\/t.co\/3HUXlv7HUE
177
+ http:\/\/t.co\/vAHoOzCWzf","source":"\u003ca href=\"http:\/\/twitter.com\"
178
+ rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":4,"favorite_count":5,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"http:\/\/t.co\/3HUXlv7HUE","expanded_url":"http:\/\/papercloud.com.au\/","display_url":"papercloud.com.au","indices":[70,92]}],"media":[{"id":563123333667880961,"id_str":"563123333667880961","indices":[93,115],"media_url":"http:\/\/pbs.twimg.com\/media\/B9CdsDwCAAEjQ7J.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/B9CdsDwCAAEjQ7J.png","url":"http:\/\/t.co\/vAHoOzCWzf","display_url":"pic.twitter.com\/vAHoOzCWzf","expanded_url":"http:\/\/twitter.com\/PapercloudAUS\/status\/563123334750027776\/photo\/1","type":"photo","sizes":{"large":{"w":800,"h":800,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"favorited":false,"retweeted":true,"possibly_sensitive":false,"lang":"en"},"retweet_count":4,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"PapercloudAUS","name":"Papercloud","id":604417908,"id_str":"604417908","indices":[3,17]}],"urls":[{"url":"http:\/\/t.co\/3HUXlv7HUE","expanded_url":"http:\/\/papercloud.com.au\/","display_url":"papercloud.com.au","indices":[89,111]}],"media":[{"id":563123333667880961,"id_str":"563123333667880961","indices":[112,134],"media_url":"http:\/\/pbs.twimg.com\/media\/B9CdsDwCAAEjQ7J.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/B9CdsDwCAAEjQ7J.png","url":"http:\/\/t.co\/vAHoOzCWzf","display_url":"pic.twitter.com\/vAHoOzCWzf","expanded_url":"http:\/\/twitter.com\/PapercloudAUS\/status\/563123334750027776\/photo\/1","type":"photo","sizes":{"large":{"w":800,"h":800,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":563123334750027776,"source_status_id_str":"563123334750027776","source_user_id":604417908,"source_user_id_str":"604417908"}]},"favorited":false,"retweeted":true,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2421220373\/u8kjwo6me39pos7nolzj_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2421220373\/u8kjwo6me39pos7nolzj_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}'
179
+ http_version:
180
+ recorded_at: Wed, 08 Apr 2015 04:18:45 GMT
181
+ - request:
182
+ method: get
183
+ uri: https://api.twitter.com/1.1/account/verify_credentials.json?skip_status=true
184
+ body:
185
+ encoding: US-ASCII
186
+ string: ''
187
+ headers:
188
+ Accept:
189
+ - application/json
190
+ User-Agent:
191
+ - TwitterRubyGem/5.14.0
192
+ Authorization:
193
+ - OAuth oauth_consumer_key="MxzWRgtXC2CVc71azEnN9u2Df", oauth_nonce="ef36daac00e7cf33200d628d3df2e43b",
194
+ oauth_signature="YDsbaRfrqAoLWC%2F93xLxdOs2fKg%3D", oauth_signature_method="HMAC-SHA1",
195
+ oauth_timestamp="1428466725", oauth_token="410739240-pHPJnKJsQufXJXrH2j2gmhWx923Y4O3b1ziOZ3gi",
196
+ oauth_version="1.0"
197
+ Accept-Encoding:
198
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
199
+ response:
200
+ status:
201
+ code: 200
202
+ message: OK
203
+ headers:
204
+ Cache-Control:
205
+ - no-cache, no-store, must-revalidate, pre-check=0, post-check=0
206
+ Content-Disposition:
207
+ - attachment; filename=json.json
208
+ Content-Length:
209
+ - '625'
210
+ Content-Type:
211
+ - application/json;charset=utf-8
212
+ Date:
213
+ - Wed, 08 Apr 2015 04:18:46 GMT
214
+ Expires:
215
+ - Tue, 31 Mar 1981 05:00:00 GMT
216
+ Last-Modified:
217
+ - Wed, 08 Apr 2015 04:18:46 GMT
218
+ Pragma:
219
+ - no-cache
220
+ Server:
221
+ - tsa_a
222
+ Set-Cookie:
223
+ - guest_id=v1%3A142846672613926157; Domain=.twitter.com; Path=/; Expires=Fri,
224
+ 07-Apr-2017 04:18:46 UTC
225
+ - lang=en
226
+ Status:
227
+ - 200 OK
228
+ Strict-Transport-Security:
229
+ - max-age=631138519
230
+ X-Access-Level:
231
+ - read-write
232
+ X-Connection-Hash:
233
+ - fbfc9ee771a4738480699a35c1dea281
234
+ X-Content-Type-Options:
235
+ - nosniff
236
+ X-Frame-Options:
237
+ - SAMEORIGIN
238
+ X-Rate-Limit-Limit:
239
+ - '15'
240
+ X-Rate-Limit-Remaining:
241
+ - '12'
242
+ X-Rate-Limit-Reset:
243
+ - '1428467622'
244
+ X-Response-Time:
245
+ - '102'
246
+ X-Transaction:
247
+ - df938f985d2585e8
248
+ X-Twitter-Response-Tags:
249
+ - BouncerCompliant
250
+ - BouncerExempt
251
+ X-Xss-Protection:
252
+ - 1; mode=block
253
+ body:
254
+ encoding: UTF-8
255
+ string: '{"id":410739240,"id_str":"410739240","name":"William Porter","screen_name":"willports","location":"Melbourne,
256
+ Australia","profile_location":null,"description":"Startup enthusiast, basketballer,
257
+ computer science major at RMIT and software developer at Papercloud","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":232,"friends_count":404,"listed_count":22,"created_at":"Sat
258
+ Nov 12 14:09:45 +0000 2011","favourites_count":38,"utc_offset":36000,"time_zone":"Melbourne","geo_enabled":false,"verified":false,"statuses_count":163,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2421220373\/u8kjwo6me39pos7nolzj_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2421220373\/u8kjwo6me39pos7nolzj_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}'
259
+ http_version:
260
+ recorded_at: Wed, 08 Apr 2015 04:18:46 GMT
261
+ - request:
262
+ method: get
263
+ uri: https://api.twitter.com/1.1/friends/ids.json?cursor=-1&user_id=410739240
264
+ body:
265
+ encoding: US-ASCII
266
+ string: ''
267
+ headers:
268
+ Accept:
269
+ - application/json
270
+ User-Agent:
271
+ - TwitterRubyGem/5.14.0
272
+ Authorization:
273
+ - OAuth oauth_consumer_key="MxzWRgtXC2CVc71azEnN9u2Df", oauth_nonce="9aeda46e9bd8147dab089d89cc601b44",
274
+ oauth_signature="SwxUC0slOVhtQrVwbwIXrTQn3%2Bk%3D", oauth_signature_method="HMAC-SHA1",
275
+ oauth_timestamp="1428466726", oauth_token="410739240-pHPJnKJsQufXJXrH2j2gmhWx923Y4O3b1ziOZ3gi",
276
+ oauth_version="1.0"
277
+ Accept-Encoding:
278
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
279
+ response:
280
+ status:
281
+ code: 200
282
+ message: OK
283
+ headers:
284
+ Cache-Control:
285
+ - no-cache, no-store, must-revalidate, pre-check=0, post-check=0
286
+ Content-Disposition:
287
+ - attachment; filename=json.json
288
+ Content-Length:
289
+ - '2040'
290
+ Content-Type:
291
+ - application/json;charset=utf-8
292
+ Date:
293
+ - Wed, 08 Apr 2015 04:18:47 GMT
294
+ Expires:
295
+ - Tue, 31 Mar 1981 05:00:00 GMT
296
+ Last-Modified:
297
+ - Wed, 08 Apr 2015 04:18:47 GMT
298
+ Pragma:
299
+ - no-cache
300
+ Server:
301
+ - tsa_a
302
+ Set-Cookie:
303
+ - guest_id=v1%3A142846672709886766; Domain=.twitter.com; Path=/; Expires=Fri,
304
+ 07-Apr-2017 04:18:47 UTC
305
+ - lang=en
306
+ Status:
307
+ - 200 OK
308
+ Strict-Transport-Security:
309
+ - max-age=631138519
310
+ X-Access-Level:
311
+ - read-write
312
+ X-Connection-Hash:
313
+ - 90c1d079d5434ea6471df74b498da9f9
314
+ X-Content-Type-Options:
315
+ - nosniff
316
+ X-Frame-Options:
317
+ - SAMEORIGIN
318
+ X-Rate-Limit-Limit:
319
+ - '15'
320
+ X-Rate-Limit-Remaining:
321
+ - '14'
322
+ X-Rate-Limit-Reset:
323
+ - '1428467627'
324
+ X-Response-Time:
325
+ - '116'
326
+ X-Transaction:
327
+ - 203c5402aea3afc7
328
+ X-Twitter-Response-Tags:
329
+ - BouncerCompliant
330
+ X-Xss-Protection:
331
+ - 1; mode=block
332
+ body:
333
+ encoding: UTF-8
334
+ string: '{"ids":[15169196,14321259,170662357,16601619,19080399,372041439,592535210,13334762,209058378,226993426,236588417,11348282,252481460,311340284,1008000139,289969718,35432131,990244189,65517538,1704785540,19691971,34605923,2526229286,26241538,16731023,604417908,34224632,291049995,118029798,22955180,47334057,278825529,358052219,1306819549,173006018,489068782,483409655,280612866,1946120082,826510740,95943980,40175742,21502768,974616096,47273137,35115377,14610920,4959061,10173942,567200327,184997446,81291664,556678231,30015171,76200378,295010895,14708671,17939037,598149199,15214620,745273,44196397,250831586,378223565,21176417,65646293,503579230,17230018,373951619,53297035,1374527978,407137170,257827156,176400317,169969771,66561957,78546352,329303394,6475722,78035324,600194036,181907535,1205666185,27816957,1054326152,68390700,334614829,31371926,43207644,32375516,225932374,43492132,116701868,29170474,19456870,40914569,20304556,15888142,334488320,511097213,14561327,25791837,49317804,424020215,273383780,30814395,30852503,21292944,5520332,48651868,14671837,72725663,33338077,17858193,7899052,30639567,406083970,249497487,74543,17503180,18448750,150519208,898371,112880396,21191567,567705818,7315022,252543357,577798385,298527546,239284645,17444309,508110571,218167872,18923195,12,17100329,42455153,571491988,14589257,92727851,24564883,6880,78041067,541724545,166739404,3840,22588936,16350858,26189696,586,24289404,3475,108698830,59949396,52613032,213855080,16142240,473498327,21834394,251844666,19366976,268381315,95141340,6778812,163468416,405136915,1267041,11740902,36079474,40456367,1000591,14999454,21082741,235741536,657863,14243030,1081,254507180,16664291,19210648,94682674,212511043,65581771,151796023,569033585,8287602,22747624,6516132,14500709,677933,14793506,402957957,557454411,8317932,190533521,8504952,1054521,197962366,14092590,132340401,309951877,181096818,414519804,15755519,92413756,14967672,14445920,540425623,373413896,14307228,186740669,550589842,9106622,7676722,310839630,9520772,260684611,191334657,34257807,115667735,15996963,501625529,160191295,322658104,491550269,513766127,511147157,374498833,431535555,408193749,24684877,423293779,233830388,531729008,365766740,56596744,14381036,19429964,243284052,8460032,183749519,297586910,407304219,126523687,19085108,413616506,168857946,15188235,431542058,252535878,14314500,18593650,4928781,44826246,205963730,109867106,14278978,15363341,282434241,304210747,74630135,20194104,288575853,119070272,466310992,47913254,262098482,66330367,71695193,440476664,375839907,281896895,18181705,22204844,14474599,38448399,20115812,135400632,17433901,1073761,14599126,17098067,78194038,17420537,6249902,32148489,366865469,21380002,34270684,57961091,237507666,18479184,11827122,149072105,14777529,47071455,41858914,388856816,25470584,14863890,439774596,71630332,11447312,456228469,16878874,24693686,131475221,321206343,16210968,32756754,23423553,20569367,467155554,244719708,52410697,455214376,423731825,450226400,146862054,23292721,247732003,16849887,360495519,123543362,479673980,411904878,22356478,374952014,384293883,178956661,149142585,377796166,18552088,20215898,302475974,471628328,200716446,369218507,368708962,1331551,298315153,146879421,395826772,21162266,148142411,15423671,14900275,18173336,14104965,19374104,125625006,231730551,415765530,112679183,7512,215857426,412831279,43014478,10706,41003985,14189878,130338010,28060716,96710406,4641021,259559783,349170833,127475673,280330423,17726639,330179472,18966165,278252108,178503255,14077095,292129641,52558567,243454963,335358150,19500345,372075189,249639024,101937286,18009367,252405424,255327700,448649580,190177160,148613127,24137054,138278044,21954001,158568333,52339517,150146259,312391268,275870003,292715332,24685056,180183677,411652759,136826054,15125371],"next_cursor":0,"next_cursor_str":"0","previous_cursor":0,"previous_cursor_str":"0"}'
335
+ http_version:
336
+ recorded_at: Wed, 08 Apr 2015 04:18:47 GMT
337
+ recorded_with: VCR 2.9.3