big-door 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
data/Gemfile CHANGED
@@ -7,6 +7,6 @@ gem "uuidtools", "~>2.1.1"
7
7
  group :test do
8
8
  gem 'fakeweb', '~>1.2.8'
9
9
  gem 'vcr', '~>1.0.3'
10
- gem 'rspec', '2.0.0.beta.19'
10
+ gem 'rspec', '2.0.0.beta.22'
11
11
  gem 'cucumber', '0.8.5'
12
12
  end
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.0
1
+ 0.1.1
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{big-door}
8
- s.version = "0.1.0"
8
+ s.version = "0.1.1"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Michael Lavrisha"]
@@ -54,6 +54,7 @@ Gem::Specification.new do |s|
54
54
  "vcr_cassettes/named_transaction_group/specific.yml",
55
55
  "vcr_cassettes/user/add_points.yml",
56
56
  "vcr_cassettes/user/all.yml",
57
+ "vcr_cassettes/user/blank.yml",
57
58
  "vcr_cassettes/user/create.yml",
58
59
  "vcr_cassettes/user/currency_balance.yml",
59
60
  "vcr_cassettes/user/delete.yml",
@@ -92,6 +92,9 @@ module BigDoor
92
92
  else
93
93
  return true
94
94
  end
95
+ elsif response.parsed_response.nil?
96
+ # if a destroy command is successful nil is returned from big-door
97
+ return true
95
98
  elsif response.parsed_response.first.is_a? Array
96
99
  content = response.parsed_response.first
97
100
  else
@@ -84,7 +84,9 @@ describe "BigDoor" do
84
84
  @user.destroy
85
85
  end
86
86
 
87
- BigDoor::User.find(email).should eql([])
87
+ VCR.use_cassette('user/blank', :record => :new_episodes) do
88
+ lambda {BigDoor::User.find(email)}.should raise_error BigDoor::BigDoorError
89
+ end
88
90
  end
89
91
  end
90
92
 
@@ -6,7 +6,7 @@ require 'vcr'
6
6
  require 'fakeweb'
7
7
 
8
8
  # optionally add autorun support
9
- require 'rspec/autorun'
9
+ # require 'rspec/autorun'
10
10
 
11
11
  Rspec.configure do |c|
12
12
 
@@ -14,14 +14,14 @@
14
14
  code: 200
15
15
  message: OK
16
16
  headers:
17
- connection:
18
- - Close
19
17
  content-type:
20
18
  - application/json; charset=utf-8
21
- server:
22
- - Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny8 with Suhosin-Patch mod_wsgi/2.5 Python/2.5.2
19
+ connection:
20
+ - Close
23
21
  date:
24
22
  - Thu, 26 Aug 2010 19:38:16 GMT
23
+ server:
24
+ - Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny8 with Suhosin-Patch mod_wsgi/2.5 Python/2.5.2
25
25
  content-length:
26
26
  - "3376"
27
27
  vary:
@@ -132,14 +132,14 @@
132
132
  code: 200
133
133
  message: OK
134
134
  headers:
135
- content-type:
136
- - application/json; charset=utf-8
137
135
  connection:
138
136
  - Close
139
- date:
140
- - Thu, 26 Aug 2010 19:41:08 GMT
137
+ content-type:
138
+ - application/json; charset=utf-8
141
139
  server:
142
140
  - Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny8 with Suhosin-Patch mod_wsgi/2.5 Python/2.5.2
141
+ date:
142
+ - Thu, 26 Aug 2010 19:41:08 GMT
143
143
  content-length:
144
144
  - "3376"
145
145
  vary:
@@ -250,14 +250,14 @@
250
250
  code: 200
251
251
  message: OK
252
252
  headers:
253
- connection:
254
- - Close
255
253
  content-type:
256
254
  - application/json; charset=utf-8
257
- server:
258
- - Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny8 with Suhosin-Patch mod_wsgi/2.5 Python/2.5.2
255
+ connection:
256
+ - Close
259
257
  date:
260
258
  - Thu, 26 Aug 2010 19:41:25 GMT
259
+ server:
260
+ - Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny8 with Suhosin-Patch mod_wsgi/2.5 Python/2.5.2
261
261
  content-length:
262
262
  - "3376"
263
263
  vary:
@@ -368,14 +368,14 @@
368
368
  code: 200
369
369
  message: OK
370
370
  headers:
371
- content-type:
372
- - application/json; charset=utf-8
373
371
  connection:
374
372
  - Close
375
- date:
376
- - Thu, 26 Aug 2010 19:42:45 GMT
373
+ content-type:
374
+ - application/json; charset=utf-8
377
375
  server:
378
376
  - Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny8 with Suhosin-Patch mod_wsgi/2.5 Python/2.5.2
377
+ date:
378
+ - Thu, 26 Aug 2010 19:42:45 GMT
379
379
  content-length:
380
380
  - "3376"
381
381
  vary:
@@ -486,14 +486,14 @@
486
486
  code: 200
487
487
  message: OK
488
488
  headers:
489
- connection:
490
- - Close
491
489
  content-type:
492
490
  - application/json; charset=utf-8
493
- server:
494
- - Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny8 with Suhosin-Patch mod_wsgi/2.5 Python/2.5.2
491
+ connection:
492
+ - Close
495
493
  date:
496
494
  - Mon, 30 Aug 2010 17:16:16 GMT
495
+ server:
496
+ - Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny8 with Suhosin-Patch mod_wsgi/2.5 Python/2.5.2
497
497
  content-length:
498
498
  - "4088"
499
499
  vary:
@@ -620,14 +620,14 @@
620
620
  code: 200
621
621
  message: OK
622
622
  headers:
623
- content-type:
624
- - application/json; charset=utf-8
625
623
  connection:
626
624
  - Close
627
- date:
628
- - Mon, 30 Aug 2010 17:47:06 GMT
625
+ content-type:
626
+ - application/json; charset=utf-8
629
627
  server:
630
628
  - Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny8 with Suhosin-Patch mod_wsgi/2.5 Python/2.5.2
629
+ date:
630
+ - Mon, 30 Aug 2010 17:47:06 GMT
631
631
  content-length:
632
632
  - "4088"
633
633
  vary:
@@ -754,14 +754,14 @@
754
754
  code: 200
755
755
  message: OK
756
756
  headers:
757
- connection:
758
- - Close
759
757
  content-type:
760
758
  - application/json; charset=utf-8
761
- server:
762
- - Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny8 with Suhosin-Patch mod_wsgi/2.5 Python/2.5.2
759
+ connection:
760
+ - Close
763
761
  date:
764
762
  - Mon, 30 Aug 2010 17:47:49 GMT
763
+ server:
764
+ - Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny8 with Suhosin-Patch mod_wsgi/2.5 Python/2.5.2
765
765
  content-length:
766
766
  - "4088"
767
767
  vary:
@@ -888,14 +888,14 @@
888
888
  code: 200
889
889
  message: OK
890
890
  headers:
891
- content-type:
892
- - application/json; charset=utf-8
893
891
  connection:
894
892
  - Close
895
- date:
896
- - Mon, 30 Aug 2010 17:48:23 GMT
893
+ content-type:
894
+ - application/json; charset=utf-8
897
895
  server:
898
896
  - Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny8 with Suhosin-Patch mod_wsgi/2.5 Python/2.5.2
897
+ date:
898
+ - Mon, 30 Aug 2010 17:48:23 GMT
899
899
  content-length:
900
900
  - "4088"
901
901
  vary:
@@ -1022,14 +1022,14 @@
1022
1022
  code: 200
1023
1023
  message: OK
1024
1024
  headers:
1025
- connection:
1026
- - Close
1027
1025
  content-type:
1028
1026
  - application/json; charset=utf-8
1029
- server:
1030
- - Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny8 with Suhosin-Patch mod_wsgi/2.5 Python/2.5.2
1027
+ connection:
1028
+ - Close
1031
1029
  date:
1032
1030
  - Mon, 30 Aug 2010 17:48:42 GMT
1031
+ server:
1032
+ - Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny8 with Suhosin-Patch mod_wsgi/2.5 Python/2.5.2
1033
1033
  content-length:
1034
1034
  - "4088"
1035
1035
  vary:
@@ -1156,14 +1156,14 @@
1156
1156
  code: 200
1157
1157
  message: OK
1158
1158
  headers:
1159
- content-type:
1160
- - application/json; charset=utf-8
1161
1159
  connection:
1162
1160
  - Close
1163
- date:
1164
- - Mon, 30 Aug 2010 17:48:51 GMT
1161
+ content-type:
1162
+ - application/json; charset=utf-8
1165
1163
  server:
1166
1164
  - Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny8 with Suhosin-Patch mod_wsgi/2.5 Python/2.5.2
1165
+ date:
1166
+ - Mon, 30 Aug 2010 17:48:51 GMT
1167
1167
  content-length:
1168
1168
  - "4088"
1169
1169
  vary:
@@ -1290,14 +1290,14 @@
1290
1290
  code: 200
1291
1291
  message: OK
1292
1292
  headers:
1293
- connection:
1294
- - Close
1295
1293
  content-type:
1296
1294
  - application/json; charset=utf-8
1297
- server:
1298
- - Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny9 with Suhosin-Patch mod_wsgi/2.5 Python/2.5.2
1295
+ connection:
1296
+ - Close
1299
1297
  date:
1300
1298
  - Fri, 03 Sep 2010 21:01:19 GMT
1299
+ server:
1300
+ - Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny9 with Suhosin-Patch mod_wsgi/2.5 Python/2.5.2
1301
1301
  content-length:
1302
1302
  - "7887"
1303
1303
  vary:
@@ -1516,14 +1516,14 @@
1516
1516
  code: 200
1517
1517
  message: OK
1518
1518
  headers:
1519
- content-type:
1520
- - application/json; charset=utf-8
1521
1519
  connection:
1522
1520
  - Close
1523
- date:
1524
- - Fri, 03 Sep 2010 21:03:11 GMT
1521
+ content-type:
1522
+ - application/json; charset=utf-8
1525
1523
  server:
1526
1524
  - Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny8 with Suhosin-Patch mod_wsgi/2.5 Python/2.5.2
1525
+ date:
1526
+ - Fri, 03 Sep 2010 21:03:11 GMT
1527
1527
  content-length:
1528
1528
  - "7887"
1529
1529
  vary:
@@ -1742,14 +1742,14 @@
1742
1742
  code: 200
1743
1743
  message: OK
1744
1744
  headers:
1745
- connection:
1746
- - Close
1747
1745
  content-type:
1748
1746
  - application/json; charset=utf-8
1749
- server:
1750
- - Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny8 with Suhosin-Patch mod_wsgi/2.5 Python/2.5.2
1747
+ connection:
1748
+ - Close
1751
1749
  date:
1752
1750
  - Tue, 07 Sep 2010 15:29:01 GMT
1751
+ server:
1752
+ - Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny8 with Suhosin-Patch mod_wsgi/2.5 Python/2.5.2
1753
1753
  content-length:
1754
1754
  - "7887"
1755
1755
  vary:
@@ -1968,14 +1968,14 @@
1968
1968
  code: 200
1969
1969
  message: OK
1970
1970
  headers:
1971
- content-type:
1972
- - application/json; charset=utf-8
1973
1971
  connection:
1974
1972
  - Close
1975
- date:
1976
- - Tue, 07 Sep 2010 15:30:42 GMT
1973
+ content-type:
1974
+ - application/json; charset=utf-8
1977
1975
  server:
1978
1976
  - Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny8 with Suhosin-Patch mod_wsgi/2.5 Python/2.5.2
1977
+ date:
1978
+ - Tue, 07 Sep 2010 15:30:42 GMT
1979
1979
  content-length:
1980
1980
  - "7887"
1981
1981
  vary:
@@ -2194,14 +2194,14 @@
2194
2194
  code: 200
2195
2195
  message: OK
2196
2196
  headers:
2197
- connection:
2198
- - Close
2199
2197
  content-type:
2200
2198
  - application/json; charset=utf-8
2201
- server:
2202
- - Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny8 with Suhosin-Patch mod_wsgi/2.5 Python/2.5.2
2199
+ connection:
2200
+ - Close
2203
2201
  date:
2204
2202
  - Tue, 07 Sep 2010 15:32:24 GMT
2203
+ server:
2204
+ - Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny8 with Suhosin-Patch mod_wsgi/2.5 Python/2.5.2
2205
2205
  content-length:
2206
2206
  - "7887"
2207
2207
  vary:
@@ -2420,14 +2420,14 @@
2420
2420
  code: 200
2421
2421
  message: OK
2422
2422
  headers:
2423
- content-type:
2424
- - application/json; charset=utf-8
2425
2423
  connection:
2426
2424
  - Close
2427
- date:
2428
- - Tue, 07 Sep 2010 15:33:15 GMT
2425
+ content-type:
2426
+ - application/json; charset=utf-8
2429
2427
  server:
2430
2428
  - Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny8 with Suhosin-Patch mod_wsgi/2.5 Python/2.5.2
2429
+ date:
2430
+ - Tue, 07 Sep 2010 15:33:15 GMT
2431
2431
  content-length:
2432
2432
  - "7887"
2433
2433
  vary:
@@ -2646,14 +2646,14 @@
2646
2646
  code: 200
2647
2647
  message: OK
2648
2648
  headers:
2649
- connection:
2650
- - Close
2651
2649
  content-type:
2652
2650
  - application/json; charset=utf-8
2653
- server:
2654
- - Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny8 with Suhosin-Patch mod_wsgi/2.5 Python/2.5.2
2651
+ connection:
2652
+ - Close
2655
2653
  date:
2656
2654
  - Tue, 07 Sep 2010 15:44:59 GMT
2655
+ server:
2656
+ - Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny8 with Suhosin-Patch mod_wsgi/2.5 Python/2.5.2
2657
2657
  content-length:
2658
2658
  - "7887"
2659
2659
  vary:
@@ -2872,14 +2872,14 @@
2872
2872
  code: 200
2873
2873
  message: OK
2874
2874
  headers:
2875
- content-type:
2876
- - application/json; charset=utf-8
2877
2875
  connection:
2878
2876
  - Close
2879
- date:
2880
- - Tue, 07 Sep 2010 15:50:07 GMT
2877
+ content-type:
2878
+ - application/json; charset=utf-8
2881
2879
  server:
2882
2880
  - Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny8 with Suhosin-Patch mod_wsgi/2.5 Python/2.5.2
2881
+ date:
2882
+ - Tue, 07 Sep 2010 15:50:07 GMT
2883
2883
  content-length:
2884
2884
  - "7887"
2885
2885
  vary:
@@ -3093,6 +3093,1130 @@
3093
3093
  - close
3094
3094
  host:
3095
3095
  - api.bigdoor.com
3096
+ response: !ruby/struct:VCR::Response
3097
+ status: !ruby/struct:VCR::ResponseStatus
3098
+ code: 200
3099
+ message: OK
3100
+ headers:
3101
+ content-type:
3102
+ - application/json; charset=utf-8
3103
+ connection:
3104
+ - Close
3105
+ date:
3106
+ - Tue, 07 Sep 2010 22:36:56 GMT
3107
+ server:
3108
+ - Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny8 with Suhosin-Patch mod_wsgi/2.5 Python/2.5.2
3109
+ content-length:
3110
+ - "7887"
3111
+ vary:
3112
+ - Authorization,Cookie
3113
+ body: |-
3114
+ [
3115
+ [
3116
+ {
3117
+ "read_only": 0,
3118
+ "modified_timestamp": 1283370675,
3119
+ "resource_name": "end_user",
3120
+ "award_summaries": [],
3121
+ "level_summaries": [],
3122
+ "sent_good_summaries": [],
3123
+ "currency_balances": [],
3124
+ "created_timestamp": 1283370675,
3125
+ "end_user_login": "ben3@trada.com",
3126
+ "guid": "48126440b60211df8e4e8165154431f0",
3127
+ "received_good_summaries": []
3128
+ },
3129
+ {
3130
+ "read_only": 0,
3131
+ "modified_timestamp": 1283370466,
3132
+ "resource_name": "end_user",
3133
+ "award_summaries": [],
3134
+ "level_summaries": [],
3135
+ "sent_good_summaries": [],
3136
+ "currency_balances": [],
3137
+ "created_timestamp": 1283370466,
3138
+ "end_user_login": "bgood@trada.com",
3139
+ "guid": "cb6d5d59b60111df9baa35b87fd77d7d",
3140
+ "received_good_summaries": []
3141
+ },
3142
+ {
3143
+ "read_only": 0,
3144
+ "modified_timestamp": 1283370676,
3145
+ "resource_name": "end_user",
3146
+ "award_summaries": [],
3147
+ "level_summaries": [],
3148
+ "sent_good_summaries": [],
3149
+ "currency_balances": [],
3150
+ "created_timestamp": 1283370676,
3151
+ "end_user_login": "billyBubba@trada.com",
3152
+ "guid": "4846766eb60211dfb637f49aee0edd4e",
3153
+ "received_good_summaries": []
3154
+ },
3155
+ {
3156
+ "read_only": 0,
3157
+ "modified_timestamp": 1283370676,
3158
+ "resource_name": "end_user",
3159
+ "award_summaries": [],
3160
+ "level_summaries": [],
3161
+ "sent_good_summaries": [],
3162
+ "currency_balances": [],
3163
+ "created_timestamp": 1283370676,
3164
+ "end_user_login": "bobbyJoe@trada.com",
3165
+ "guid": "4883483db60211df8e8e5dc813df7bd4",
3166
+ "received_good_summaries": []
3167
+ },
3168
+ {
3169
+ "read_only": 0,
3170
+ "modified_timestamp": 1282851345,
3171
+ "resource_name": "end_user",
3172
+ "award_summaries": [],
3173
+ "level_summaries": [],
3174
+ "sent_good_summaries": [],
3175
+ "currency_balances": [
3176
+ {
3177
+ "end_user_description": null,
3178
+ "transaction_group_id": "b294b1e88f6834be1e68ba5d8f5c3b02",
3179
+ "modified_timestamp": 1283545651,
3180
+ "pub_title": "current_balance",
3181
+ "urls": [],
3182
+ "current_balance": "190.00",
3183
+ "adjustment_amount": "-50.00",
3184
+ "currency_id": 579,
3185
+ "previous_balance": "240.00",
3186
+ "currency_adjusted": false,
3187
+ "created_timestamp": 1282927935,
3188
+ "pub_description": "The current balance that a user has to use.",
3189
+ "end_user_title": "Current Balance"
3190
+ },
3191
+ {
3192
+ "end_user_description": null,
3193
+ "transaction_group_id": "f5e430ef25708bd8c1ead63fda5e198b",
3194
+ "modified_timestamp": 1283287174,
3195
+ "pub_title": "lifetime",
3196
+ "urls": [],
3197
+ "current_balance": "22.00",
3198
+ "adjustment_amount": "20.00",
3199
+ "currency_id": 690,
3200
+ "previous_balance": "2.00",
3201
+ "currency_adjusted": false,
3202
+ "created_timestamp": 1283283745,
3203
+ "pub_description": "The lifetime number of points a user has accrued.",
3204
+ "end_user_title": "Lifetime"
3205
+ }
3206
+ ],
3207
+ "created_timestamp": 1282851345,
3208
+ "end_user_login": "fakeemail@trada.com",
3209
+ "guid": "1ef9e7b0b14911df91a9c5fca3bf701b",
3210
+ "received_good_summaries": []
3211
+ },
3212
+ {
3213
+ "read_only": 0,
3214
+ "modified_timestamp": 1282851363,
3215
+ "resource_name": "end_user",
3216
+ "award_summaries": [],
3217
+ "level_summaries": [],
3218
+ "sent_good_summaries": [],
3219
+ "currency_balances": [],
3220
+ "created_timestamp": 1282851363,
3221
+ "end_user_login": "fakeemailer@trada.com",
3222
+ "guid": "29fc6bf5b14911dfa15a55a9222eea83",
3223
+ "received_good_summaries": []
3224
+ },
3225
+ {
3226
+ "read_only": 0,
3227
+ "modified_timestamp": 1283541568,
3228
+ "resource_name": "end_user",
3229
+ "award_summaries": [],
3230
+ "level_summaries": [],
3231
+ "sent_good_summaries": [],
3232
+ "currency_balances": [],
3233
+ "created_timestamp": 1283541568,
3234
+ "end_user_login": "Joe Schmoe",
3235
+ "guid": "2c248f23b79011dfa2eb7890526bdabd",
3236
+ "received_good_summaries": []
3237
+ },
3238
+ {
3239
+ "read_only": 0,
3240
+ "modified_timestamp": 1283370457,
3241
+ "resource_name": "end_user",
3242
+ "award_summaries": [],
3243
+ "level_summaries": [],
3244
+ "sent_good_summaries": [],
3245
+ "currency_balances": [
3246
+ {
3247
+ "end_user_description": null,
3248
+ "transaction_group_id": "f46455c3dbca2276c8c7b25f4792a7c1",
3249
+ "modified_timestamp": 1283545678,
3250
+ "pub_title": "current_balance",
3251
+ "urls": [],
3252
+ "current_balance": "80.00",
3253
+ "adjustment_amount": "-20.00",
3254
+ "currency_id": 579,
3255
+ "previous_balance": "100.00",
3256
+ "currency_adjusted": false,
3257
+ "created_timestamp": 1283370627,
3258
+ "pub_description": "The current balance that a user has to use.",
3259
+ "end_user_title": "Current Balance"
3260
+ },
3261
+ {
3262
+ "end_user_description": null,
3263
+ "transaction_group_id": "3c5ebc220e9b1ae4dd2b93d99da0af26",
3264
+ "modified_timestamp": 1283372000,
3265
+ "pub_title": "lifetime",
3266
+ "urls": [],
3267
+ "current_balance": "100.00",
3268
+ "adjustment_amount": "20.00",
3269
+ "currency_id": 690,
3270
+ "previous_balance": "80.00",
3271
+ "currency_adjusted": false,
3272
+ "created_timestamp": 1283370627,
3273
+ "pub_description": "The lifetime number of points a user has accrued.",
3274
+ "end_user_title": "Lifetime"
3275
+ }
3276
+ ],
3277
+ "created_timestamp": 1283370457,
3278
+ "end_user_login": "opt01@trada.com",
3279
+ "guid": "c5cd2214b60111df96607abeee25c5e6",
3280
+ "received_good_summaries": []
3281
+ },
3282
+ {
3283
+ "read_only": 0,
3284
+ "modified_timestamp": 1283370458,
3285
+ "resource_name": "end_user",
3286
+ "award_summaries": [],
3287
+ "level_summaries": [],
3288
+ "sent_good_summaries": [],
3289
+ "currency_balances": [],
3290
+ "created_timestamp": 1283370458,
3291
+ "end_user_login": "opt02@trada.com",
3292
+ "guid": "c653132eb60111df877aad1f3208b4d8",
3293
+ "received_good_summaries": []
3294
+ },
3295
+ {
3296
+ "read_only": 0,
3297
+ "modified_timestamp": 1283370458,
3298
+ "resource_name": "end_user",
3299
+ "award_summaries": [],
3300
+ "level_summaries": [],
3301
+ "sent_good_summaries": [],
3302
+ "currency_balances": [],
3303
+ "created_timestamp": 1283370458,
3304
+ "end_user_login": "opt03@trada.com",
3305
+ "guid": "c6a07151b60111df944148bb0f828597",
3306
+ "received_good_summaries": []
3307
+ }
3308
+ ],
3309
+ {}
3310
+ ]
3311
+ http_version: "1.1"
3312
+ - !ruby/struct:VCR::HTTPInteraction
3313
+ request: !ruby/struct:VCR::Request
3314
+ method: :get
3315
+ uri: http://api.bigdoor.com:80/api/publisher/0d38d9cd41b0440bbf22c0720be58b27/end_user?sig=7c79492d8d32b918dd287ddac445d6eee32d77fae300645e4672316d1d21add0&time=1283899197.52&format=json
3316
+ body:
3317
+ headers:
3318
+ connection:
3319
+ - close
3320
+ host:
3321
+ - api.bigdoor.com
3322
+ response: !ruby/struct:VCR::Response
3323
+ status: !ruby/struct:VCR::ResponseStatus
3324
+ code: 200
3325
+ message: OK
3326
+ headers:
3327
+ connection:
3328
+ - Close
3329
+ content-type:
3330
+ - application/json; charset=utf-8
3331
+ server:
3332
+ - Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny8 with Suhosin-Patch mod_wsgi/2.5 Python/2.5.2
3333
+ date:
3334
+ - Tue, 07 Sep 2010 22:39:57 GMT
3335
+ content-length:
3336
+ - "7887"
3337
+ vary:
3338
+ - Authorization,Cookie
3339
+ body: |-
3340
+ [
3341
+ [
3342
+ {
3343
+ "read_only": 0,
3344
+ "modified_timestamp": 1283370675,
3345
+ "resource_name": "end_user",
3346
+ "award_summaries": [],
3347
+ "level_summaries": [],
3348
+ "sent_good_summaries": [],
3349
+ "currency_balances": [],
3350
+ "created_timestamp": 1283370675,
3351
+ "end_user_login": "ben3@trada.com",
3352
+ "guid": "48126440b60211df8e4e8165154431f0",
3353
+ "received_good_summaries": []
3354
+ },
3355
+ {
3356
+ "read_only": 0,
3357
+ "modified_timestamp": 1283370466,
3358
+ "resource_name": "end_user",
3359
+ "award_summaries": [],
3360
+ "level_summaries": [],
3361
+ "sent_good_summaries": [],
3362
+ "currency_balances": [],
3363
+ "created_timestamp": 1283370466,
3364
+ "end_user_login": "bgood@trada.com",
3365
+ "guid": "cb6d5d59b60111df9baa35b87fd77d7d",
3366
+ "received_good_summaries": []
3367
+ },
3368
+ {
3369
+ "read_only": 0,
3370
+ "modified_timestamp": 1283370676,
3371
+ "resource_name": "end_user",
3372
+ "award_summaries": [],
3373
+ "level_summaries": [],
3374
+ "sent_good_summaries": [],
3375
+ "currency_balances": [],
3376
+ "created_timestamp": 1283370676,
3377
+ "end_user_login": "billyBubba@trada.com",
3378
+ "guid": "4846766eb60211dfb637f49aee0edd4e",
3379
+ "received_good_summaries": []
3380
+ },
3381
+ {
3382
+ "read_only": 0,
3383
+ "modified_timestamp": 1283370676,
3384
+ "resource_name": "end_user",
3385
+ "award_summaries": [],
3386
+ "level_summaries": [],
3387
+ "sent_good_summaries": [],
3388
+ "currency_balances": [],
3389
+ "created_timestamp": 1283370676,
3390
+ "end_user_login": "bobbyJoe@trada.com",
3391
+ "guid": "4883483db60211df8e8e5dc813df7bd4",
3392
+ "received_good_summaries": []
3393
+ },
3394
+ {
3395
+ "read_only": 0,
3396
+ "modified_timestamp": 1282851345,
3397
+ "resource_name": "end_user",
3398
+ "award_summaries": [],
3399
+ "level_summaries": [],
3400
+ "sent_good_summaries": [],
3401
+ "currency_balances": [
3402
+ {
3403
+ "end_user_description": null,
3404
+ "transaction_group_id": "b294b1e88f6834be1e68ba5d8f5c3b02",
3405
+ "modified_timestamp": 1283545651,
3406
+ "pub_title": "current_balance",
3407
+ "urls": [],
3408
+ "current_balance": "190.00",
3409
+ "adjustment_amount": "-50.00",
3410
+ "currency_id": 579,
3411
+ "previous_balance": "240.00",
3412
+ "currency_adjusted": false,
3413
+ "created_timestamp": 1282927935,
3414
+ "pub_description": "The current balance that a user has to use.",
3415
+ "end_user_title": "Current Balance"
3416
+ },
3417
+ {
3418
+ "end_user_description": null,
3419
+ "transaction_group_id": "f5e430ef25708bd8c1ead63fda5e198b",
3420
+ "modified_timestamp": 1283287174,
3421
+ "pub_title": "lifetime",
3422
+ "urls": [],
3423
+ "current_balance": "22.00",
3424
+ "adjustment_amount": "20.00",
3425
+ "currency_id": 690,
3426
+ "previous_balance": "2.00",
3427
+ "currency_adjusted": false,
3428
+ "created_timestamp": 1283283745,
3429
+ "pub_description": "The lifetime number of points a user has accrued.",
3430
+ "end_user_title": "Lifetime"
3431
+ }
3432
+ ],
3433
+ "created_timestamp": 1282851345,
3434
+ "end_user_login": "fakeemail@trada.com",
3435
+ "guid": "1ef9e7b0b14911df91a9c5fca3bf701b",
3436
+ "received_good_summaries": []
3437
+ },
3438
+ {
3439
+ "read_only": 0,
3440
+ "modified_timestamp": 1282851363,
3441
+ "resource_name": "end_user",
3442
+ "award_summaries": [],
3443
+ "level_summaries": [],
3444
+ "sent_good_summaries": [],
3445
+ "currency_balances": [],
3446
+ "created_timestamp": 1282851363,
3447
+ "end_user_login": "fakeemailer@trada.com",
3448
+ "guid": "29fc6bf5b14911dfa15a55a9222eea83",
3449
+ "received_good_summaries": []
3450
+ },
3451
+ {
3452
+ "read_only": 0,
3453
+ "modified_timestamp": 1283541568,
3454
+ "resource_name": "end_user",
3455
+ "award_summaries": [],
3456
+ "level_summaries": [],
3457
+ "sent_good_summaries": [],
3458
+ "currency_balances": [],
3459
+ "created_timestamp": 1283541568,
3460
+ "end_user_login": "Joe Schmoe",
3461
+ "guid": "2c248f23b79011dfa2eb7890526bdabd",
3462
+ "received_good_summaries": []
3463
+ },
3464
+ {
3465
+ "read_only": 0,
3466
+ "modified_timestamp": 1283370457,
3467
+ "resource_name": "end_user",
3468
+ "award_summaries": [],
3469
+ "level_summaries": [],
3470
+ "sent_good_summaries": [],
3471
+ "currency_balances": [
3472
+ {
3473
+ "end_user_description": null,
3474
+ "transaction_group_id": "f46455c3dbca2276c8c7b25f4792a7c1",
3475
+ "modified_timestamp": 1283545678,
3476
+ "pub_title": "current_balance",
3477
+ "urls": [],
3478
+ "current_balance": "80.00",
3479
+ "adjustment_amount": "-20.00",
3480
+ "currency_id": 579,
3481
+ "previous_balance": "100.00",
3482
+ "currency_adjusted": false,
3483
+ "created_timestamp": 1283370627,
3484
+ "pub_description": "The current balance that a user has to use.",
3485
+ "end_user_title": "Current Balance"
3486
+ },
3487
+ {
3488
+ "end_user_description": null,
3489
+ "transaction_group_id": "3c5ebc220e9b1ae4dd2b93d99da0af26",
3490
+ "modified_timestamp": 1283372000,
3491
+ "pub_title": "lifetime",
3492
+ "urls": [],
3493
+ "current_balance": "100.00",
3494
+ "adjustment_amount": "20.00",
3495
+ "currency_id": 690,
3496
+ "previous_balance": "80.00",
3497
+ "currency_adjusted": false,
3498
+ "created_timestamp": 1283370627,
3499
+ "pub_description": "The lifetime number of points a user has accrued.",
3500
+ "end_user_title": "Lifetime"
3501
+ }
3502
+ ],
3503
+ "created_timestamp": 1283370457,
3504
+ "end_user_login": "opt01@trada.com",
3505
+ "guid": "c5cd2214b60111df96607abeee25c5e6",
3506
+ "received_good_summaries": []
3507
+ },
3508
+ {
3509
+ "read_only": 0,
3510
+ "modified_timestamp": 1283370458,
3511
+ "resource_name": "end_user",
3512
+ "award_summaries": [],
3513
+ "level_summaries": [],
3514
+ "sent_good_summaries": [],
3515
+ "currency_balances": [],
3516
+ "created_timestamp": 1283370458,
3517
+ "end_user_login": "opt02@trada.com",
3518
+ "guid": "c653132eb60111df877aad1f3208b4d8",
3519
+ "received_good_summaries": []
3520
+ },
3521
+ {
3522
+ "read_only": 0,
3523
+ "modified_timestamp": 1283370458,
3524
+ "resource_name": "end_user",
3525
+ "award_summaries": [],
3526
+ "level_summaries": [],
3527
+ "sent_good_summaries": [],
3528
+ "currency_balances": [],
3529
+ "created_timestamp": 1283370458,
3530
+ "end_user_login": "opt03@trada.com",
3531
+ "guid": "c6a07151b60111df944148bb0f828597",
3532
+ "received_good_summaries": []
3533
+ }
3534
+ ],
3535
+ {}
3536
+ ]
3537
+ http_version: "1.1"
3538
+ - !ruby/struct:VCR::HTTPInteraction
3539
+ request: !ruby/struct:VCR::Request
3540
+ method: :get
3541
+ uri: http://api.bigdoor.com:80/api/publisher/0d38d9cd41b0440bbf22c0720be58b27/end_user?sig=e7c481795e51231f85f6867baffde8bedcac3a9b1fb9d1e137577065e9520267&time=1283899546.34&format=json
3542
+ body:
3543
+ headers:
3544
+ connection:
3545
+ - close
3546
+ host:
3547
+ - api.bigdoor.com
3548
+ response: !ruby/struct:VCR::Response
3549
+ status: !ruby/struct:VCR::ResponseStatus
3550
+ code: 200
3551
+ message: OK
3552
+ headers:
3553
+ content-type:
3554
+ - application/json; charset=utf-8
3555
+ connection:
3556
+ - Close
3557
+ date:
3558
+ - Tue, 07 Sep 2010 22:45:46 GMT
3559
+ server:
3560
+ - Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny8 with Suhosin-Patch mod_wsgi/2.5 Python/2.5.2
3561
+ content-length:
3562
+ - "7887"
3563
+ vary:
3564
+ - Authorization,Cookie
3565
+ body: |-
3566
+ [
3567
+ [
3568
+ {
3569
+ "read_only": 0,
3570
+ "modified_timestamp": 1283370675,
3571
+ "resource_name": "end_user",
3572
+ "award_summaries": [],
3573
+ "level_summaries": [],
3574
+ "sent_good_summaries": [],
3575
+ "currency_balances": [],
3576
+ "created_timestamp": 1283370675,
3577
+ "end_user_login": "ben3@trada.com",
3578
+ "guid": "48126440b60211df8e4e8165154431f0",
3579
+ "received_good_summaries": []
3580
+ },
3581
+ {
3582
+ "read_only": 0,
3583
+ "modified_timestamp": 1283370466,
3584
+ "resource_name": "end_user",
3585
+ "award_summaries": [],
3586
+ "level_summaries": [],
3587
+ "sent_good_summaries": [],
3588
+ "currency_balances": [],
3589
+ "created_timestamp": 1283370466,
3590
+ "end_user_login": "bgood@trada.com",
3591
+ "guid": "cb6d5d59b60111df9baa35b87fd77d7d",
3592
+ "received_good_summaries": []
3593
+ },
3594
+ {
3595
+ "read_only": 0,
3596
+ "modified_timestamp": 1283370676,
3597
+ "resource_name": "end_user",
3598
+ "award_summaries": [],
3599
+ "level_summaries": [],
3600
+ "sent_good_summaries": [],
3601
+ "currency_balances": [],
3602
+ "created_timestamp": 1283370676,
3603
+ "end_user_login": "billyBubba@trada.com",
3604
+ "guid": "4846766eb60211dfb637f49aee0edd4e",
3605
+ "received_good_summaries": []
3606
+ },
3607
+ {
3608
+ "read_only": 0,
3609
+ "modified_timestamp": 1283370676,
3610
+ "resource_name": "end_user",
3611
+ "award_summaries": [],
3612
+ "level_summaries": [],
3613
+ "sent_good_summaries": [],
3614
+ "currency_balances": [],
3615
+ "created_timestamp": 1283370676,
3616
+ "end_user_login": "bobbyJoe@trada.com",
3617
+ "guid": "4883483db60211df8e8e5dc813df7bd4",
3618
+ "received_good_summaries": []
3619
+ },
3620
+ {
3621
+ "read_only": 0,
3622
+ "modified_timestamp": 1282851345,
3623
+ "resource_name": "end_user",
3624
+ "award_summaries": [],
3625
+ "level_summaries": [],
3626
+ "sent_good_summaries": [],
3627
+ "currency_balances": [
3628
+ {
3629
+ "end_user_description": null,
3630
+ "transaction_group_id": "b294b1e88f6834be1e68ba5d8f5c3b02",
3631
+ "modified_timestamp": 1283545651,
3632
+ "pub_title": "current_balance",
3633
+ "urls": [],
3634
+ "current_balance": "190.00",
3635
+ "adjustment_amount": "-50.00",
3636
+ "currency_id": 579,
3637
+ "previous_balance": "240.00",
3638
+ "currency_adjusted": false,
3639
+ "created_timestamp": 1282927935,
3640
+ "pub_description": "The current balance that a user has to use.",
3641
+ "end_user_title": "Current Balance"
3642
+ },
3643
+ {
3644
+ "end_user_description": null,
3645
+ "transaction_group_id": "f5e430ef25708bd8c1ead63fda5e198b",
3646
+ "modified_timestamp": 1283287174,
3647
+ "pub_title": "lifetime",
3648
+ "urls": [],
3649
+ "current_balance": "22.00",
3650
+ "adjustment_amount": "20.00",
3651
+ "currency_id": 690,
3652
+ "previous_balance": "2.00",
3653
+ "currency_adjusted": false,
3654
+ "created_timestamp": 1283283745,
3655
+ "pub_description": "The lifetime number of points a user has accrued.",
3656
+ "end_user_title": "Lifetime"
3657
+ }
3658
+ ],
3659
+ "created_timestamp": 1282851345,
3660
+ "end_user_login": "fakeemail@trada.com",
3661
+ "guid": "1ef9e7b0b14911df91a9c5fca3bf701b",
3662
+ "received_good_summaries": []
3663
+ },
3664
+ {
3665
+ "read_only": 0,
3666
+ "modified_timestamp": 1282851363,
3667
+ "resource_name": "end_user",
3668
+ "award_summaries": [],
3669
+ "level_summaries": [],
3670
+ "sent_good_summaries": [],
3671
+ "currency_balances": [],
3672
+ "created_timestamp": 1282851363,
3673
+ "end_user_login": "fakeemailer@trada.com",
3674
+ "guid": "29fc6bf5b14911dfa15a55a9222eea83",
3675
+ "received_good_summaries": []
3676
+ },
3677
+ {
3678
+ "read_only": 0,
3679
+ "modified_timestamp": 1283541568,
3680
+ "resource_name": "end_user",
3681
+ "award_summaries": [],
3682
+ "level_summaries": [],
3683
+ "sent_good_summaries": [],
3684
+ "currency_balances": [],
3685
+ "created_timestamp": 1283541568,
3686
+ "end_user_login": "Joe Schmoe",
3687
+ "guid": "2c248f23b79011dfa2eb7890526bdabd",
3688
+ "received_good_summaries": []
3689
+ },
3690
+ {
3691
+ "read_only": 0,
3692
+ "modified_timestamp": 1283370457,
3693
+ "resource_name": "end_user",
3694
+ "award_summaries": [],
3695
+ "level_summaries": [],
3696
+ "sent_good_summaries": [],
3697
+ "currency_balances": [
3698
+ {
3699
+ "end_user_description": null,
3700
+ "transaction_group_id": "f46455c3dbca2276c8c7b25f4792a7c1",
3701
+ "modified_timestamp": 1283545678,
3702
+ "pub_title": "current_balance",
3703
+ "urls": [],
3704
+ "current_balance": "80.00",
3705
+ "adjustment_amount": "-20.00",
3706
+ "currency_id": 579,
3707
+ "previous_balance": "100.00",
3708
+ "currency_adjusted": false,
3709
+ "created_timestamp": 1283370627,
3710
+ "pub_description": "The current balance that a user has to use.",
3711
+ "end_user_title": "Current Balance"
3712
+ },
3713
+ {
3714
+ "end_user_description": null,
3715
+ "transaction_group_id": "3c5ebc220e9b1ae4dd2b93d99da0af26",
3716
+ "modified_timestamp": 1283372000,
3717
+ "pub_title": "lifetime",
3718
+ "urls": [],
3719
+ "current_balance": "100.00",
3720
+ "adjustment_amount": "20.00",
3721
+ "currency_id": 690,
3722
+ "previous_balance": "80.00",
3723
+ "currency_adjusted": false,
3724
+ "created_timestamp": 1283370627,
3725
+ "pub_description": "The lifetime number of points a user has accrued.",
3726
+ "end_user_title": "Lifetime"
3727
+ }
3728
+ ],
3729
+ "created_timestamp": 1283370457,
3730
+ "end_user_login": "opt01@trada.com",
3731
+ "guid": "c5cd2214b60111df96607abeee25c5e6",
3732
+ "received_good_summaries": []
3733
+ },
3734
+ {
3735
+ "read_only": 0,
3736
+ "modified_timestamp": 1283370458,
3737
+ "resource_name": "end_user",
3738
+ "award_summaries": [],
3739
+ "level_summaries": [],
3740
+ "sent_good_summaries": [],
3741
+ "currency_balances": [],
3742
+ "created_timestamp": 1283370458,
3743
+ "end_user_login": "opt02@trada.com",
3744
+ "guid": "c653132eb60111df877aad1f3208b4d8",
3745
+ "received_good_summaries": []
3746
+ },
3747
+ {
3748
+ "read_only": 0,
3749
+ "modified_timestamp": 1283370458,
3750
+ "resource_name": "end_user",
3751
+ "award_summaries": [],
3752
+ "level_summaries": [],
3753
+ "sent_good_summaries": [],
3754
+ "currency_balances": [],
3755
+ "created_timestamp": 1283370458,
3756
+ "end_user_login": "opt03@trada.com",
3757
+ "guid": "c6a07151b60111df944148bb0f828597",
3758
+ "received_good_summaries": []
3759
+ }
3760
+ ],
3761
+ {}
3762
+ ]
3763
+ http_version: "1.1"
3764
+ - !ruby/struct:VCR::HTTPInteraction
3765
+ request: !ruby/struct:VCR::Request
3766
+ method: :get
3767
+ uri: http://api.bigdoor.com:80/api/publisher/0d38d9cd41b0440bbf22c0720be58b27/end_user?time=1283899777.49&format=json&sig=a4aa57794fd3daaded9822eda628e29f160d5a1df8cba7e3b902504a64c1bc60
3768
+ body:
3769
+ headers:
3770
+ connection:
3771
+ - close
3772
+ response: !ruby/struct:VCR::Response
3773
+ status: !ruby/struct:VCR::ResponseStatus
3774
+ code: 200
3775
+ message: OK
3776
+ headers:
3777
+ connection:
3778
+ - Close
3779
+ content-type:
3780
+ - application/json; charset=utf-8
3781
+ server:
3782
+ - Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny8 with Suhosin-Patch mod_wsgi/2.5 Python/2.5.2
3783
+ date:
3784
+ - Tue, 07 Sep 2010 22:49:37 GMT
3785
+ content-length:
3786
+ - "7887"
3787
+ vary:
3788
+ - Authorization,Cookie
3789
+ body: |-
3790
+ [
3791
+ [
3792
+ {
3793
+ "read_only": 0,
3794
+ "modified_timestamp": 1283370675,
3795
+ "resource_name": "end_user",
3796
+ "award_summaries": [],
3797
+ "level_summaries": [],
3798
+ "sent_good_summaries": [],
3799
+ "currency_balances": [],
3800
+ "created_timestamp": 1283370675,
3801
+ "end_user_login": "ben3@trada.com",
3802
+ "guid": "48126440b60211df8e4e8165154431f0",
3803
+ "received_good_summaries": []
3804
+ },
3805
+ {
3806
+ "read_only": 0,
3807
+ "modified_timestamp": 1283370466,
3808
+ "resource_name": "end_user",
3809
+ "award_summaries": [],
3810
+ "level_summaries": [],
3811
+ "sent_good_summaries": [],
3812
+ "currency_balances": [],
3813
+ "created_timestamp": 1283370466,
3814
+ "end_user_login": "bgood@trada.com",
3815
+ "guid": "cb6d5d59b60111df9baa35b87fd77d7d",
3816
+ "received_good_summaries": []
3817
+ },
3818
+ {
3819
+ "read_only": 0,
3820
+ "modified_timestamp": 1283370676,
3821
+ "resource_name": "end_user",
3822
+ "award_summaries": [],
3823
+ "level_summaries": [],
3824
+ "sent_good_summaries": [],
3825
+ "currency_balances": [],
3826
+ "created_timestamp": 1283370676,
3827
+ "end_user_login": "billyBubba@trada.com",
3828
+ "guid": "4846766eb60211dfb637f49aee0edd4e",
3829
+ "received_good_summaries": []
3830
+ },
3831
+ {
3832
+ "read_only": 0,
3833
+ "modified_timestamp": 1283370676,
3834
+ "resource_name": "end_user",
3835
+ "award_summaries": [],
3836
+ "level_summaries": [],
3837
+ "sent_good_summaries": [],
3838
+ "currency_balances": [],
3839
+ "created_timestamp": 1283370676,
3840
+ "end_user_login": "bobbyJoe@trada.com",
3841
+ "guid": "4883483db60211df8e8e5dc813df7bd4",
3842
+ "received_good_summaries": []
3843
+ },
3844
+ {
3845
+ "read_only": 0,
3846
+ "modified_timestamp": 1282851345,
3847
+ "resource_name": "end_user",
3848
+ "award_summaries": [],
3849
+ "level_summaries": [],
3850
+ "sent_good_summaries": [],
3851
+ "currency_balances": [
3852
+ {
3853
+ "end_user_description": null,
3854
+ "transaction_group_id": "b294b1e88f6834be1e68ba5d8f5c3b02",
3855
+ "modified_timestamp": 1283545651,
3856
+ "pub_title": "current_balance",
3857
+ "urls": [],
3858
+ "current_balance": "190.00",
3859
+ "adjustment_amount": "-50.00",
3860
+ "currency_id": 579,
3861
+ "previous_balance": "240.00",
3862
+ "currency_adjusted": false,
3863
+ "created_timestamp": 1282927935,
3864
+ "pub_description": "The current balance that a user has to use.",
3865
+ "end_user_title": "Current Balance"
3866
+ },
3867
+ {
3868
+ "end_user_description": null,
3869
+ "transaction_group_id": "f5e430ef25708bd8c1ead63fda5e198b",
3870
+ "modified_timestamp": 1283287174,
3871
+ "pub_title": "lifetime",
3872
+ "urls": [],
3873
+ "current_balance": "22.00",
3874
+ "adjustment_amount": "20.00",
3875
+ "currency_id": 690,
3876
+ "previous_balance": "2.00",
3877
+ "currency_adjusted": false,
3878
+ "created_timestamp": 1283283745,
3879
+ "pub_description": "The lifetime number of points a user has accrued.",
3880
+ "end_user_title": "Lifetime"
3881
+ }
3882
+ ],
3883
+ "created_timestamp": 1282851345,
3884
+ "end_user_login": "fakeemail@trada.com",
3885
+ "guid": "1ef9e7b0b14911df91a9c5fca3bf701b",
3886
+ "received_good_summaries": []
3887
+ },
3888
+ {
3889
+ "read_only": 0,
3890
+ "modified_timestamp": 1282851363,
3891
+ "resource_name": "end_user",
3892
+ "award_summaries": [],
3893
+ "level_summaries": [],
3894
+ "sent_good_summaries": [],
3895
+ "currency_balances": [],
3896
+ "created_timestamp": 1282851363,
3897
+ "end_user_login": "fakeemailer@trada.com",
3898
+ "guid": "29fc6bf5b14911dfa15a55a9222eea83",
3899
+ "received_good_summaries": []
3900
+ },
3901
+ {
3902
+ "read_only": 0,
3903
+ "modified_timestamp": 1283541568,
3904
+ "resource_name": "end_user",
3905
+ "award_summaries": [],
3906
+ "level_summaries": [],
3907
+ "sent_good_summaries": [],
3908
+ "currency_balances": [],
3909
+ "created_timestamp": 1283541568,
3910
+ "end_user_login": "Joe Schmoe",
3911
+ "guid": "2c248f23b79011dfa2eb7890526bdabd",
3912
+ "received_good_summaries": []
3913
+ },
3914
+ {
3915
+ "read_only": 0,
3916
+ "modified_timestamp": 1283370457,
3917
+ "resource_name": "end_user",
3918
+ "award_summaries": [],
3919
+ "level_summaries": [],
3920
+ "sent_good_summaries": [],
3921
+ "currency_balances": [
3922
+ {
3923
+ "end_user_description": null,
3924
+ "transaction_group_id": "f46455c3dbca2276c8c7b25f4792a7c1",
3925
+ "modified_timestamp": 1283545678,
3926
+ "pub_title": "current_balance",
3927
+ "urls": [],
3928
+ "current_balance": "80.00",
3929
+ "adjustment_amount": "-20.00",
3930
+ "currency_id": 579,
3931
+ "previous_balance": "100.00",
3932
+ "currency_adjusted": false,
3933
+ "created_timestamp": 1283370627,
3934
+ "pub_description": "The current balance that a user has to use.",
3935
+ "end_user_title": "Current Balance"
3936
+ },
3937
+ {
3938
+ "end_user_description": null,
3939
+ "transaction_group_id": "3c5ebc220e9b1ae4dd2b93d99da0af26",
3940
+ "modified_timestamp": 1283372000,
3941
+ "pub_title": "lifetime",
3942
+ "urls": [],
3943
+ "current_balance": "100.00",
3944
+ "adjustment_amount": "20.00",
3945
+ "currency_id": 690,
3946
+ "previous_balance": "80.00",
3947
+ "currency_adjusted": false,
3948
+ "created_timestamp": 1283370627,
3949
+ "pub_description": "The lifetime number of points a user has accrued.",
3950
+ "end_user_title": "Lifetime"
3951
+ }
3952
+ ],
3953
+ "created_timestamp": 1283370457,
3954
+ "end_user_login": "opt01@trada.com",
3955
+ "guid": "c5cd2214b60111df96607abeee25c5e6",
3956
+ "received_good_summaries": []
3957
+ },
3958
+ {
3959
+ "read_only": 0,
3960
+ "modified_timestamp": 1283370458,
3961
+ "resource_name": "end_user",
3962
+ "award_summaries": [],
3963
+ "level_summaries": [],
3964
+ "sent_good_summaries": [],
3965
+ "currency_balances": [],
3966
+ "created_timestamp": 1283370458,
3967
+ "end_user_login": "opt02@trada.com",
3968
+ "guid": "c653132eb60111df877aad1f3208b4d8",
3969
+ "received_good_summaries": []
3970
+ },
3971
+ {
3972
+ "read_only": 0,
3973
+ "modified_timestamp": 1283370458,
3974
+ "resource_name": "end_user",
3975
+ "award_summaries": [],
3976
+ "level_summaries": [],
3977
+ "sent_good_summaries": [],
3978
+ "currency_balances": [],
3979
+ "created_timestamp": 1283370458,
3980
+ "end_user_login": "opt03@trada.com",
3981
+ "guid": "c6a07151b60111df944148bb0f828597",
3982
+ "received_good_summaries": []
3983
+ }
3984
+ ],
3985
+ {}
3986
+ ]
3987
+ http_version: "1.1"
3988
+ - !ruby/struct:VCR::HTTPInteraction
3989
+ request: !ruby/struct:VCR::Request
3990
+ method: :get
3991
+ uri: http://api.bigdoor.com:80/api/publisher/0d38d9cd41b0440bbf22c0720be58b27/end_user?time=1283900535.11&format=json&sig=4b5b328b3e1bd815ae8d61274cb620413ed92e57a977fb93076eda3fa671a02a
3992
+ body:
3993
+ headers:
3994
+ connection:
3995
+ - close
3996
+ response: !ruby/struct:VCR::Response
3997
+ status: !ruby/struct:VCR::ResponseStatus
3998
+ code: 200
3999
+ message: OK
4000
+ headers:
4001
+ content-type:
4002
+ - application/json; charset=utf-8
4003
+ connection:
4004
+ - Close
4005
+ date:
4006
+ - Tue, 07 Sep 2010 23:02:15 GMT
4007
+ server:
4008
+ - Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny8 with Suhosin-Patch mod_wsgi/2.5 Python/2.5.2
4009
+ content-length:
4010
+ - "7887"
4011
+ vary:
4012
+ - Authorization,Cookie
4013
+ body: |-
4014
+ [
4015
+ [
4016
+ {
4017
+ "read_only": 0,
4018
+ "modified_timestamp": 1283370675,
4019
+ "resource_name": "end_user",
4020
+ "award_summaries": [],
4021
+ "level_summaries": [],
4022
+ "sent_good_summaries": [],
4023
+ "currency_balances": [],
4024
+ "created_timestamp": 1283370675,
4025
+ "end_user_login": "ben3@trada.com",
4026
+ "guid": "48126440b60211df8e4e8165154431f0",
4027
+ "received_good_summaries": []
4028
+ },
4029
+ {
4030
+ "read_only": 0,
4031
+ "modified_timestamp": 1283370466,
4032
+ "resource_name": "end_user",
4033
+ "award_summaries": [],
4034
+ "level_summaries": [],
4035
+ "sent_good_summaries": [],
4036
+ "currency_balances": [],
4037
+ "created_timestamp": 1283370466,
4038
+ "end_user_login": "bgood@trada.com",
4039
+ "guid": "cb6d5d59b60111df9baa35b87fd77d7d",
4040
+ "received_good_summaries": []
4041
+ },
4042
+ {
4043
+ "read_only": 0,
4044
+ "modified_timestamp": 1283370676,
4045
+ "resource_name": "end_user",
4046
+ "award_summaries": [],
4047
+ "level_summaries": [],
4048
+ "sent_good_summaries": [],
4049
+ "currency_balances": [],
4050
+ "created_timestamp": 1283370676,
4051
+ "end_user_login": "billyBubba@trada.com",
4052
+ "guid": "4846766eb60211dfb637f49aee0edd4e",
4053
+ "received_good_summaries": []
4054
+ },
4055
+ {
4056
+ "read_only": 0,
4057
+ "modified_timestamp": 1283370676,
4058
+ "resource_name": "end_user",
4059
+ "award_summaries": [],
4060
+ "level_summaries": [],
4061
+ "sent_good_summaries": [],
4062
+ "currency_balances": [],
4063
+ "created_timestamp": 1283370676,
4064
+ "end_user_login": "bobbyJoe@trada.com",
4065
+ "guid": "4883483db60211df8e8e5dc813df7bd4",
4066
+ "received_good_summaries": []
4067
+ },
4068
+ {
4069
+ "read_only": 0,
4070
+ "modified_timestamp": 1282851345,
4071
+ "resource_name": "end_user",
4072
+ "award_summaries": [],
4073
+ "level_summaries": [],
4074
+ "sent_good_summaries": [],
4075
+ "currency_balances": [
4076
+ {
4077
+ "end_user_description": null,
4078
+ "transaction_group_id": "b294b1e88f6834be1e68ba5d8f5c3b02",
4079
+ "modified_timestamp": 1283545651,
4080
+ "pub_title": "current_balance",
4081
+ "urls": [],
4082
+ "current_balance": "190.00",
4083
+ "adjustment_amount": "-50.00",
4084
+ "currency_id": 579,
4085
+ "previous_balance": "240.00",
4086
+ "currency_adjusted": false,
4087
+ "created_timestamp": 1282927935,
4088
+ "pub_description": "The current balance that a user has to use.",
4089
+ "end_user_title": "Current Balance"
4090
+ },
4091
+ {
4092
+ "end_user_description": null,
4093
+ "transaction_group_id": "f5e430ef25708bd8c1ead63fda5e198b",
4094
+ "modified_timestamp": 1283287174,
4095
+ "pub_title": "lifetime",
4096
+ "urls": [],
4097
+ "current_balance": "22.00",
4098
+ "adjustment_amount": "20.00",
4099
+ "currency_id": 690,
4100
+ "previous_balance": "2.00",
4101
+ "currency_adjusted": false,
4102
+ "created_timestamp": 1283283745,
4103
+ "pub_description": "The lifetime number of points a user has accrued.",
4104
+ "end_user_title": "Lifetime"
4105
+ }
4106
+ ],
4107
+ "created_timestamp": 1282851345,
4108
+ "end_user_login": "fakeemail@trada.com",
4109
+ "guid": "1ef9e7b0b14911df91a9c5fca3bf701b",
4110
+ "received_good_summaries": []
4111
+ },
4112
+ {
4113
+ "read_only": 0,
4114
+ "modified_timestamp": 1282851363,
4115
+ "resource_name": "end_user",
4116
+ "award_summaries": [],
4117
+ "level_summaries": [],
4118
+ "sent_good_summaries": [],
4119
+ "currency_balances": [],
4120
+ "created_timestamp": 1282851363,
4121
+ "end_user_login": "fakeemailer@trada.com",
4122
+ "guid": "29fc6bf5b14911dfa15a55a9222eea83",
4123
+ "received_good_summaries": []
4124
+ },
4125
+ {
4126
+ "read_only": 0,
4127
+ "modified_timestamp": 1283541568,
4128
+ "resource_name": "end_user",
4129
+ "award_summaries": [],
4130
+ "level_summaries": [],
4131
+ "sent_good_summaries": [],
4132
+ "currency_balances": [],
4133
+ "created_timestamp": 1283541568,
4134
+ "end_user_login": "Joe Schmoe",
4135
+ "guid": "2c248f23b79011dfa2eb7890526bdabd",
4136
+ "received_good_summaries": []
4137
+ },
4138
+ {
4139
+ "read_only": 0,
4140
+ "modified_timestamp": 1283370457,
4141
+ "resource_name": "end_user",
4142
+ "award_summaries": [],
4143
+ "level_summaries": [],
4144
+ "sent_good_summaries": [],
4145
+ "currency_balances": [
4146
+ {
4147
+ "end_user_description": null,
4148
+ "transaction_group_id": "f46455c3dbca2276c8c7b25f4792a7c1",
4149
+ "modified_timestamp": 1283545678,
4150
+ "pub_title": "current_balance",
4151
+ "urls": [],
4152
+ "current_balance": "80.00",
4153
+ "adjustment_amount": "-20.00",
4154
+ "currency_id": 579,
4155
+ "previous_balance": "100.00",
4156
+ "currency_adjusted": false,
4157
+ "created_timestamp": 1283370627,
4158
+ "pub_description": "The current balance that a user has to use.",
4159
+ "end_user_title": "Current Balance"
4160
+ },
4161
+ {
4162
+ "end_user_description": null,
4163
+ "transaction_group_id": "3c5ebc220e9b1ae4dd2b93d99da0af26",
4164
+ "modified_timestamp": 1283372000,
4165
+ "pub_title": "lifetime",
4166
+ "urls": [],
4167
+ "current_balance": "100.00",
4168
+ "adjustment_amount": "20.00",
4169
+ "currency_id": 690,
4170
+ "previous_balance": "80.00",
4171
+ "currency_adjusted": false,
4172
+ "created_timestamp": 1283370627,
4173
+ "pub_description": "The lifetime number of points a user has accrued.",
4174
+ "end_user_title": "Lifetime"
4175
+ }
4176
+ ],
4177
+ "created_timestamp": 1283370457,
4178
+ "end_user_login": "opt01@trada.com",
4179
+ "guid": "c5cd2214b60111df96607abeee25c5e6",
4180
+ "received_good_summaries": []
4181
+ },
4182
+ {
4183
+ "read_only": 0,
4184
+ "modified_timestamp": 1283370458,
4185
+ "resource_name": "end_user",
4186
+ "award_summaries": [],
4187
+ "level_summaries": [],
4188
+ "sent_good_summaries": [],
4189
+ "currency_balances": [],
4190
+ "created_timestamp": 1283370458,
4191
+ "end_user_login": "opt02@trada.com",
4192
+ "guid": "c653132eb60111df877aad1f3208b4d8",
4193
+ "received_good_summaries": []
4194
+ },
4195
+ {
4196
+ "read_only": 0,
4197
+ "modified_timestamp": 1283370458,
4198
+ "resource_name": "end_user",
4199
+ "award_summaries": [],
4200
+ "level_summaries": [],
4201
+ "sent_good_summaries": [],
4202
+ "currency_balances": [],
4203
+ "created_timestamp": 1283370458,
4204
+ "end_user_login": "opt03@trada.com",
4205
+ "guid": "c6a07151b60111df944148bb0f828597",
4206
+ "received_good_summaries": []
4207
+ }
4208
+ ],
4209
+ {}
4210
+ ]
4211
+ http_version: "1.1"
4212
+ - !ruby/struct:VCR::HTTPInteraction
4213
+ request: !ruby/struct:VCR::Request
4214
+ method: :get
4215
+ uri: http://api.bigdoor.com:80/api/publisher/0d38d9cd41b0440bbf22c0720be58b27/end_user?time=1283963980.74&format=json&sig=5d836c6bad77e31ce338137de49f099f43e25b1b9ae6aa844697765d910e7e0a
4216
+ body:
4217
+ headers:
4218
+ connection:
4219
+ - close
3096
4220
  response: !ruby/struct:VCR::Response
3097
4221
  status: !ruby/struct:VCR::ResponseStatus
3098
4222
  code: 200
@@ -3105,7 +4229,7 @@
3105
4229
  server:
3106
4230
  - Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny8 with Suhosin-Patch mod_wsgi/2.5 Python/2.5.2
3107
4231
  date:
3108
- - Tue, 07 Sep 2010 22:36:56 GMT
4232
+ - Wed, 08 Sep 2010 16:39:41 GMT
3109
4233
  content-length:
3110
4234
  - "7887"
3111
4235
  vary:
@@ -3312,13 +4436,11 @@
3312
4436
  - !ruby/struct:VCR::HTTPInteraction
3313
4437
  request: !ruby/struct:VCR::Request
3314
4438
  method: :get
3315
- uri: http://api.bigdoor.com:80/api/publisher/0d38d9cd41b0440bbf22c0720be58b27/end_user?sig=7c79492d8d32b918dd287ddac445d6eee32d77fae300645e4672316d1d21add0&time=1283899197.52&format=json
4439
+ uri: http://api.bigdoor.com:80/api/publisher/0d38d9cd41b0440bbf22c0720be58b27/end_user?time=1283964224.23&format=json&sig=4ea19fe9c815de63b4355fdfca89998681f69ef79037dc1a50a4ecc7c6492c6a
3316
4440
  body:
3317
4441
  headers:
3318
4442
  connection:
3319
4443
  - close
3320
- host:
3321
- - api.bigdoor.com
3322
4444
  response: !ruby/struct:VCR::Response
3323
4445
  status: !ruby/struct:VCR::ResponseStatus
3324
4446
  code: 200
@@ -3329,7 +4451,7 @@
3329
4451
  connection:
3330
4452
  - Close
3331
4453
  date:
3332
- - Tue, 07 Sep 2010 22:39:57 GMT
4454
+ - Wed, 08 Sep 2010 16:43:44 GMT
3333
4455
  server:
3334
4456
  - Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny8 with Suhosin-Patch mod_wsgi/2.5 Python/2.5.2
3335
4457
  content-length:
@@ -3538,13 +4660,11 @@
3538
4660
  - !ruby/struct:VCR::HTTPInteraction
3539
4661
  request: !ruby/struct:VCR::Request
3540
4662
  method: :get
3541
- uri: http://api.bigdoor.com:80/api/publisher/0d38d9cd41b0440bbf22c0720be58b27/end_user?sig=e7c481795e51231f85f6867baffde8bedcac3a9b1fb9d1e137577065e9520267&time=1283899546.34&format=json
4663
+ uri: http://api.bigdoor.com:80/api/publisher/0d38d9cd41b0440bbf22c0720be58b27/end_user?time=1283964287.75&format=json&sig=c20ee90f58caa77580c0eeffa4abf8d771bdd463a1f5ee6efcaef1c1d941e54e
3542
4664
  body:
3543
4665
  headers:
3544
4666
  connection:
3545
4667
  - close
3546
- host:
3547
- - api.bigdoor.com
3548
4668
  response: !ruby/struct:VCR::Response
3549
4669
  status: !ruby/struct:VCR::ResponseStatus
3550
4670
  code: 200
@@ -3557,7 +4677,7 @@
3557
4677
  server:
3558
4678
  - Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny8 with Suhosin-Patch mod_wsgi/2.5 Python/2.5.2
3559
4679
  date:
3560
- - Tue, 07 Sep 2010 22:45:46 GMT
4680
+ - Wed, 08 Sep 2010 16:44:47 GMT
3561
4681
  content-length:
3562
4682
  - "7887"
3563
4683
  vary:
@@ -3764,7 +4884,7 @@
3764
4884
  - !ruby/struct:VCR::HTTPInteraction
3765
4885
  request: !ruby/struct:VCR::Request
3766
4886
  method: :get
3767
- uri: http://api.bigdoor.com:80/api/publisher/0d38d9cd41b0440bbf22c0720be58b27/end_user?time=1283899777.49&format=json&sig=a4aa57794fd3daaded9822eda628e29f160d5a1df8cba7e3b902504a64c1bc60
4887
+ uri: http://api.bigdoor.com:80/api/publisher/0d38d9cd41b0440bbf22c0720be58b27/end_user?time=1283964331.92&format=json&sig=6f85202dff1d6e9370597312be00aa5e7033301babd55e8840f1225a8ae9baac
3768
4888
  body:
3769
4889
  headers:
3770
4890
  connection:
@@ -3779,7 +4899,7 @@
3779
4899
  connection:
3780
4900
  - Close
3781
4901
  date:
3782
- - Tue, 07 Sep 2010 22:49:37 GMT
4902
+ - Wed, 08 Sep 2010 16:45:32 GMT
3783
4903
  server:
3784
4904
  - Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny8 with Suhosin-Patch mod_wsgi/2.5 Python/2.5.2
3785
4905
  content-length:
@@ -3988,7 +5108,7 @@
3988
5108
  - !ruby/struct:VCR::HTTPInteraction
3989
5109
  request: !ruby/struct:VCR::Request
3990
5110
  method: :get
3991
- uri: http://api.bigdoor.com:80/api/publisher/0d38d9cd41b0440bbf22c0720be58b27/end_user?time=1283900535.11&format=json&sig=4b5b328b3e1bd815ae8d61274cb620413ed92e57a977fb93076eda3fa671a02a
5111
+ uri: http://api.bigdoor.com:80/api/publisher/0d38d9cd41b0440bbf22c0720be58b27/end_user?time=1283964379.49&format=json&sig=db1de8476ccabae5eacbb703d511bcd2955335a8d959e58a11487a0859e688f1
3992
5112
  body:
3993
5113
  headers:
3994
5114
  connection:
@@ -4003,9 +5123,9 @@
4003
5123
  content-type:
4004
5124
  - application/json; charset=utf-8
4005
5125
  server:
4006
- - Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny8 with Suhosin-Patch mod_wsgi/2.5 Python/2.5.2
5126
+ - Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny9 with Suhosin-Patch mod_wsgi/2.5 Python/2.5.2
4007
5127
  date:
4008
- - Tue, 07 Sep 2010 23:02:15 GMT
5128
+ - Wed, 08 Sep 2010 16:46:19 GMT
4009
5129
  content-length:
4010
5130
  - "7887"
4011
5131
  vary:
@@ -4212,7 +5332,7 @@
4212
5332
  - !ruby/struct:VCR::HTTPInteraction
4213
5333
  request: !ruby/struct:VCR::Request
4214
5334
  method: :get
4215
- uri: http://api.bigdoor.com:80/api/publisher/0d38d9cd41b0440bbf22c0720be58b27/end_user?time=1283963980.74&format=json&sig=5d836c6bad77e31ce338137de49f099f43e25b1b9ae6aa844697765d910e7e0a
5335
+ uri: http://api.bigdoor.com:80/api/publisher/0d38d9cd41b0440bbf22c0720be58b27/end_user?time=1283964414.77&format=json&sig=9de46e5018b7cb5ae5ed33c6535c7e8f58fb75a5d341989f488c0f7f2865a6d8
4216
5336
  body:
4217
5337
  headers:
4218
5338
  connection:
@@ -4227,7 +5347,7 @@
4227
5347
  connection:
4228
5348
  - Close
4229
5349
  date:
4230
- - Wed, 08 Sep 2010 16:39:41 GMT
5350
+ - Wed, 08 Sep 2010 16:46:54 GMT
4231
5351
  server:
4232
5352
  - Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny8 with Suhosin-Patch mod_wsgi/2.5 Python/2.5.2
4233
5353
  content-length:
@@ -4436,7 +5556,7 @@
4436
5556
  - !ruby/struct:VCR::HTTPInteraction
4437
5557
  request: !ruby/struct:VCR::Request
4438
5558
  method: :get
4439
- uri: http://api.bigdoor.com:80/api/publisher/0d38d9cd41b0440bbf22c0720be58b27/end_user?time=1283964224.23&format=json&sig=4ea19fe9c815de63b4355fdfca89998681f69ef79037dc1a50a4ecc7c6492c6a
5559
+ uri: http://api.bigdoor.com:80/api/publisher/0d38d9cd41b0440bbf22c0720be58b27/end_user?time=1283964469.25&format=json&sig=0865717e5632a6a6fb521efd2b58320f881dfbebe5b5541de282f87a0441a1ea
4440
5560
  body:
4441
5561
  headers:
4442
5562
  connection:
@@ -4453,7 +5573,7 @@
4453
5573
  server:
4454
5574
  - Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny8 with Suhosin-Patch mod_wsgi/2.5 Python/2.5.2
4455
5575
  date:
4456
- - Wed, 08 Sep 2010 16:43:44 GMT
5576
+ - Wed, 08 Sep 2010 16:47:49 GMT
4457
5577
  content-length:
4458
5578
  - "7887"
4459
5579
  vary:
@@ -4660,7 +5780,7 @@
4660
5780
  - !ruby/struct:VCR::HTTPInteraction
4661
5781
  request: !ruby/struct:VCR::Request
4662
5782
  method: :get
4663
- uri: http://api.bigdoor.com:80/api/publisher/0d38d9cd41b0440bbf22c0720be58b27/end_user?time=1283964287.75&format=json&sig=c20ee90f58caa77580c0eeffa4abf8d771bdd463a1f5ee6efcaef1c1d941e54e
5783
+ uri: http://api.bigdoor.com:80/api/publisher/0d38d9cd41b0440bbf22c0720be58b27/end_user?time=1283964547.91&format=json&sig=d7dd1ccfd0d1357c4440625063895faf0585b053dfc02a56ee764185f371eac7
4664
5784
  body:
4665
5785
  headers:
4666
5786
  connection:
@@ -4675,7 +5795,7 @@
4675
5795
  connection:
4676
5796
  - Close
4677
5797
  date:
4678
- - Wed, 08 Sep 2010 16:44:47 GMT
5798
+ - Wed, 08 Sep 2010 16:49:08 GMT
4679
5799
  server:
4680
5800
  - Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny8 with Suhosin-Patch mod_wsgi/2.5 Python/2.5.2
4681
5801
  content-length:
@@ -4884,7 +6004,7 @@
4884
6004
  - !ruby/struct:VCR::HTTPInteraction
4885
6005
  request: !ruby/struct:VCR::Request
4886
6006
  method: :get
4887
- uri: http://api.bigdoor.com:80/api/publisher/0d38d9cd41b0440bbf22c0720be58b27/end_user?time=1283964331.92&format=json&sig=6f85202dff1d6e9370597312be00aa5e7033301babd55e8840f1225a8ae9baac
6007
+ uri: http://api.bigdoor.com:80/api/publisher/0d38d9cd41b0440bbf22c0720be58b27/end_user?time=1283965564.84&format=json&sig=62306a460120c1c8378e74ca0f12d1097c407b49a4acd36b1d969ab4627fb811
4888
6008
  body:
4889
6009
  headers:
4890
6010
  connection:
@@ -4901,7 +6021,7 @@
4901
6021
  server:
4902
6022
  - Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny8 with Suhosin-Patch mod_wsgi/2.5 Python/2.5.2
4903
6023
  date:
4904
- - Wed, 08 Sep 2010 16:45:32 GMT
6024
+ - Wed, 08 Sep 2010 17:06:05 GMT
4905
6025
  content-length:
4906
6026
  - "7887"
4907
6027
  vary:
@@ -5108,7 +6228,7 @@
5108
6228
  - !ruby/struct:VCR::HTTPInteraction
5109
6229
  request: !ruby/struct:VCR::Request
5110
6230
  method: :get
5111
- uri: http://api.bigdoor.com:80/api/publisher/0d38d9cd41b0440bbf22c0720be58b27/end_user?time=1283964379.49&format=json&sig=db1de8476ccabae5eacbb703d511bcd2955335a8d959e58a11487a0859e688f1
6231
+ uri: http://api.bigdoor.com:80/api/publisher/0d38d9cd41b0440bbf22c0720be58b27/end_user?time=1283965604.49&format=json&sig=5639a1d70189226d9f9348aed36bcced5ea51d619f44f3f1c938f933545826b4
5112
6232
  body:
5113
6233
  headers:
5114
6234
  connection:
@@ -5123,7 +6243,7 @@
5123
6243
  connection:
5124
6244
  - Close
5125
6245
  date:
5126
- - Wed, 08 Sep 2010 16:46:19 GMT
6246
+ - Wed, 08 Sep 2010 17:06:44 GMT
5127
6247
  server:
5128
6248
  - Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny9 with Suhosin-Patch mod_wsgi/2.5 Python/2.5.2
5129
6249
  content-length:
@@ -5332,7 +6452,7 @@
5332
6452
  - !ruby/struct:VCR::HTTPInteraction
5333
6453
  request: !ruby/struct:VCR::Request
5334
6454
  method: :get
5335
- uri: http://api.bigdoor.com:80/api/publisher/0d38d9cd41b0440bbf22c0720be58b27/end_user?time=1283964414.77&format=json&sig=9de46e5018b7cb5ae5ed33c6535c7e8f58fb75a5d341989f488c0f7f2865a6d8
6455
+ uri: http://api.bigdoor.com:80/api/publisher/0d38d9cd41b0440bbf22c0720be58b27/end_user?time=1283965817.45&format=json&sig=e2efb0c088aff8022956df4d7a026d83948f1fe6d1755e86791a161a532e1495
5336
6456
  body:
5337
6457
  headers:
5338
6458
  connection:
@@ -5349,7 +6469,7 @@
5349
6469
  server:
5350
6470
  - Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny8 with Suhosin-Patch mod_wsgi/2.5 Python/2.5.2
5351
6471
  date:
5352
- - Wed, 08 Sep 2010 16:46:54 GMT
6472
+ - Wed, 08 Sep 2010 17:10:18 GMT
5353
6473
  content-length:
5354
6474
  - "7887"
5355
6475
  vary:
@@ -5556,7 +6676,7 @@
5556
6676
  - !ruby/struct:VCR::HTTPInteraction
5557
6677
  request: !ruby/struct:VCR::Request
5558
6678
  method: :get
5559
- uri: http://api.bigdoor.com:80/api/publisher/0d38d9cd41b0440bbf22c0720be58b27/end_user?time=1283964469.25&format=json&sig=0865717e5632a6a6fb521efd2b58320f881dfbebe5b5541de282f87a0441a1ea
6679
+ uri: http://api.bigdoor.com:80/api/publisher/0d38d9cd41b0440bbf22c0720be58b27/end_user?time=1283965980.77&format=json&sig=3ec043f318ef990593704b4dabbdd35a55bf75c58e77ece94674055418b838d2
5560
6680
  body:
5561
6681
  headers:
5562
6682
  connection:
@@ -5571,9 +6691,9 @@
5571
6691
  connection:
5572
6692
  - Close
5573
6693
  date:
5574
- - Wed, 08 Sep 2010 16:47:49 GMT
6694
+ - Wed, 08 Sep 2010 17:13:01 GMT
5575
6695
  server:
5576
- - Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny8 with Suhosin-Patch mod_wsgi/2.5 Python/2.5.2
6696
+ - Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny9 with Suhosin-Patch mod_wsgi/2.5 Python/2.5.2
5577
6697
  content-length:
5578
6698
  - "7887"
5579
6699
  vary:
@@ -5780,7 +6900,7 @@
5780
6900
  - !ruby/struct:VCR::HTTPInteraction
5781
6901
  request: !ruby/struct:VCR::Request
5782
6902
  method: :get
5783
- uri: http://api.bigdoor.com:80/api/publisher/0d38d9cd41b0440bbf22c0720be58b27/end_user?time=1283964547.91&format=json&sig=d7dd1ccfd0d1357c4440625063895faf0585b053dfc02a56ee764185f371eac7
6903
+ uri: http://api.bigdoor.com:80/api/publisher/0d38d9cd41b0440bbf22c0720be58b27/end_user?time=1283966013.09&format=json&sig=a17a72a32df3a787d3523e1801c5c6370762f6490b4075ab5426b14b7aa3aa55
5784
6904
  body:
5785
6905
  headers:
5786
6906
  connection:
@@ -5797,7 +6917,7 @@
5797
6917
  server:
5798
6918
  - Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny8 with Suhosin-Patch mod_wsgi/2.5 Python/2.5.2
5799
6919
  date:
5800
- - Wed, 08 Sep 2010 16:49:08 GMT
6920
+ - Wed, 08 Sep 2010 17:13:33 GMT
5801
6921
  content-length:
5802
6922
  - "7887"
5803
6923
  vary:
@@ -6004,7 +7124,7 @@
6004
7124
  - !ruby/struct:VCR::HTTPInteraction
6005
7125
  request: !ruby/struct:VCR::Request
6006
7126
  method: :get
6007
- uri: http://api.bigdoor.com:80/api/publisher/0d38d9cd41b0440bbf22c0720be58b27/end_user?time=1283965564.84&format=json&sig=62306a460120c1c8378e74ca0f12d1097c407b49a4acd36b1d969ab4627fb811
7127
+ uri: http://api.bigdoor.com:80/api/publisher/0d38d9cd41b0440bbf22c0720be58b27/end_user?time=1283966087.45&format=json&sig=99820cb4d24d4846b0e90abe9f1154b2a1fb93aa725002fb4f7f9c028763175d
6008
7128
  body:
6009
7129
  headers:
6010
7130
  connection:
@@ -6019,7 +7139,7 @@
6019
7139
  connection:
6020
7140
  - Close
6021
7141
  date:
6022
- - Wed, 08 Sep 2010 17:06:05 GMT
7142
+ - Wed, 08 Sep 2010 17:14:47 GMT
6023
7143
  server:
6024
7144
  - Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny8 with Suhosin-Patch mod_wsgi/2.5 Python/2.5.2
6025
7145
  content-length:
@@ -6228,7 +7348,7 @@
6228
7348
  - !ruby/struct:VCR::HTTPInteraction
6229
7349
  request: !ruby/struct:VCR::Request
6230
7350
  method: :get
6231
- uri: http://api.bigdoor.com:80/api/publisher/0d38d9cd41b0440bbf22c0720be58b27/end_user?time=1283965604.49&format=json&sig=5639a1d70189226d9f9348aed36bcced5ea51d619f44f3f1c938f933545826b4
7351
+ uri: http://api.bigdoor.com:80/api/publisher/0d38d9cd41b0440bbf22c0720be58b27/end_user?time=1283966126.51&format=json&sig=e47dbb2d4a44d757ef87719fb1d81c3ce2dc29918a33108953a47a5af0e7f971
6232
7352
  body:
6233
7353
  headers:
6234
7354
  connection:
@@ -6243,9 +7363,9 @@
6243
7363
  content-type:
6244
7364
  - application/json; charset=utf-8
6245
7365
  server:
6246
- - Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny9 with Suhosin-Patch mod_wsgi/2.5 Python/2.5.2
7366
+ - Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny8 with Suhosin-Patch mod_wsgi/2.5 Python/2.5.2
6247
7367
  date:
6248
- - Wed, 08 Sep 2010 17:06:44 GMT
7368
+ - Wed, 08 Sep 2010 17:15:26 GMT
6249
7369
  content-length:
6250
7370
  - "7887"
6251
7371
  vary:
@@ -6452,7 +7572,7 @@
6452
7572
  - !ruby/struct:VCR::HTTPInteraction
6453
7573
  request: !ruby/struct:VCR::Request
6454
7574
  method: :get
6455
- uri: http://api.bigdoor.com:80/api/publisher/0d38d9cd41b0440bbf22c0720be58b27/end_user?time=1283965817.45&format=json&sig=e2efb0c088aff8022956df4d7a026d83948f1fe6d1755e86791a161a532e1495
7575
+ uri: http://api.bigdoor.com:80/api/publisher/0d38d9cd41b0440bbf22c0720be58b27/end_user?time=1283966472.59&format=json&sig=fd2dac0d7d89e5a1b31be32bc814333a0de1bb8d731167c4f781aaddf9464542
6456
7576
  body:
6457
7577
  headers:
6458
7578
  connection:
@@ -6467,7 +7587,7 @@
6467
7587
  connection:
6468
7588
  - Close
6469
7589
  date:
6470
- - Wed, 08 Sep 2010 17:10:18 GMT
7590
+ - Wed, 08 Sep 2010 17:21:13 GMT
6471
7591
  server:
6472
7592
  - Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny8 with Suhosin-Patch mod_wsgi/2.5 Python/2.5.2
6473
7593
  content-length:
@@ -6676,7 +7796,7 @@
6676
7796
  - !ruby/struct:VCR::HTTPInteraction
6677
7797
  request: !ruby/struct:VCR::Request
6678
7798
  method: :get
6679
- uri: http://api.bigdoor.com:80/api/publisher/0d38d9cd41b0440bbf22c0720be58b27/end_user?time=1283965980.77&format=json&sig=3ec043f318ef990593704b4dabbdd35a55bf75c58e77ece94674055418b838d2
7799
+ uri: http://api.bigdoor.com:80/api/publisher/0d38d9cd41b0440bbf22c0720be58b27/end_user?time=1283966765.48&format=json&sig=1db5980bd8aa8fdd22fde90a307c72a5636750a979d07e77e6df52a0f3727e8f
6680
7800
  body:
6681
7801
  headers:
6682
7802
  connection:
@@ -6691,9 +7811,9 @@
6691
7811
  content-type:
6692
7812
  - application/json; charset=utf-8
6693
7813
  server:
6694
- - Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny9 with Suhosin-Patch mod_wsgi/2.5 Python/2.5.2
7814
+ - Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny8 with Suhosin-Patch mod_wsgi/2.5 Python/2.5.2
6695
7815
  date:
6696
- - Wed, 08 Sep 2010 17:13:01 GMT
7816
+ - Wed, 08 Sep 2010 17:26:05 GMT
6697
7817
  content-length:
6698
7818
  - "7887"
6699
7819
  vary:
@@ -6900,7 +8020,7 @@
6900
8020
  - !ruby/struct:VCR::HTTPInteraction
6901
8021
  request: !ruby/struct:VCR::Request
6902
8022
  method: :get
6903
- uri: http://api.bigdoor.com:80/api/publisher/0d38d9cd41b0440bbf22c0720be58b27/end_user?time=1283966013.09&format=json&sig=a17a72a32df3a787d3523e1801c5c6370762f6490b4075ab5426b14b7aa3aa55
8023
+ uri: http://api.bigdoor.com:80/api/publisher/0d38d9cd41b0440bbf22c0720be58b27/end_user?time=1283966816.99&format=json&sig=e1cec361353289d46506281ab31b41d207a93fd5a069b5fc49e6c72a772a4208
6904
8024
  body:
6905
8025
  headers:
6906
8026
  connection:
@@ -6915,9 +8035,9 @@
6915
8035
  connection:
6916
8036
  - Close
6917
8037
  date:
6918
- - Wed, 08 Sep 2010 17:13:33 GMT
8038
+ - Wed, 08 Sep 2010 17:26:57 GMT
6919
8039
  server:
6920
- - Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny8 with Suhosin-Patch mod_wsgi/2.5 Python/2.5.2
8040
+ - Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny9 with Suhosin-Patch mod_wsgi/2.5 Python/2.5.2
6921
8041
  content-length:
6922
8042
  - "7887"
6923
8043
  vary:
@@ -7124,7 +8244,7 @@
7124
8244
  - !ruby/struct:VCR::HTTPInteraction
7125
8245
  request: !ruby/struct:VCR::Request
7126
8246
  method: :get
7127
- uri: http://api.bigdoor.com:80/api/publisher/0d38d9cd41b0440bbf22c0720be58b27/end_user?time=1283966087.45&format=json&sig=99820cb4d24d4846b0e90abe9f1154b2a1fb93aa725002fb4f7f9c028763175d
8247
+ uri: http://api.bigdoor.com:80/api/publisher/0d38d9cd41b0440bbf22c0720be58b27/end_user?time=1283978796.07&format=json&sig=a4348e9f3bb07cecca6f7ea5b44ae39d1a474df2ca42a5b0fa255be3153b4bee
7128
8248
  body:
7129
8249
  headers:
7130
8250
  connection:
@@ -7141,7 +8261,7 @@
7141
8261
  server:
7142
8262
  - Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny8 with Suhosin-Patch mod_wsgi/2.5 Python/2.5.2
7143
8263
  date:
7144
- - Wed, 08 Sep 2010 17:14:47 GMT
8264
+ - Wed, 08 Sep 2010 20:46:36 GMT
7145
8265
  content-length:
7146
8266
  - "7887"
7147
8267
  vary:
@@ -7348,7 +8468,7 @@
7348
8468
  - !ruby/struct:VCR::HTTPInteraction
7349
8469
  request: !ruby/struct:VCR::Request
7350
8470
  method: :get
7351
- uri: http://api.bigdoor.com:80/api/publisher/0d38d9cd41b0440bbf22c0720be58b27/end_user?time=1283966126.51&format=json&sig=e47dbb2d4a44d757ef87719fb1d81c3ce2dc29918a33108953a47a5af0e7f971
8471
+ uri: http://api.bigdoor.com:80/api/publisher/0d38d9cd41b0440bbf22c0720be58b27/end_user?time=1283978813.91&format=json&sig=b5ba3176f952e17514e1227ea1ed544c0e044fa7c60382c2adafcc2956663210
7352
8472
  body:
7353
8473
  headers:
7354
8474
  connection:
@@ -7363,7 +8483,7 @@
7363
8483
  connection:
7364
8484
  - Close
7365
8485
  date:
7366
- - Wed, 08 Sep 2010 17:15:26 GMT
8486
+ - Wed, 08 Sep 2010 20:46:54 GMT
7367
8487
  server:
7368
8488
  - Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny8 with Suhosin-Patch mod_wsgi/2.5 Python/2.5.2
7369
8489
  content-length:
@@ -7572,7 +8692,7 @@
7572
8692
  - !ruby/struct:VCR::HTTPInteraction
7573
8693
  request: !ruby/struct:VCR::Request
7574
8694
  method: :get
7575
- uri: http://api.bigdoor.com:80/api/publisher/0d38d9cd41b0440bbf22c0720be58b27/end_user?time=1283966472.59&format=json&sig=fd2dac0d7d89e5a1b31be32bc814333a0de1bb8d731167c4f781aaddf9464542
8695
+ uri: http://api.bigdoor.com:80/api/publisher/0d38d9cd41b0440bbf22c0720be58b27/end_user?time=1283978856.19&format=json&sig=4307c20c9ca46681e63e9add0d26cb8ace78fb2333a36231f0c300db90befa8f
7576
8696
  body:
7577
8697
  headers:
7578
8698
  connection:
@@ -7589,7 +8709,7 @@
7589
8709
  server:
7590
8710
  - Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny8 with Suhosin-Patch mod_wsgi/2.5 Python/2.5.2
7591
8711
  date:
7592
- - Wed, 08 Sep 2010 17:21:13 GMT
8712
+ - Wed, 08 Sep 2010 20:47:36 GMT
7593
8713
  content-length:
7594
8714
  - "7887"
7595
8715
  vary:
@@ -7796,7 +8916,7 @@
7796
8916
  - !ruby/struct:VCR::HTTPInteraction
7797
8917
  request: !ruby/struct:VCR::Request
7798
8918
  method: :get
7799
- uri: http://api.bigdoor.com:80/api/publisher/0d38d9cd41b0440bbf22c0720be58b27/end_user?time=1283966765.48&format=json&sig=1db5980bd8aa8fdd22fde90a307c72a5636750a979d07e77e6df52a0f3727e8f
8919
+ uri: http://api.bigdoor.com:80/api/publisher/0d38d9cd41b0440bbf22c0720be58b27/end_user?time=1283978878.37&format=json&sig=2f70804dac32649d00a6fd042f3c2b39839d3f77a0801798b70b89d5be7e6d20
7800
8920
  body:
7801
8921
  headers:
7802
8922
  connection:
@@ -7811,7 +8931,7 @@
7811
8931
  connection:
7812
8932
  - Close
7813
8933
  date:
7814
- - Wed, 08 Sep 2010 17:26:05 GMT
8934
+ - Wed, 08 Sep 2010 20:47:58 GMT
7815
8935
  server:
7816
8936
  - Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny8 with Suhosin-Patch mod_wsgi/2.5 Python/2.5.2
7817
8937
  content-length:
@@ -8020,7 +9140,7 @@
8020
9140
  - !ruby/struct:VCR::HTTPInteraction
8021
9141
  request: !ruby/struct:VCR::Request
8022
9142
  method: :get
8023
- uri: http://api.bigdoor.com:80/api/publisher/0d38d9cd41b0440bbf22c0720be58b27/end_user?time=1283966816.99&format=json&sig=e1cec361353289d46506281ab31b41d207a93fd5a069b5fc49e6c72a772a4208
9143
+ uri: http://api.bigdoor.com:80/api/publisher/0d38d9cd41b0440bbf22c0720be58b27/end_user?time=1283978945.74&format=json&sig=25dcd22f8688aa4d7a02b911710284313ae79dbf436dc8176f601e1d10064e09
8024
9144
  body:
8025
9145
  headers:
8026
9146
  connection:
@@ -8035,9 +9155,9 @@
8035
9155
  content-type:
8036
9156
  - application/json; charset=utf-8
8037
9157
  server:
8038
- - Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny9 with Suhosin-Patch mod_wsgi/2.5 Python/2.5.2
9158
+ - Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny8 with Suhosin-Patch mod_wsgi/2.5 Python/2.5.2
8039
9159
  date:
8040
- - Wed, 08 Sep 2010 17:26:57 GMT
9160
+ - Wed, 08 Sep 2010 20:49:06 GMT
8041
9161
  content-length:
8042
9162
  - "7887"
8043
9163
  vary:
@@ -8244,7 +9364,7 @@
8244
9364
  - !ruby/struct:VCR::HTTPInteraction
8245
9365
  request: !ruby/struct:VCR::Request
8246
9366
  method: :get
8247
- uri: http://api.bigdoor.com:80/api/publisher/0d38d9cd41b0440bbf22c0720be58b27/end_user?time=1283978796.07&format=json&sig=a4348e9f3bb07cecca6f7ea5b44ae39d1a474df2ca42a5b0fa255be3153b4bee
9367
+ uri: http://api.bigdoor.com:80/api/publisher/0d38d9cd41b0440bbf22c0720be58b27/end_user?time=1283979305.34&format=json&sig=e8bcc194ea5970bb8713373a6312b2e84ddfe842b5cbb80ecabe4388b72ce6fb
8248
9368
  body:
8249
9369
  headers:
8250
9370
  connection:
@@ -8259,7 +9379,7 @@
8259
9379
  connection:
8260
9380
  - Close
8261
9381
  date:
8262
- - Wed, 08 Sep 2010 20:46:36 GMT
9382
+ - Wed, 08 Sep 2010 20:55:05 GMT
8263
9383
  server:
8264
9384
  - Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny8 with Suhosin-Patch mod_wsgi/2.5 Python/2.5.2
8265
9385
  content-length:
@@ -8468,7 +9588,7 @@
8468
9588
  - !ruby/struct:VCR::HTTPInteraction
8469
9589
  request: !ruby/struct:VCR::Request
8470
9590
  method: :get
8471
- uri: http://api.bigdoor.com:80/api/publisher/0d38d9cd41b0440bbf22c0720be58b27/end_user?time=1283978813.91&format=json&sig=b5ba3176f952e17514e1227ea1ed544c0e044fa7c60382c2adafcc2956663210
9591
+ uri: http://api.bigdoor.com:80/api/publisher/0d38d9cd41b0440bbf22c0720be58b27/end_user?time=1283979429.16&format=json&sig=dfdaa5a4ac45fb93bfaf48deaf8f10506c766d1ac41ed73ab4b7d23792e9e29c
8472
9592
  body:
8473
9593
  headers:
8474
9594
  connection:
@@ -8485,7 +9605,7 @@
8485
9605
  server:
8486
9606
  - Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny8 with Suhosin-Patch mod_wsgi/2.5 Python/2.5.2
8487
9607
  date:
8488
- - Wed, 08 Sep 2010 20:46:54 GMT
9608
+ - Wed, 08 Sep 2010 20:57:09 GMT
8489
9609
  content-length:
8490
9610
  - "7887"
8491
9611
  vary:
@@ -8692,7 +9812,7 @@
8692
9812
  - !ruby/struct:VCR::HTTPInteraction
8693
9813
  request: !ruby/struct:VCR::Request
8694
9814
  method: :get
8695
- uri: http://api.bigdoor.com:80/api/publisher/0d38d9cd41b0440bbf22c0720be58b27/end_user?time=1283978856.19&format=json&sig=4307c20c9ca46681e63e9add0d26cb8ace78fb2333a36231f0c300db90befa8f
9815
+ uri: http://api.bigdoor.com:80/api/publisher/0d38d9cd41b0440bbf22c0720be58b27/end_user?time=1283979568.20&format=json&sig=28196bae9570a5df61f1ad592a7c25460202df24a2d79df2ef5d5d50bec065e1
8696
9816
  body:
8697
9817
  headers:
8698
9818
  connection:
@@ -8707,7 +9827,7 @@
8707
9827
  connection:
8708
9828
  - Close
8709
9829
  date:
8710
- - Wed, 08 Sep 2010 20:47:36 GMT
9830
+ - Wed, 08 Sep 2010 20:59:28 GMT
8711
9831
  server:
8712
9832
  - Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny8 with Suhosin-Patch mod_wsgi/2.5 Python/2.5.2
8713
9833
  content-length:
@@ -8916,11 +10036,13 @@
8916
10036
  - !ruby/struct:VCR::HTTPInteraction
8917
10037
  request: !ruby/struct:VCR::Request
8918
10038
  method: :get
8919
- uri: http://api.bigdoor.com:80/api/publisher/0d38d9cd41b0440bbf22c0720be58b27/end_user?time=1283978878.37&format=json&sig=2f70804dac32649d00a6fd042f3c2b39839d3f77a0801798b70b89d5be7e6d20
10039
+ uri: http://api.bigdoor.com:80/api/publisher/0d38d9cd41b0440bbf22c0720be58b27/end_user?time=1285107905.62&sig=d0ae7c69c1427ff87c06a6c808a305ad354360c21c575e482c0a33362e95fd83&format=json
8920
10040
  body:
8921
10041
  headers:
8922
10042
  connection:
8923
10043
  - close
10044
+ host:
10045
+ - api.bigdoor.com
8924
10046
  response: !ruby/struct:VCR::Response
8925
10047
  status: !ruby/struct:VCR::ResponseStatus
8926
10048
  code: 200
@@ -8933,27 +10055,14 @@
8933
10055
  server:
8934
10056
  - Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny8 with Suhosin-Patch mod_wsgi/2.5 Python/2.5.2
8935
10057
  date:
8936
- - Wed, 08 Sep 2010 20:47:58 GMT
10058
+ - Tue, 21 Sep 2010 22:25:06 GMT
8937
10059
  content-length:
8938
- - "7887"
10060
+ - "7888"
8939
10061
  vary:
8940
10062
  - Authorization,Cookie
8941
10063
  body: |-
8942
10064
  [
8943
10065
  [
8944
- {
8945
- "read_only": 0,
8946
- "modified_timestamp": 1283370675,
8947
- "resource_name": "end_user",
8948
- "award_summaries": [],
8949
- "level_summaries": [],
8950
- "sent_good_summaries": [],
8951
- "currency_balances": [],
8952
- "created_timestamp": 1283370675,
8953
- "end_user_login": "ben3@trada.com",
8954
- "guid": "48126440b60211df8e4e8165154431f0",
8955
- "received_good_summaries": []
8956
- },
8957
10066
  {
8958
10067
  "read_only": 0,
8959
10068
  "modified_timestamp": 1283370466,
@@ -9132,6 +10241,19 @@
9132
10241
  "end_user_login": "opt03@trada.com",
9133
10242
  "guid": "c6a07151b60111df944148bb0f828597",
9134
10243
  "received_good_summaries": []
10244
+ },
10245
+ {
10246
+ "read_only": 0,
10247
+ "modified_timestamp": 1283370460,
10248
+ "resource_name": "end_user",
10249
+ "award_summaries": [],
10250
+ "level_summaries": [],
10251
+ "sent_good_summaries": [],
10252
+ "currency_balances": [],
10253
+ "created_timestamp": 1283370460,
10254
+ "end_user_login": "opt04@trada.com",
10255
+ "guid": "c7af41d4b60111df8ddb0f9e1fccde88",
10256
+ "received_good_summaries": []
9135
10257
  }
9136
10258
  ],
9137
10259
  {}
@@ -9140,11 +10262,13 @@
9140
10262
  - !ruby/struct:VCR::HTTPInteraction
9141
10263
  request: !ruby/struct:VCR::Request
9142
10264
  method: :get
9143
- uri: http://api.bigdoor.com:80/api/publisher/0d38d9cd41b0440bbf22c0720be58b27/end_user?time=1283978945.74&format=json&sig=25dcd22f8688aa4d7a02b911710284313ae79dbf436dc8176f601e1d10064e09
10265
+ uri: http://api.bigdoor.com:80/api/publisher/0d38d9cd41b0440bbf22c0720be58b27/end_user?time=1285108046.06&sig=e246da9a57af194047ba8caefc712f4552063079403cf1c5f3335be97d5f2481&format=json
9144
10266
  body:
9145
10267
  headers:
9146
10268
  connection:
9147
10269
  - close
10270
+ host:
10271
+ - api.bigdoor.com
9148
10272
  response: !ruby/struct:VCR::Response
9149
10273
  status: !ruby/struct:VCR::ResponseStatus
9150
10274
  code: 200
@@ -9155,29 +10279,16 @@
9155
10279
  connection:
9156
10280
  - Close
9157
10281
  date:
9158
- - Wed, 08 Sep 2010 20:49:06 GMT
10282
+ - Tue, 21 Sep 2010 22:27:26 GMT
9159
10283
  server:
9160
10284
  - Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny8 with Suhosin-Patch mod_wsgi/2.5 Python/2.5.2
9161
10285
  content-length:
9162
- - "7887"
10286
+ - "7888"
9163
10287
  vary:
9164
10288
  - Authorization,Cookie
9165
10289
  body: |-
9166
10290
  [
9167
10291
  [
9168
- {
9169
- "read_only": 0,
9170
- "modified_timestamp": 1283370675,
9171
- "resource_name": "end_user",
9172
- "award_summaries": [],
9173
- "level_summaries": [],
9174
- "sent_good_summaries": [],
9175
- "currency_balances": [],
9176
- "created_timestamp": 1283370675,
9177
- "end_user_login": "ben3@trada.com",
9178
- "guid": "48126440b60211df8e4e8165154431f0",
9179
- "received_good_summaries": []
9180
- },
9181
10292
  {
9182
10293
  "read_only": 0,
9183
10294
  "modified_timestamp": 1283370466,
@@ -9356,6 +10467,19 @@
9356
10467
  "end_user_login": "opt03@trada.com",
9357
10468
  "guid": "c6a07151b60111df944148bb0f828597",
9358
10469
  "received_good_summaries": []
10470
+ },
10471
+ {
10472
+ "read_only": 0,
10473
+ "modified_timestamp": 1283370460,
10474
+ "resource_name": "end_user",
10475
+ "award_summaries": [],
10476
+ "level_summaries": [],
10477
+ "sent_good_summaries": [],
10478
+ "currency_balances": [],
10479
+ "created_timestamp": 1283370460,
10480
+ "end_user_login": "opt04@trada.com",
10481
+ "guid": "c7af41d4b60111df8ddb0f9e1fccde88",
10482
+ "received_good_summaries": []
9359
10483
  }
9360
10484
  ],
9361
10485
  {}
@@ -9364,11 +10488,13 @@
9364
10488
  - !ruby/struct:VCR::HTTPInteraction
9365
10489
  request: !ruby/struct:VCR::Request
9366
10490
  method: :get
9367
- uri: http://api.bigdoor.com:80/api/publisher/0d38d9cd41b0440bbf22c0720be58b27/end_user?time=1283979305.34&format=json&sig=e8bcc194ea5970bb8713373a6312b2e84ddfe842b5cbb80ecabe4388b72ce6fb
10491
+ uri: http://api.bigdoor.com:80/api/publisher/0d38d9cd41b0440bbf22c0720be58b27/end_user?time=1285108125.04&sig=d740dec301f01150e095b5cdc053847d4cadf4dc52c0e8b707cd541cdfa79f65&format=json
9368
10492
  body:
9369
10493
  headers:
9370
10494
  connection:
9371
10495
  - close
10496
+ host:
10497
+ - api.bigdoor.com
9372
10498
  response: !ruby/struct:VCR::Response
9373
10499
  status: !ruby/struct:VCR::ResponseStatus
9374
10500
  code: 200
@@ -9381,27 +10507,14 @@
9381
10507
  server:
9382
10508
  - Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny8 with Suhosin-Patch mod_wsgi/2.5 Python/2.5.2
9383
10509
  date:
9384
- - Wed, 08 Sep 2010 20:55:05 GMT
10510
+ - Tue, 21 Sep 2010 22:28:45 GMT
9385
10511
  content-length:
9386
- - "7887"
10512
+ - "7888"
9387
10513
  vary:
9388
10514
  - Authorization,Cookie
9389
10515
  body: |-
9390
10516
  [
9391
10517
  [
9392
- {
9393
- "read_only": 0,
9394
- "modified_timestamp": 1283370675,
9395
- "resource_name": "end_user",
9396
- "award_summaries": [],
9397
- "level_summaries": [],
9398
- "sent_good_summaries": [],
9399
- "currency_balances": [],
9400
- "created_timestamp": 1283370675,
9401
- "end_user_login": "ben3@trada.com",
9402
- "guid": "48126440b60211df8e4e8165154431f0",
9403
- "received_good_summaries": []
9404
- },
9405
10518
  {
9406
10519
  "read_only": 0,
9407
10520
  "modified_timestamp": 1283370466,
@@ -9580,6 +10693,19 @@
9580
10693
  "end_user_login": "opt03@trada.com",
9581
10694
  "guid": "c6a07151b60111df944148bb0f828597",
9582
10695
  "received_good_summaries": []
10696
+ },
10697
+ {
10698
+ "read_only": 0,
10699
+ "modified_timestamp": 1283370460,
10700
+ "resource_name": "end_user",
10701
+ "award_summaries": [],
10702
+ "level_summaries": [],
10703
+ "sent_good_summaries": [],
10704
+ "currency_balances": [],
10705
+ "created_timestamp": 1283370460,
10706
+ "end_user_login": "opt04@trada.com",
10707
+ "guid": "c7af41d4b60111df8ddb0f9e1fccde88",
10708
+ "received_good_summaries": []
9583
10709
  }
9584
10710
  ],
9585
10711
  {}
@@ -9588,11 +10714,13 @@
9588
10714
  - !ruby/struct:VCR::HTTPInteraction
9589
10715
  request: !ruby/struct:VCR::Request
9590
10716
  method: :get
9591
- uri: http://api.bigdoor.com:80/api/publisher/0d38d9cd41b0440bbf22c0720be58b27/end_user?time=1283979429.16&format=json&sig=dfdaa5a4ac45fb93bfaf48deaf8f10506c766d1ac41ed73ab4b7d23792e9e29c
10717
+ uri: http://api.bigdoor.com:80/api/publisher/0d38d9cd41b0440bbf22c0720be58b27/end_user?time=1285108200.92&sig=730c78e5231efa3004d5725fef39d1b347976f13a34a4e8104a8c347c386bf7b&format=json
9592
10718
  body:
9593
10719
  headers:
9594
10720
  connection:
9595
10721
  - close
10722
+ host:
10723
+ - api.bigdoor.com
9596
10724
  response: !ruby/struct:VCR::Response
9597
10725
  status: !ruby/struct:VCR::ResponseStatus
9598
10726
  code: 200
@@ -9603,29 +10731,16 @@
9603
10731
  connection:
9604
10732
  - Close
9605
10733
  date:
9606
- - Wed, 08 Sep 2010 20:57:09 GMT
10734
+ - Tue, 21 Sep 2010 22:30:01 GMT
9607
10735
  server:
9608
10736
  - Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny8 with Suhosin-Patch mod_wsgi/2.5 Python/2.5.2
9609
10737
  content-length:
9610
- - "7887"
10738
+ - "7888"
9611
10739
  vary:
9612
10740
  - Authorization,Cookie
9613
10741
  body: |-
9614
10742
  [
9615
10743
  [
9616
- {
9617
- "read_only": 0,
9618
- "modified_timestamp": 1283370675,
9619
- "resource_name": "end_user",
9620
- "award_summaries": [],
9621
- "level_summaries": [],
9622
- "sent_good_summaries": [],
9623
- "currency_balances": [],
9624
- "created_timestamp": 1283370675,
9625
- "end_user_login": "ben3@trada.com",
9626
- "guid": "48126440b60211df8e4e8165154431f0",
9627
- "received_good_summaries": []
9628
- },
9629
10744
  {
9630
10745
  "read_only": 0,
9631
10746
  "modified_timestamp": 1283370466,
@@ -9804,6 +10919,19 @@
9804
10919
  "end_user_login": "opt03@trada.com",
9805
10920
  "guid": "c6a07151b60111df944148bb0f828597",
9806
10921
  "received_good_summaries": []
10922
+ },
10923
+ {
10924
+ "read_only": 0,
10925
+ "modified_timestamp": 1283370460,
10926
+ "resource_name": "end_user",
10927
+ "award_summaries": [],
10928
+ "level_summaries": [],
10929
+ "sent_good_summaries": [],
10930
+ "currency_balances": [],
10931
+ "created_timestamp": 1283370460,
10932
+ "end_user_login": "opt04@trada.com",
10933
+ "guid": "c7af41d4b60111df8ddb0f9e1fccde88",
10934
+ "received_good_summaries": []
9807
10935
  }
9808
10936
  ],
9809
10937
  {}
@@ -9812,11 +10940,13 @@
9812
10940
  - !ruby/struct:VCR::HTTPInteraction
9813
10941
  request: !ruby/struct:VCR::Request
9814
10942
  method: :get
9815
- uri: http://api.bigdoor.com:80/api/publisher/0d38d9cd41b0440bbf22c0720be58b27/end_user?time=1283979568.20&format=json&sig=28196bae9570a5df61f1ad592a7c25460202df24a2d79df2ef5d5d50bec065e1
10943
+ uri: http://api.bigdoor.com:80/api/publisher/0d38d9cd41b0440bbf22c0720be58b27/end_user?time=1285108256.68&sig=6b35de0500cf9cd586b2635967e9d1732385676ef9a96c578deeb5e80c1c9d31&format=json
9816
10944
  body:
9817
10945
  headers:
9818
10946
  connection:
9819
10947
  - close
10948
+ host:
10949
+ - api.bigdoor.com
9820
10950
  response: !ruby/struct:VCR::Response
9821
10951
  status: !ruby/struct:VCR::ResponseStatus
9822
10952
  code: 200
@@ -9827,29 +10957,16 @@
9827
10957
  content-type:
9828
10958
  - application/json; charset=utf-8
9829
10959
  server:
9830
- - Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny8 with Suhosin-Patch mod_wsgi/2.5 Python/2.5.2
10960
+ - Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny9 with Suhosin-Patch mod_wsgi/2.5 Python/2.5.2
9831
10961
  date:
9832
- - Wed, 08 Sep 2010 20:59:28 GMT
10962
+ - Tue, 21 Sep 2010 22:30:57 GMT
9833
10963
  content-length:
9834
- - "7887"
10964
+ - "7888"
9835
10965
  vary:
9836
10966
  - Authorization,Cookie
9837
10967
  body: |-
9838
10968
  [
9839
10969
  [
9840
- {
9841
- "read_only": 0,
9842
- "modified_timestamp": 1283370675,
9843
- "resource_name": "end_user",
9844
- "award_summaries": [],
9845
- "level_summaries": [],
9846
- "sent_good_summaries": [],
9847
- "currency_balances": [],
9848
- "created_timestamp": 1283370675,
9849
- "end_user_login": "ben3@trada.com",
9850
- "guid": "48126440b60211df8e4e8165154431f0",
9851
- "received_good_summaries": []
9852
- },
9853
10970
  {
9854
10971
  "read_only": 0,
9855
10972
  "modified_timestamp": 1283370466,
@@ -10028,6 +11145,19 @@
10028
11145
  "end_user_login": "opt03@trada.com",
10029
11146
  "guid": "c6a07151b60111df944148bb0f828597",
10030
11147
  "received_good_summaries": []
11148
+ },
11149
+ {
11150
+ "read_only": 0,
11151
+ "modified_timestamp": 1283370460,
11152
+ "resource_name": "end_user",
11153
+ "award_summaries": [],
11154
+ "level_summaries": [],
11155
+ "sent_good_summaries": [],
11156
+ "currency_balances": [],
11157
+ "created_timestamp": 1283370460,
11158
+ "end_user_login": "opt04@trada.com",
11159
+ "guid": "c7af41d4b60111df8ddb0f9e1fccde88",
11160
+ "received_good_summaries": []
10031
11161
  }
10032
11162
  ],
10033
11163
  {}