peddler 0.6.5 → 0.7.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/LICENSE +1 -1
- data/README.md +62 -81
- data/lib/mws/cart_information.rb +13 -0
- data/lib/mws/customer_information.rb +16 -0
- data/lib/mws/feeds.rb +110 -1
- data/lib/mws/fulfillment_inbound_shipment.rb +13 -1
- data/lib/mws/fulfillment_inventory.rb +15 -1
- data/lib/mws/fulfillment_outbound_shipment.rb +17 -1
- data/lib/mws/off_amazon_payments.rb +15 -1
- data/lib/mws/orders.rb +100 -1
- data/lib/mws/products.rb +238 -1
- data/lib/mws/recommendations.rb +13 -1
- data/lib/mws/reports.rb +221 -1
- data/lib/mws/sellers.rb +40 -1
- data/lib/mws/subscriptions.rb +175 -1
- data/lib/peddler/client.rb +77 -37
- data/lib/peddler/csv_parser.rb +42 -0
- data/lib/peddler/operation.rb +44 -0
- data/lib/peddler/parser.rb +21 -0
- data/lib/peddler/structured_list.rb +22 -0
- data/lib/peddler/version.rb +1 -1
- data/lib/peddler/xml_parser.rb +25 -0
- data/lib/peddler.rb +2 -0
- data/test/helper.rb +1 -1
- data/test/integration/test_feeds.rb +18 -0
- data/test/integration/test_orders.rb +22 -0
- data/test/integration/test_products.rb +53 -0
- data/test/integration/test_reports.rb +47 -0
- data/test/integration/test_sellers.rb +18 -0
- data/test/integration/test_subscriptions.rb +26 -0
- data/test/integration_helper.rb +41 -8
- data/test/mws.yml +32 -0
- data/test/mws.yml.example +4 -0
- data/test/unit/peddler/test_client.rb +97 -0
- data/test/unit/peddler/test_csv_parser.rb +24 -0
- data/test/unit/peddler/test_operation.rb +34 -0
- data/test/{peddler/request → unit/peddler}/test_structured_list.rb +5 -5
- data/test/unit/peddler/test_xml_parser.rb +19 -0
- data/test/{test_peddler.rb → unit/test_peddler.rb} +2 -2
- data/test/vcr_cassettes/Feeds.yml +695 -0
- data/test/vcr_cassettes/Orders.yml +29855 -0
- data/test/vcr_cassettes/Products.yml +8597 -0
- data/test/vcr_cassettes/Reports.yml +1881 -0
- data/test/vcr_cassettes/Sellers.yml +697 -0
- data/test/vcr_cassettes/Subscriptions.yml +1369 -0
- metadata +91 -297
- data/lib/mws/feeds/client.rb +0 -116
- data/lib/mws/feeds/parsers/feed.rb +0 -14
- data/lib/mws/feeds/parsers/feed_submission_count.rb +0 -10
- data/lib/mws/feeds/parsers/feed_submission_info.rb +0 -25
- data/lib/mws/feeds/parsers/feed_submission_list.rb +0 -23
- data/lib/mws/feeds/parsers/feed_submission_result.rb +0 -10
- data/lib/mws/feeds/parsers/feed_submissions.rb +0 -18
- data/lib/mws/feeds/requests/feed.rb +0 -38
- data/lib/mws/feeds/requests/feed_submission_count.rb +0 -20
- data/lib/mws/feeds/requests/feed_submission_list.rb +0 -30
- data/lib/mws/feeds/requests/feed_submission_result.rb +0 -18
- data/lib/mws/feeds/requests/feed_submissions.rb +0 -20
- data/lib/mws/fulfillment_inbound_shipment/client.rb +0 -7
- data/lib/mws/fulfillment_inventory/client.rb +0 -7
- data/lib/mws/fulfillment_outbound_shipment/client.rb +0 -7
- data/lib/mws/off_amazon_payments/client.rb +0 -7
- data/lib/mws/orders/client.rb +0 -98
- data/lib/mws/orders/parsers/invoice_data.rb +0 -25
- data/lib/mws/orders/parsers/order.rb +0 -113
- data/lib/mws/orders/parsers/order_item.rb +0 -110
- data/lib/mws/orders/parsers/order_items.rb +0 -23
- data/lib/mws/orders/parsers/orders.rb +0 -23
- data/lib/mws/orders/parsers/payment_execution_detail.rb +0 -20
- data/lib/mws/orders/parsers/payment_execution_detail_item.rb +0 -17
- data/lib/mws/orders/parsers/service_status.rb +0 -36
- data/lib/mws/orders/parsers/service_status_message.rb +0 -17
- data/lib/mws/orders/parsers/shipping_address.rb +0 -37
- data/lib/mws/orders/requests/order_items.rb +0 -28
- data/lib/mws/orders/requests/orders.rb +0 -41
- data/lib/mws/orders/requests/service_status.rb +0 -15
- data/lib/mws/products/client.rb +0 -7
- data/lib/mws/recommendations/client.rb +0 -7
- data/lib/mws/reports/client.rb +0 -249
- data/lib/mws/reports/parsers/report.rb +0 -10
- data/lib/mws/reports/parsers/report_acknowledgements.rb +0 -20
- data/lib/mws/reports/parsers/report_count.rb +0 -10
- data/lib/mws/reports/parsers/report_info.rb +0 -29
- data/lib/mws/reports/parsers/report_list.rb +0 -23
- data/lib/mws/reports/parsers/report_request.rb +0 -14
- data/lib/mws/reports/parsers/report_request_count.rb +0 -10
- data/lib/mws/reports/parsers/report_request_info.rb +0 -49
- data/lib/mws/reports/parsers/report_request_list.rb +0 -23
- data/lib/mws/reports/parsers/report_requests.rb +0 -18
- data/lib/mws/reports/parsers/report_schedule.rb +0 -21
- data/lib/mws/reports/parsers/report_schedule_count.rb +0 -10
- data/lib/mws/reports/parsers/report_schedule_list.rb +0 -23
- data/lib/mws/reports/parsers/report_scheduler.rb +0 -19
- data/lib/mws/reports/requests/report.rb +0 -18
- data/lib/mws/reports/requests/report_acknowledgements.rb +0 -27
- data/lib/mws/reports/requests/report_count.rb +0 -20
- data/lib/mws/reports/requests/report_list.rb +0 -30
- data/lib/mws/reports/requests/report_request.rb +0 -21
- data/lib/mws/reports/requests/report_request_count.rb +0 -20
- data/lib/mws/reports/requests/report_request_list.rb +0 -30
- data/lib/mws/reports/requests/report_requests.rb +0 -20
- data/lib/mws/reports/requests/report_schedule_count.rb +0 -19
- data/lib/mws/reports/requests/report_schedule_list.rb +0 -23
- data/lib/mws/reports/requests/report_scheduler.rb +0 -29
- data/lib/mws/sellers/client.rb +0 -53
- data/lib/mws/sellers/parsers/marketplace.rb +0 -33
- data/lib/mws/sellers/parsers/marketplace_participations.rb +0 -32
- data/lib/mws/sellers/parsers/participation.rb +0 -21
- data/lib/mws/sellers/parsers/service_status.rb +0 -36
- data/lib/mws/sellers/parsers/service_status_message.rb +0 -17
- data/lib/mws/sellers/requests/marketplace_participations.rb +0 -27
- data/lib/mws/sellers/requests/service_status.rb +0 -15
- data/lib/mws/subscriptions/client.rb +0 -7
- data/lib/peddler/parsers/base.rb +0 -15
- data/lib/peddler/parsers/collection.rb +0 -23
- data/lib/peddler/parsers/counter.rb +0 -13
- data/lib/peddler/parsers/model.rb +0 -42
- data/lib/peddler/parsers/text.rb +0 -8
- data/lib/peddler/parsers/tokenable.rb +0 -13
- data/lib/peddler/parsers/xml.rb +0 -30
- data/lib/peddler/request/parameters.rb +0 -57
- data/lib/peddler/request/structured_list.rb +0 -48
- data/lib/peddler/request.rb +0 -52
- data/lib/peddler/response/base.rb +0 -0
- data/lib/peddler/response/payload/base.rb +0 -0
- data/lib/peddler/response/payload/csv.rb +0 -0
- data/lib/peddler/response/payload/xml.rb +0 -0
- data/lib/peddler/response.rb +0 -27
- data/test/fixtures/feeds/feed_submission.xml +0 -14
- data/test/fixtures/feeds/feed_submission_count.xml +0 -9
- data/test/fixtures/feeds/feed_submission_list.xml +0 -17
- data/test/fixtures/feeds/feed_submissions.xml +0 -15
- data/test/fixtures/mws.yml +0 -12
- data/test/fixtures/mws.yml.example +0 -4
- data/test/fixtures/orders/order_items.xml +0 -83
- data/test/fixtures/orders/orders.xml +0 -109
- data/test/fixtures/orders/service_status.xml +0 -19
- data/test/fixtures/reports/report.xml +0 -8
- data/test/fixtures/reports/report_acknowledgements.xml +0 -18
- data/test/fixtures/reports/report_count.xml +0 -9
- data/test/fixtures/reports/report_list.xml +0 -17
- data/test/fixtures/reports/report_request_count.xml +0 -9
- data/test/fixtures/reports/report_request_list.xml +0 -24
- data/test/fixtures/reports/report_requests.xml +0 -19
- data/test/fixtures/reports/report_schedule_count.xml +0 -10
- data/test/fixtures/reports/report_schedule_list.xml +0 -16
- data/test/fixtures/reports/report_scheduler.xml +0 -15
- data/test/fixtures/sellers/market_participations.xml +0 -27
- data/test/fixtures/sellers/service_status.xml +0 -9
- data/test/integration/feeds/test_feed_submission_count.rb +0 -13
- data/test/integration/feeds/test_feed_submission_list.rb +0 -17
- data/test/integration/feeds/test_feed_submission_result.rb +0 -15
- data/test/integration/orders/test_order_items.rb +0 -19
- data/test/integration/orders/test_orders.rb +0 -23
- data/test/integration/orders/test_service_status.rb +0 -12
- data/test/integration/reports/test_report.rb +0 -15
- data/test/integration/reports/test_report_count.rb +0 -13
- data/test/integration/reports/test_report_list.rb +0 -17
- data/test/integration/reports/test_report_request_count.rb +0 -13
- data/test/integration/reports/test_report_request_list.rb +0 -17
- data/test/integration/reports/test_report_schedule_count.rb +0 -13
- data/test/integration/reports/test_report_schedule_list.rb +0 -13
- data/test/integration/reports/test_report_scheduler.rb +0 -16
- data/test/integration/sellers/test_marketplace_participations.rb +0 -13
- data/test/integration/sellers/test_service_status.rb +0 -12
- data/test/mws/feeds/parsers/test_feed.rb +0 -13
- data/test/mws/feeds/parsers/test_feed_submission_count.rb +0 -13
- data/test/mws/feeds/parsers/test_feed_submission_info.rb +0 -25
- data/test/mws/feeds/parsers/test_feed_submission_list.rb +0 -18
- data/test/mws/feeds/parsers/test_feed_submission_result.rb +0 -13
- data/test/mws/feeds/parsers/test_feed_submissions.rb +0 -17
- data/test/mws/feeds/requests/test_feed.rb +0 -63
- data/test/mws/feeds/requests/test_feed_submission_count.rb +0 -23
- data/test/mws/feeds/requests/test_feed_submission_list.rb +0 -37
- data/test/mws/feeds/requests/test_feed_submissions.rb +0 -29
- data/test/mws/orders/parsers/test_order.rb +0 -86
- data/test/mws/orders/parsers/test_order_item.rb +0 -69
- data/test/mws/orders/parsers/test_order_items.rb +0 -18
- data/test/mws/orders/parsers/test_orders.rb +0 -18
- data/test/mws/orders/parsers/test_payment_execution_detail.rb +0 -14
- data/test/mws/orders/parsers/test_payment_execution_detail_item.rb +0 -17
- data/test/mws/orders/parsers/test_service_status.rb +0 -39
- data/test/mws/orders/parsers/test_service_status_message.rb +0 -17
- data/test/mws/orders/parsers/test_shipping_address.rb +0 -36
- data/test/mws/orders/requests/test_order_items.rb +0 -36
- data/test/mws/orders/requests/test_orders.rb +0 -46
- data/test/mws/orders/requests/test_service_status.rb +0 -25
- data/test/mws/reports/parsers/test_report_acknowledgments.rb +0 -14
- data/test/mws/reports/parsers/test_report_count.rb +0 -13
- data/test/mws/reports/parsers/test_report_info.rb +0 -29
- data/test/mws/reports/parsers/test_report_list.rb +0 -18
- data/test/mws/reports/parsers/test_report_request.rb +0 -13
- data/test/mws/reports/parsers/test_report_request_count.rb +0 -13
- data/test/mws/reports/parsers/test_report_request_info.rb +0 -49
- data/test/mws/reports/parsers/test_report_request_list.rb +0 -18
- data/test/mws/reports/parsers/test_report_requests.rb +0 -17
- data/test/mws/reports/parsers/test_report_schedule_count.rb +0 -13
- data/test/mws/reports/parsers/test_report_schedule_list.rb +0 -18
- data/test/mws/reports/parsers/test_report_scheduler.rb +0 -17
- data/test/mws/reports/requests/test_acknowledgements.rb +0 -36
- data/test/mws/reports/requests/test_report_count.rb +0 -23
- data/test/mws/reports/requests/test_report_list.rb +0 -39
- data/test/mws/reports/requests/test_report_request.rb +0 -31
- data/test/mws/reports/requests/test_report_request_count.rb +0 -23
- data/test/mws/reports/requests/test_report_request_list.rb +0 -44
- data/test/mws/reports/requests/test_report_requests.rb +0 -29
- data/test/mws/reports/requests/test_report_schedule_count.rb +0 -22
- data/test/mws/reports/requests/test_report_schedule_list.rb +0 -36
- data/test/mws/reports/requests/test_report_scheduler.rb +0 -33
- data/test/mws/sellers/parsers/test_market_participations.rb +0 -19
- data/test/mws/sellers/parsers/test_service_status.rb +0 -35
- data/test/mws/sellers/requests/test_marketplace_participation_list.rb +0 -39
- data/test/mws/sellers/requests/test_service_status.rb +0 -25
- data/test/parser_helper.rb +0 -11
- data/test/peddler/parsers/test_collection.rb +0 -8
- data/test/peddler/parsers/test_model.rb +0 -70
- data/test/peddler/request/test_parameters.rb +0 -35
- data/test/peddler/test_client.rb +0 -42
- data/test/request_helper.rb +0 -20
@@ -0,0 +1,1369 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: post
|
5
|
+
uri: https://mws-eu.amazonservices.com/Subscriptions/2013-07-01?AWSAccessKeyId=AKIAI6X4QZRXSHGHABJA&Action=GetServiceStatus&SellerId=A2NEU7G6RGUKF&SignatureMethod=HmacSHA256&SignatureVersion=2&Timestamp=2014-04-08T13%3A47%3A31Z&Signature=i5tQR343SBL026tQLU68ImW1y4GHe3rYyrbTXmqSuIw%3D
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: ''
|
9
|
+
headers:
|
10
|
+
User-Agent:
|
11
|
+
- Jeff/1.0.1 (Language=Ruby; Hakans-MacBook-Pro.local)
|
12
|
+
response:
|
13
|
+
status:
|
14
|
+
code: 200
|
15
|
+
message:
|
16
|
+
headers:
|
17
|
+
Date:
|
18
|
+
- Tue, 08 Apr 2014 13:47:31 GMT
|
19
|
+
Server:
|
20
|
+
- AmazonMWS
|
21
|
+
x-mws-request-id:
|
22
|
+
- 35650cfb-e960-42de-ad6e-6301b3ff4c66
|
23
|
+
x-mws-timestamp:
|
24
|
+
- '2014-04-08T13:47:31.501Z'
|
25
|
+
x-mws-response-context:
|
26
|
+
- sduEgT5cd+HvfKGlmnxFffi//UxbVfpwhXApPmigGV8nNaq/zIrk63i6MRnkdWtJPfM2UR3q18nj
|
27
|
+
jcY+u1Gp4A==
|
28
|
+
Content-Type:
|
29
|
+
- text/xml
|
30
|
+
Content-Length:
|
31
|
+
- '388'
|
32
|
+
Vary:
|
33
|
+
- User-Agent
|
34
|
+
body:
|
35
|
+
encoding: UTF-8
|
36
|
+
string: |
|
37
|
+
<?xml version="1.0"?>
|
38
|
+
<GetServiceStatusResponse xmlns="http://mws.amazonservices.com/schema/Subscriptions/2013-07-01">
|
39
|
+
<GetServiceStatusResult>
|
40
|
+
<Status>GREEN</Status>
|
41
|
+
<Timestamp>2014-04-08T13:47:31.501Z</Timestamp>
|
42
|
+
</GetServiceStatusResult>
|
43
|
+
<ResponseMetadata>
|
44
|
+
<RequestId>35650cfb-e960-42de-ad6e-6301b3ff4c66</RequestId>
|
45
|
+
</ResponseMetadata>
|
46
|
+
</GetServiceStatusResponse>
|
47
|
+
http_version:
|
48
|
+
recorded_at: Tue, 08 Apr 2014 13:47:31 GMT
|
49
|
+
- request:
|
50
|
+
method: post
|
51
|
+
uri: https://mws-eu.amazonservices.com/Subscriptions/2013-07-01?AWSAccessKeyId=AKIAIORT7554FEBW7UBQ&Action=GetServiceStatus&SellerId=A7ZXDJZD3UIRG&SignatureMethod=HmacSHA256&SignatureVersion=2&Timestamp=2014-04-08T13%3A47%3A31Z&Signature=f4QXNHnweu3YIaeE2O2vmswz443yJZEGbZOeQSUZ2Ts%3D
|
52
|
+
body:
|
53
|
+
encoding: US-ASCII
|
54
|
+
string: ''
|
55
|
+
headers:
|
56
|
+
User-Agent:
|
57
|
+
- Jeff/1.0.1 (Language=Ruby; Hakans-MacBook-Pro.local)
|
58
|
+
response:
|
59
|
+
status:
|
60
|
+
code: 200
|
61
|
+
message:
|
62
|
+
headers:
|
63
|
+
Date:
|
64
|
+
- Tue, 08 Apr 2014 13:47:31 GMT
|
65
|
+
Server:
|
66
|
+
- AmazonMWS
|
67
|
+
x-mws-request-id:
|
68
|
+
- d14a5b4d-9a0e-45ed-848c-e0895af6bb59
|
69
|
+
x-mws-timestamp:
|
70
|
+
- '2014-04-08T13:47:31.743Z'
|
71
|
+
x-mws-response-context:
|
72
|
+
- 0Je9zXFFLYCqG4pUC0GqEp5y4mWPrLA1HQI2sNV6Q5Sm59gwIQgEOjiH2n9Dnq4tQC03HjKWnnTZ
|
73
|
+
WAs6ifUdZA==
|
74
|
+
Content-Type:
|
75
|
+
- text/xml
|
76
|
+
Content-Length:
|
77
|
+
- '388'
|
78
|
+
Vary:
|
79
|
+
- User-Agent
|
80
|
+
body:
|
81
|
+
encoding: UTF-8
|
82
|
+
string: |
|
83
|
+
<?xml version="1.0"?>
|
84
|
+
<GetServiceStatusResponse xmlns="http://mws.amazonservices.com/schema/Subscriptions/2013-07-01">
|
85
|
+
<GetServiceStatusResult>
|
86
|
+
<Status>GREEN</Status>
|
87
|
+
<Timestamp>2014-04-08T13:47:31.743Z</Timestamp>
|
88
|
+
</GetServiceStatusResult>
|
89
|
+
<ResponseMetadata>
|
90
|
+
<RequestId>d14a5b4d-9a0e-45ed-848c-e0895af6bb59</RequestId>
|
91
|
+
</ResponseMetadata>
|
92
|
+
</GetServiceStatusResponse>
|
93
|
+
http_version:
|
94
|
+
recorded_at: Tue, 08 Apr 2014 13:47:32 GMT
|
95
|
+
- request:
|
96
|
+
method: post
|
97
|
+
uri: https://mws-eu.amazonservices.com/Subscriptions/2013-07-01?AWSAccessKeyId=AKIAI4ZNSD76DH7UBRDA&Action=GetServiceStatus&SellerId=A2DP6GIDYN6OTH&SignatureMethod=HmacSHA256&SignatureVersion=2&Timestamp=2014-04-08T13%3A47%3A32Z&Signature=iN6SBKfq8xyI0o6%2BmsaOmG6KKkAAOTT%2ByHIkYaXU%2B9g%3D
|
98
|
+
body:
|
99
|
+
encoding: US-ASCII
|
100
|
+
string: ''
|
101
|
+
headers:
|
102
|
+
User-Agent:
|
103
|
+
- Jeff/1.0.1 (Language=Ruby; Hakans-MacBook-Pro.local)
|
104
|
+
response:
|
105
|
+
status:
|
106
|
+
code: 200
|
107
|
+
message:
|
108
|
+
headers:
|
109
|
+
Date:
|
110
|
+
- Tue, 08 Apr 2014 13:47:31 GMT
|
111
|
+
Server:
|
112
|
+
- AmazonMWS
|
113
|
+
x-mws-request-id:
|
114
|
+
- a1869dbc-beee-49d2-ba90-c6d781923c32
|
115
|
+
x-mws-timestamp:
|
116
|
+
- '2014-04-08T13:47:31.939Z'
|
117
|
+
x-mws-response-context:
|
118
|
+
- hgSQK6XBPoqUPDVo1y+NHdmAknhhNx1nBcf2zgr2tyosvlkZNpyeNgjrtXdtCcPU9h7tggPGnQik
|
119
|
+
rDYM+sBVhA==
|
120
|
+
Content-Type:
|
121
|
+
- text/xml
|
122
|
+
Content-Length:
|
123
|
+
- '388'
|
124
|
+
Vary:
|
125
|
+
- User-Agent
|
126
|
+
body:
|
127
|
+
encoding: UTF-8
|
128
|
+
string: |
|
129
|
+
<?xml version="1.0"?>
|
130
|
+
<GetServiceStatusResponse xmlns="http://mws.amazonservices.com/schema/Subscriptions/2013-07-01">
|
131
|
+
<GetServiceStatusResult>
|
132
|
+
<Status>GREEN</Status>
|
133
|
+
<Timestamp>2014-04-08T13:47:31.939Z</Timestamp>
|
134
|
+
</GetServiceStatusResult>
|
135
|
+
<ResponseMetadata>
|
136
|
+
<RequestId>a1869dbc-beee-49d2-ba90-c6d781923c32</RequestId>
|
137
|
+
</ResponseMetadata>
|
138
|
+
</GetServiceStatusResponse>
|
139
|
+
http_version:
|
140
|
+
recorded_at: Tue, 08 Apr 2014 13:47:32 GMT
|
141
|
+
- request:
|
142
|
+
method: post
|
143
|
+
uri: https://mws.amazonservices.com/Subscriptions/2013-07-01?AWSAccessKeyId=AKIAJ767ZET2BZR4UDDQ&Action=GetServiceStatus&SellerId=A2H6NH4SQYFZ4M&SignatureMethod=HmacSHA256&SignatureVersion=2&Timestamp=2014-04-08T13%3A47%3A32Z&Signature=qCGqWFEasFKhtSM%2F4GXTAL0mRes2a9cYCH3Z2l39%2F%2F4%3D
|
144
|
+
body:
|
145
|
+
encoding: US-ASCII
|
146
|
+
string: ''
|
147
|
+
headers:
|
148
|
+
User-Agent:
|
149
|
+
- Jeff/1.0.1 (Language=Ruby; Hakans-MacBook-Pro.local)
|
150
|
+
response:
|
151
|
+
status:
|
152
|
+
code: 200
|
153
|
+
message:
|
154
|
+
headers:
|
155
|
+
Date:
|
156
|
+
- Tue, 08 Apr 2014 13:47:32 GMT
|
157
|
+
Server:
|
158
|
+
- AmazonMWS
|
159
|
+
x-mws-request-id:
|
160
|
+
- 95140a25-103a-4873-878c-f5579a9a766e
|
161
|
+
x-mws-timestamp:
|
162
|
+
- '2014-04-08T13:47:32.454Z'
|
163
|
+
x-mws-response-context:
|
164
|
+
- 3k534GCDHLoqJMn0pBCf8xipehQ/okGCTfXdKLGppDfsRohANbBzuuYMHNGIOA1fhq+AhqjMUT0A
|
165
|
+
nwHpVK3Oew==
|
166
|
+
Content-Type:
|
167
|
+
- text/xml
|
168
|
+
Content-Length:
|
169
|
+
- '388'
|
170
|
+
Vary:
|
171
|
+
- User-Agent
|
172
|
+
body:
|
173
|
+
encoding: UTF-8
|
174
|
+
string: |
|
175
|
+
<?xml version="1.0"?>
|
176
|
+
<GetServiceStatusResponse xmlns="http://mws.amazonservices.com/schema/Subscriptions/2013-07-01">
|
177
|
+
<GetServiceStatusResult>
|
178
|
+
<Status>GREEN</Status>
|
179
|
+
<Timestamp>2014-04-08T13:47:32.454Z</Timestamp>
|
180
|
+
</GetServiceStatusResult>
|
181
|
+
<ResponseMetadata>
|
182
|
+
<RequestId>95140a25-103a-4873-878c-f5579a9a766e</RequestId>
|
183
|
+
</ResponseMetadata>
|
184
|
+
</GetServiceStatusResponse>
|
185
|
+
http_version:
|
186
|
+
recorded_at: Tue, 08 Apr 2014 13:47:32 GMT
|
187
|
+
- request:
|
188
|
+
method: post
|
189
|
+
uri: https://mws.amazonservices.ca/Subscriptions/2013-07-01?AWSAccessKeyId=AKIAITHQMZUJROSOP27Q&Action=GetServiceStatus&SellerId=A2A7WNXBU01UJW&SignatureMethod=HmacSHA256&SignatureVersion=2&Timestamp=2014-04-08T13%3A47%3A32Z&Signature=44blxXNwtA6ZNroJjYS6oZwayWYjlvZ0WpIE43TAOkE%3D
|
190
|
+
body:
|
191
|
+
encoding: US-ASCII
|
192
|
+
string: ''
|
193
|
+
headers:
|
194
|
+
User-Agent:
|
195
|
+
- Jeff/1.0.1 (Language=Ruby; Hakans-MacBook-Pro.local)
|
196
|
+
response:
|
197
|
+
status:
|
198
|
+
code: 200
|
199
|
+
message:
|
200
|
+
headers:
|
201
|
+
Date:
|
202
|
+
- Tue, 08 Apr 2014 13:47:32 GMT
|
203
|
+
Server:
|
204
|
+
- AmazonMWS
|
205
|
+
x-mws-request-id:
|
206
|
+
- 11f3c7f8-c455-4aa2-8fa8-c0706215d31d
|
207
|
+
x-mws-timestamp:
|
208
|
+
- '2014-04-08T13:47:32.981Z'
|
209
|
+
x-mws-response-context:
|
210
|
+
- zZ0ZFXCEsApzUW/0gvqyckoPXldDRdCeWGmv+6FAiDl5wI9AHVLyqn1IYXQb6akIX4VsWaojhuaO
|
211
|
+
vlha0s2Pfg==
|
212
|
+
Content-Type:
|
213
|
+
- text/xml
|
214
|
+
Content-Length:
|
215
|
+
- '388'
|
216
|
+
Vary:
|
217
|
+
- User-Agent
|
218
|
+
body:
|
219
|
+
encoding: UTF-8
|
220
|
+
string: |
|
221
|
+
<?xml version="1.0"?>
|
222
|
+
<GetServiceStatusResponse xmlns="http://mws.amazonservices.com/schema/Subscriptions/2013-07-01">
|
223
|
+
<GetServiceStatusResult>
|
224
|
+
<Status>GREEN</Status>
|
225
|
+
<Timestamp>2014-04-08T13:47:32.981Z</Timestamp>
|
226
|
+
</GetServiceStatusResult>
|
227
|
+
<ResponseMetadata>
|
228
|
+
<RequestId>11f3c7f8-c455-4aa2-8fa8-c0706215d31d</RequestId>
|
229
|
+
</ResponseMetadata>
|
230
|
+
</GetServiceStatusResponse>
|
231
|
+
http_version:
|
232
|
+
recorded_at: Tue, 08 Apr 2014 13:47:33 GMT
|
233
|
+
- request:
|
234
|
+
method: post
|
235
|
+
uri: https://mws.amazonservices.jp/Subscriptions/2013-07-01?AWSAccessKeyId=AKIAJ5RDDSRROM6GXQ5Q&Action=GetServiceStatus&SellerId=A7BU5WGNVGQ1I&SignatureMethod=HmacSHA256&SignatureVersion=2&Timestamp=2014-04-08T13%3A47%3A33Z&Signature=EhHPZRvOqwvekW2CRvKQeyXHCofd%2Fu99SRj61s4UZlU%3D
|
236
|
+
body:
|
237
|
+
encoding: US-ASCII
|
238
|
+
string: ''
|
239
|
+
headers:
|
240
|
+
User-Agent:
|
241
|
+
- Jeff/1.0.1 (Language=Ruby; Hakans-MacBook-Pro.local)
|
242
|
+
response:
|
243
|
+
status:
|
244
|
+
code: 200
|
245
|
+
message:
|
246
|
+
headers:
|
247
|
+
Date:
|
248
|
+
- Tue, 08 Apr 2014 13:47:33 GMT
|
249
|
+
Server:
|
250
|
+
- AmazonMWS
|
251
|
+
x-mws-request-id:
|
252
|
+
- fbbd2564-5642-404b-9a7c-8f80f467e753
|
253
|
+
x-mws-timestamp:
|
254
|
+
- '2014-04-08T13:47:33.779Z'
|
255
|
+
x-mws-response-context:
|
256
|
+
- lv0x9JTr6ZTFpouBHjxIILJ7MQZ9nVeK256MCmX2TDEqw2Lt5dq3khiq/9YPiDD4ERECjxkveoMb
|
257
|
+
Mqg9TvpJpQ==
|
258
|
+
Content-Type:
|
259
|
+
- text/xml
|
260
|
+
Content-Length:
|
261
|
+
- '388'
|
262
|
+
Vary:
|
263
|
+
- User-Agent
|
264
|
+
body:
|
265
|
+
encoding: UTF-8
|
266
|
+
string: |
|
267
|
+
<?xml version="1.0"?>
|
268
|
+
<GetServiceStatusResponse xmlns="http://mws.amazonservices.com/schema/Subscriptions/2013-07-01">
|
269
|
+
<GetServiceStatusResult>
|
270
|
+
<Status>GREEN</Status>
|
271
|
+
<Timestamp>2014-04-08T13:47:33.779Z</Timestamp>
|
272
|
+
</GetServiceStatusResult>
|
273
|
+
<ResponseMetadata>
|
274
|
+
<RequestId>fbbd2564-5642-404b-9a7c-8f80f467e753</RequestId>
|
275
|
+
</ResponseMetadata>
|
276
|
+
</GetServiceStatusResponse>
|
277
|
+
http_version:
|
278
|
+
recorded_at: Tue, 08 Apr 2014 13:47:34 GMT
|
279
|
+
- request:
|
280
|
+
method: post
|
281
|
+
uri: https://mws-eu.amazonservices.com/Subscriptions/2013-07-01?AWSAccessKeyId=AKIAJJDQ2MJTMPXKJE4A&Action=GetServiceStatus&SellerId=A2D9DZ30GEWP6N&SignatureMethod=HmacSHA256&SignatureVersion=2&Timestamp=2014-04-08T13%3A47%3A34Z&Signature=pSQlieT%2FN96rosnWhFdyGpT77tLSB3AX%2BRSYBDLq20U%3D
|
282
|
+
body:
|
283
|
+
encoding: US-ASCII
|
284
|
+
string: ''
|
285
|
+
headers:
|
286
|
+
User-Agent:
|
287
|
+
- Jeff/1.0.1 (Language=Ruby; Hakans-MacBook-Pro.local)
|
288
|
+
response:
|
289
|
+
status:
|
290
|
+
code: 200
|
291
|
+
message:
|
292
|
+
headers:
|
293
|
+
Date:
|
294
|
+
- Tue, 08 Apr 2014 13:47:34 GMT
|
295
|
+
Server:
|
296
|
+
- AmazonMWS
|
297
|
+
x-mws-request-id:
|
298
|
+
- 01fd163b-cb1c-4e9d-b32e-7d28337eeb06
|
299
|
+
x-mws-timestamp:
|
300
|
+
- '2014-04-08T13:47:34.082Z'
|
301
|
+
x-mws-response-context:
|
302
|
+
- 8tuQ/7IptPyhrvgfL5nUXjmTJBqWX2wY+dm+aUTg6xOFcnUgwBhHf/WyLD1tB7CNpcF2zfUYWPWQ
|
303
|
+
i9a7KGfzew==
|
304
|
+
Content-Type:
|
305
|
+
- text/xml
|
306
|
+
Content-Length:
|
307
|
+
- '388'
|
308
|
+
Vary:
|
309
|
+
- User-Agent
|
310
|
+
body:
|
311
|
+
encoding: UTF-8
|
312
|
+
string: |
|
313
|
+
<?xml version="1.0"?>
|
314
|
+
<GetServiceStatusResponse xmlns="http://mws.amazonservices.com/schema/Subscriptions/2013-07-01">
|
315
|
+
<GetServiceStatusResult>
|
316
|
+
<Status>GREEN</Status>
|
317
|
+
<Timestamp>2014-04-08T13:47:34.082Z</Timestamp>
|
318
|
+
</GetServiceStatusResult>
|
319
|
+
<ResponseMetadata>
|
320
|
+
<RequestId>01fd163b-cb1c-4e9d-b32e-7d28337eeb06</RequestId>
|
321
|
+
</ResponseMetadata>
|
322
|
+
</GetServiceStatusResponse>
|
323
|
+
http_version:
|
324
|
+
recorded_at: Tue, 08 Apr 2014 13:47:34 GMT
|
325
|
+
- request:
|
326
|
+
method: post
|
327
|
+
uri: https://mws-eu.amazonservices.com/Subscriptions/2013-07-01?AWSAccessKeyId=AKIAJLUHOXLR5S2L6A6A&Action=GetServiceStatus&SellerId=A2APQUVDBVWV7E&SignatureMethod=HmacSHA256&SignatureVersion=2&Timestamp=2014-04-08T13%3A47%3A34Z&Signature=Aqfb7TfyfIRL8JZj2UQc6IDIeGgQUTq2IGfUAFFaACE%3D
|
328
|
+
body:
|
329
|
+
encoding: US-ASCII
|
330
|
+
string: ''
|
331
|
+
headers:
|
332
|
+
User-Agent:
|
333
|
+
- Jeff/1.0.1 (Language=Ruby; Hakans-MacBook-Pro.local)
|
334
|
+
response:
|
335
|
+
status:
|
336
|
+
code: 200
|
337
|
+
message:
|
338
|
+
headers:
|
339
|
+
Date:
|
340
|
+
- Tue, 08 Apr 2014 13:47:34 GMT
|
341
|
+
Server:
|
342
|
+
- AmazonMWS
|
343
|
+
x-mws-request-id:
|
344
|
+
- 7f8cb419-30a3-4437-95a7-7f55528cebd0
|
345
|
+
x-mws-timestamp:
|
346
|
+
- '2014-04-08T13:47:34.301Z'
|
347
|
+
x-mws-response-context:
|
348
|
+
- 8tuQ/7IptPyhrvgfL5nUXjmTJBqWX2wY+dm+aUTg6xOFcnUgwBhHf/WyLD1tB7CNpcF2zfUYWPWQ
|
349
|
+
i9a7KGfzew==
|
350
|
+
Content-Type:
|
351
|
+
- text/xml
|
352
|
+
Content-Length:
|
353
|
+
- '388'
|
354
|
+
Vary:
|
355
|
+
- User-Agent
|
356
|
+
body:
|
357
|
+
encoding: UTF-8
|
358
|
+
string: |
|
359
|
+
<?xml version="1.0"?>
|
360
|
+
<GetServiceStatusResponse xmlns="http://mws.amazonservices.com/schema/Subscriptions/2013-07-01">
|
361
|
+
<GetServiceStatusResult>
|
362
|
+
<Status>GREEN</Status>
|
363
|
+
<Timestamp>2014-04-08T13:47:34.301Z</Timestamp>
|
364
|
+
</GetServiceStatusResult>
|
365
|
+
<ResponseMetadata>
|
366
|
+
<RequestId>7f8cb419-30a3-4437-95a7-7f55528cebd0</RequestId>
|
367
|
+
</ResponseMetadata>
|
368
|
+
</GetServiceStatusResponse>
|
369
|
+
http_version:
|
370
|
+
recorded_at: Tue, 08 Apr 2014 13:47:34 GMT
|
371
|
+
- request:
|
372
|
+
method: post
|
373
|
+
uri: https://mws-eu.amazonservices.com/Subscriptions/2013-07-01?AWSAccessKeyId=AKIAI6X4QZRXSHGHABJA&Action=ListRegisteredDestinations&MarketplaceId=A1RKKUPIHCS9HS&SellerId=A2NEU7G6RGUKF&SignatureMethod=HmacSHA256&SignatureVersion=2&Timestamp=2014-04-08T13%3A47%3A34Z&Signature=aKpnM21goPPtrzJY0UIZC9XfsXTKhpPAfD9uDDkxsxs%3D
|
374
|
+
body:
|
375
|
+
encoding: US-ASCII
|
376
|
+
string: ''
|
377
|
+
headers:
|
378
|
+
User-Agent:
|
379
|
+
- Jeff/1.0.1 (Language=Ruby; Hakans-MacBook-Pro.local)
|
380
|
+
response:
|
381
|
+
status:
|
382
|
+
code: 200
|
383
|
+
message:
|
384
|
+
headers:
|
385
|
+
Date:
|
386
|
+
- Tue, 08 Apr 2014 13:47:34 GMT
|
387
|
+
Server:
|
388
|
+
- AmazonMWS
|
389
|
+
x-amzn-ActionTrace:
|
390
|
+
- amzn1.tr.56b3362e-bf24-11e3-ba1e-0a50493d0000.0..aO0OHu
|
391
|
+
x-mws-request-id:
|
392
|
+
- bee63962-71a1-496a-b333-514f2a892cbc
|
393
|
+
x-mws-timestamp:
|
394
|
+
- '2014-04-08T13:47:34.523Z'
|
395
|
+
x-mws-response-context:
|
396
|
+
- 8tuQ/7IptPyhrvgfL5nUXjmTJBqWX2wY+dm+aUTg6xOFcnUgwBhHf/WyLD1tB7CNpcF2zfUYWPWQ
|
397
|
+
i9a7KGfzew==
|
398
|
+
Content-Type:
|
399
|
+
- text/xml
|
400
|
+
Content-Length:
|
401
|
+
- '937'
|
402
|
+
Vary:
|
403
|
+
- User-Agent
|
404
|
+
body:
|
405
|
+
encoding: UTF-8
|
406
|
+
string: |
|
407
|
+
<ListRegisteredDestinationsResponse xmlns="http://mws.amazonservices.com/schema/Subscriptions/2013-07-01">
|
408
|
+
<ListRegisteredDestinationsResult>
|
409
|
+
<DestinationList>
|
410
|
+
<member>
|
411
|
+
<DeliveryChannel>SQS</DeliveryChannel>
|
412
|
+
<AttributeList>
|
413
|
+
<member>
|
414
|
+
<Value>https://sqs.us-east-1.amazonaws.com/337281144291/bezos</Value>
|
415
|
+
<Key>sqsQueueUrl</Key>
|
416
|
+
</member>
|
417
|
+
</AttributeList>
|
418
|
+
</member>
|
419
|
+
<member>
|
420
|
+
<DeliveryChannel>SQS</DeliveryChannel>
|
421
|
+
<AttributeList>
|
422
|
+
<member>
|
423
|
+
<Value>https://sqs.us-east-1.amazonaws.com/337281144291/Test</Value>
|
424
|
+
<Key>sqsQueueUrl</Key>
|
425
|
+
</member>
|
426
|
+
</AttributeList>
|
427
|
+
</member>
|
428
|
+
</DestinationList>
|
429
|
+
</ListRegisteredDestinationsResult>
|
430
|
+
<ResponseMetadata>
|
431
|
+
<RequestId>bee63962-71a1-496a-b333-514f2a892cbc</RequestId>
|
432
|
+
</ResponseMetadata>
|
433
|
+
</ListRegisteredDestinationsResponse>
|
434
|
+
http_version:
|
435
|
+
recorded_at: Tue, 08 Apr 2014 13:47:35 GMT
|
436
|
+
- request:
|
437
|
+
method: post
|
438
|
+
uri: https://mws-eu.amazonservices.com/Subscriptions/2013-07-01?AWSAccessKeyId=AKIAIORT7554FEBW7UBQ&Action=ListRegisteredDestinations&MarketplaceId=A1PA6795UKMFR9&SellerId=A7ZXDJZD3UIRG&SignatureMethod=HmacSHA256&SignatureVersion=2&Timestamp=2014-04-08T13%3A47%3A35Z&Signature=%2BicWrT12HbXB5uTWFa%2F%2BqEZCnuAIaY9XvCA5U6Azf3c%3D
|
439
|
+
body:
|
440
|
+
encoding: US-ASCII
|
441
|
+
string: ''
|
442
|
+
headers:
|
443
|
+
User-Agent:
|
444
|
+
- Jeff/1.0.1 (Language=Ruby; Hakans-MacBook-Pro.local)
|
445
|
+
response:
|
446
|
+
status:
|
447
|
+
code: 200
|
448
|
+
message:
|
449
|
+
headers:
|
450
|
+
Date:
|
451
|
+
- Tue, 08 Apr 2014 13:47:34 GMT
|
452
|
+
Server:
|
453
|
+
- AmazonMWS
|
454
|
+
x-amzn-ActionTrace:
|
455
|
+
- amzn1.tr.56d90daf-bf24-11e3-ba1e-0a50493d0000.0..6PYl0b
|
456
|
+
x-mws-request-id:
|
457
|
+
- 639f98e9-bbf3-41dc-a5b5-4f72c40919a6
|
458
|
+
x-mws-timestamp:
|
459
|
+
- '2014-04-08T13:47:34.778Z'
|
460
|
+
x-mws-response-context:
|
461
|
+
- UHbQEepJnGmxaCdTPtEkVs8nrVE6Dd5jb8GT7JTNDSuNyTrUKOhvaju20l5KTPgctm3/wIiM7sA5
|
462
|
+
xHMJ/Qu7fA==
|
463
|
+
Content-Type:
|
464
|
+
- text/xml
|
465
|
+
Content-Length:
|
466
|
+
- '937'
|
467
|
+
Vary:
|
468
|
+
- User-Agent
|
469
|
+
body:
|
470
|
+
encoding: UTF-8
|
471
|
+
string: |
|
472
|
+
<ListRegisteredDestinationsResponse xmlns="http://mws.amazonservices.com/schema/Subscriptions/2013-07-01">
|
473
|
+
<ListRegisteredDestinationsResult>
|
474
|
+
<DestinationList>
|
475
|
+
<member>
|
476
|
+
<DeliveryChannel>SQS</DeliveryChannel>
|
477
|
+
<AttributeList>
|
478
|
+
<member>
|
479
|
+
<Value>https://sqs.us-east-1.amazonaws.com/337281144291/bezos</Value>
|
480
|
+
<Key>sqsQueueUrl</Key>
|
481
|
+
</member>
|
482
|
+
</AttributeList>
|
483
|
+
</member>
|
484
|
+
<member>
|
485
|
+
<DeliveryChannel>SQS</DeliveryChannel>
|
486
|
+
<AttributeList>
|
487
|
+
<member>
|
488
|
+
<Value>https://sqs.us-east-1.amazonaws.com/337281144291/Test</Value>
|
489
|
+
<Key>sqsQueueUrl</Key>
|
490
|
+
</member>
|
491
|
+
</AttributeList>
|
492
|
+
</member>
|
493
|
+
</DestinationList>
|
494
|
+
</ListRegisteredDestinationsResult>
|
495
|
+
<ResponseMetadata>
|
496
|
+
<RequestId>639f98e9-bbf3-41dc-a5b5-4f72c40919a6</RequestId>
|
497
|
+
</ResponseMetadata>
|
498
|
+
</ListRegisteredDestinationsResponse>
|
499
|
+
http_version:
|
500
|
+
recorded_at: Tue, 08 Apr 2014 13:47:35 GMT
|
501
|
+
- request:
|
502
|
+
method: post
|
503
|
+
uri: https://mws.amazonservices.com/Subscriptions/2013-07-01?AWSAccessKeyId=AKIAJ767ZET2BZR4UDDQ&Action=ListRegisteredDestinations&MarketplaceId=ATVPDKIKX0DER&SellerId=A2H6NH4SQYFZ4M&SignatureMethod=HmacSHA256&SignatureVersion=2&Timestamp=2014-04-08T13%3A47%3A35Z&Signature=vYTYRNXZj7ER9bnQFhb5xhHxxYUddiOs1gMLdDn6IeM%3D
|
504
|
+
body:
|
505
|
+
encoding: US-ASCII
|
506
|
+
string: ''
|
507
|
+
headers:
|
508
|
+
User-Agent:
|
509
|
+
- Jeff/1.0.1 (Language=Ruby; Hakans-MacBook-Pro.local)
|
510
|
+
response:
|
511
|
+
status:
|
512
|
+
code: 200
|
513
|
+
message:
|
514
|
+
headers:
|
515
|
+
Date:
|
516
|
+
- Tue, 08 Apr 2014 13:47:35 GMT
|
517
|
+
Server:
|
518
|
+
- AmazonMWS
|
519
|
+
x-amzn-ActionTrace:
|
520
|
+
- amzn1.tr.572447cd-bf24-11e3-848b-0a59a9d60000.0..uogy7t
|
521
|
+
x-mws-request-id:
|
522
|
+
- f84cd324-d919-4877-9b49-88488262cb24
|
523
|
+
x-mws-timestamp:
|
524
|
+
- '2014-04-08T13:47:35.251Z'
|
525
|
+
x-mws-response-context:
|
526
|
+
- IAiy0x1txyYYUm4GTC/KrC6xeQUEQ/Y84GBhkreNic72cLnGchNE7kIA291Y7lksuqX7u517aDQA
|
527
|
+
Xg1JgebduQ==
|
528
|
+
Content-Type:
|
529
|
+
- text/xml
|
530
|
+
Content-Length:
|
531
|
+
- '937'
|
532
|
+
Vary:
|
533
|
+
- User-Agent
|
534
|
+
body:
|
535
|
+
encoding: UTF-8
|
536
|
+
string: |
|
537
|
+
<ListRegisteredDestinationsResponse xmlns="http://mws.amazonservices.com/schema/Subscriptions/2013-07-01">
|
538
|
+
<ListRegisteredDestinationsResult>
|
539
|
+
<DestinationList>
|
540
|
+
<member>
|
541
|
+
<DeliveryChannel>SQS</DeliveryChannel>
|
542
|
+
<AttributeList>
|
543
|
+
<member>
|
544
|
+
<Value>https://sqs.us-east-1.amazonaws.com/337281144291/bezos</Value>
|
545
|
+
<Key>sqsQueueUrl</Key>
|
546
|
+
</member>
|
547
|
+
</AttributeList>
|
548
|
+
</member>
|
549
|
+
<member>
|
550
|
+
<DeliveryChannel>SQS</DeliveryChannel>
|
551
|
+
<AttributeList>
|
552
|
+
<member>
|
553
|
+
<Value>https://sqs.us-east-1.amazonaws.com/337281144291/Test</Value>
|
554
|
+
<Key>sqsQueueUrl</Key>
|
555
|
+
</member>
|
556
|
+
</AttributeList>
|
557
|
+
</member>
|
558
|
+
</DestinationList>
|
559
|
+
</ListRegisteredDestinationsResult>
|
560
|
+
<ResponseMetadata>
|
561
|
+
<RequestId>f84cd324-d919-4877-9b49-88488262cb24</RequestId>
|
562
|
+
</ResponseMetadata>
|
563
|
+
</ListRegisteredDestinationsResponse>
|
564
|
+
http_version:
|
565
|
+
recorded_at: Tue, 08 Apr 2014 13:47:35 GMT
|
566
|
+
- request:
|
567
|
+
method: post
|
568
|
+
uri: https://mws-eu.amazonservices.com/Subscriptions/2013-07-01?AWSAccessKeyId=AKIAJJDQ2MJTMPXKJE4A&Action=ListRegisteredDestinations&MarketplaceId=A1F83G8C2ARO7P&SellerId=A2D9DZ30GEWP6N&SignatureMethod=HmacSHA256&SignatureVersion=2&Timestamp=2014-04-08T13%3A47%3A35Z&Signature=rSXbJwsZdbHF7QcriEwG7ig%2FHiZKDad3NAxN5PVjTyA%3D
|
569
|
+
body:
|
570
|
+
encoding: US-ASCII
|
571
|
+
string: ''
|
572
|
+
headers:
|
573
|
+
User-Agent:
|
574
|
+
- Jeff/1.0.1 (Language=Ruby; Hakans-MacBook-Pro.local)
|
575
|
+
response:
|
576
|
+
status:
|
577
|
+
code: 200
|
578
|
+
message:
|
579
|
+
headers:
|
580
|
+
Date:
|
581
|
+
- Tue, 08 Apr 2014 13:47:35 GMT
|
582
|
+
Server:
|
583
|
+
- AmazonMWS
|
584
|
+
x-amzn-ActionTrace:
|
585
|
+
- amzn1.tr.575ae7fd-bf24-11e3-9e6c-0a5128e20000.0..frZJpj
|
586
|
+
x-mws-request-id:
|
587
|
+
- 3dbfc24a-ce6f-40eb-b734-1f07b3cc19e1
|
588
|
+
x-mws-timestamp:
|
589
|
+
- '2014-04-08T13:47:35.611Z'
|
590
|
+
x-mws-response-context:
|
591
|
+
- uGofSaaGnUuArrX0nZjcS2Y1vjd04B1EH/FRVUYNah0FLAilBCZWRVsI1AB6eljaIs/BW8/aZS8f
|
592
|
+
epxYf9fsvQ==
|
593
|
+
Content-Type:
|
594
|
+
- text/xml
|
595
|
+
Content-Length:
|
596
|
+
- '937'
|
597
|
+
Vary:
|
598
|
+
- User-Agent
|
599
|
+
body:
|
600
|
+
encoding: UTF-8
|
601
|
+
string: |
|
602
|
+
<ListRegisteredDestinationsResponse xmlns="http://mws.amazonservices.com/schema/Subscriptions/2013-07-01">
|
603
|
+
<ListRegisteredDestinationsResult>
|
604
|
+
<DestinationList>
|
605
|
+
<member>
|
606
|
+
<DeliveryChannel>SQS</DeliveryChannel>
|
607
|
+
<AttributeList>
|
608
|
+
<member>
|
609
|
+
<Value>https://sqs.us-east-1.amazonaws.com/337281144291/bezos</Value>
|
610
|
+
<Key>sqsQueueUrl</Key>
|
611
|
+
</member>
|
612
|
+
</AttributeList>
|
613
|
+
</member>
|
614
|
+
<member>
|
615
|
+
<DeliveryChannel>SQS</DeliveryChannel>
|
616
|
+
<AttributeList>
|
617
|
+
<member>
|
618
|
+
<Value>https://sqs.us-east-1.amazonaws.com/337281144291/Test</Value>
|
619
|
+
<Key>sqsQueueUrl</Key>
|
620
|
+
</member>
|
621
|
+
</AttributeList>
|
622
|
+
</member>
|
623
|
+
</DestinationList>
|
624
|
+
</ListRegisteredDestinationsResult>
|
625
|
+
<ResponseMetadata>
|
626
|
+
<RequestId>3dbfc24a-ce6f-40eb-b734-1f07b3cc19e1</RequestId>
|
627
|
+
</ResponseMetadata>
|
628
|
+
</ListRegisteredDestinationsResponse>
|
629
|
+
http_version:
|
630
|
+
recorded_at: Tue, 08 Apr 2014 13:47:36 GMT
|
631
|
+
- request:
|
632
|
+
method: post
|
633
|
+
uri: https://mws-eu.amazonservices.com/Subscriptions/2013-07-01?AWSAccessKeyId=AKIAI4ZNSD76DH7UBRDA&Action=ListRegisteredDestinations&MarketplaceId=A13V1IB3VIYZZH&SellerId=A2DP6GIDYN6OTH&SignatureMethod=HmacSHA256&SignatureVersion=2&Timestamp=2014-04-08T13%3A47%3A36Z&Signature=Yg8oskn21BU4q3hpW4GoTk%2BekRl1NZjRME8DD%2FCA0PM%3D
|
634
|
+
body:
|
635
|
+
encoding: US-ASCII
|
636
|
+
string: ''
|
637
|
+
headers:
|
638
|
+
User-Agent:
|
639
|
+
- Jeff/1.0.1 (Language=Ruby; Hakans-MacBook-Pro.local)
|
640
|
+
response:
|
641
|
+
status:
|
642
|
+
code: 200
|
643
|
+
message:
|
644
|
+
headers:
|
645
|
+
Date:
|
646
|
+
- Tue, 08 Apr 2014 13:47:35 GMT
|
647
|
+
Server:
|
648
|
+
- AmazonMWS
|
649
|
+
x-amzn-ActionTrace:
|
650
|
+
- amzn1.tr.5782e25e-bf24-11e3-9e6c-0a5128e20000.0..LOtmMg
|
651
|
+
x-mws-request-id:
|
652
|
+
- 3ae80fef-b5b2-4857-85bf-96eb65a758d0
|
653
|
+
x-mws-timestamp:
|
654
|
+
- '2014-04-08T13:47:35.860Z'
|
655
|
+
x-mws-response-context:
|
656
|
+
- hgSQK6XBPoqUPDVo1y+NHdmAknhhNx1nBcf2zgr2tyosvlkZNpyeNgjrtXdtCcPU9h7tggPGnQik
|
657
|
+
rDYM+sBVhA==
|
658
|
+
Content-Type:
|
659
|
+
- text/xml
|
660
|
+
Content-Length:
|
661
|
+
- '937'
|
662
|
+
Vary:
|
663
|
+
- User-Agent
|
664
|
+
body:
|
665
|
+
encoding: UTF-8
|
666
|
+
string: |
|
667
|
+
<ListRegisteredDestinationsResponse xmlns="http://mws.amazonservices.com/schema/Subscriptions/2013-07-01">
|
668
|
+
<ListRegisteredDestinationsResult>
|
669
|
+
<DestinationList>
|
670
|
+
<member>
|
671
|
+
<DeliveryChannel>SQS</DeliveryChannel>
|
672
|
+
<AttributeList>
|
673
|
+
<member>
|
674
|
+
<Value>https://sqs.us-east-1.amazonaws.com/337281144291/bezos</Value>
|
675
|
+
<Key>sqsQueueUrl</Key>
|
676
|
+
</member>
|
677
|
+
</AttributeList>
|
678
|
+
</member>
|
679
|
+
<member>
|
680
|
+
<DeliveryChannel>SQS</DeliveryChannel>
|
681
|
+
<AttributeList>
|
682
|
+
<member>
|
683
|
+
<Value>https://sqs.us-east-1.amazonaws.com/337281144291/Test</Value>
|
684
|
+
<Key>sqsQueueUrl</Key>
|
685
|
+
</member>
|
686
|
+
</AttributeList>
|
687
|
+
</member>
|
688
|
+
</DestinationList>
|
689
|
+
</ListRegisteredDestinationsResult>
|
690
|
+
<ResponseMetadata>
|
691
|
+
<RequestId>3ae80fef-b5b2-4857-85bf-96eb65a758d0</RequestId>
|
692
|
+
</ResponseMetadata>
|
693
|
+
</ListRegisteredDestinationsResponse>
|
694
|
+
http_version:
|
695
|
+
recorded_at: Tue, 08 Apr 2014 13:47:36 GMT
|
696
|
+
- request:
|
697
|
+
method: post
|
698
|
+
uri: https://mws.amazonservices.jp/Subscriptions/2013-07-01?AWSAccessKeyId=AKIAJ5RDDSRROM6GXQ5Q&Action=ListRegisteredDestinations&MarketplaceId=A1VC38T7YXB528&SellerId=A7BU5WGNVGQ1I&SignatureMethod=HmacSHA256&SignatureVersion=2&Timestamp=2014-04-08T13%3A47%3A36Z&Signature=j40CNo7owZt7NkP9VUsopvnEB3IiEcjT5SC1jSHwqp0%3D
|
699
|
+
body:
|
700
|
+
encoding: US-ASCII
|
701
|
+
string: ''
|
702
|
+
headers:
|
703
|
+
User-Agent:
|
704
|
+
- Jeff/1.0.1 (Language=Ruby; Hakans-MacBook-Pro.local)
|
705
|
+
response:
|
706
|
+
status:
|
707
|
+
code: 200
|
708
|
+
message:
|
709
|
+
headers:
|
710
|
+
Date:
|
711
|
+
- Tue, 08 Apr 2014 13:47:36 GMT
|
712
|
+
Server:
|
713
|
+
- AmazonMWS
|
714
|
+
x-amzn-ActionTrace:
|
715
|
+
- amzn1.tr.57ff16b4-bf24-11e3-8de0-0ae9bfe50000.0..iz8q3G
|
716
|
+
x-mws-request-id:
|
717
|
+
- 75852f2f-7be9-4454-9d5d-90ad352563b2
|
718
|
+
x-mws-timestamp:
|
719
|
+
- '2014-04-08T13:47:36.669Z'
|
720
|
+
x-mws-response-context:
|
721
|
+
- Nh5ft/fb3vVvx01LMJw9uBoZCTy8xHADd1OhrLvsde0reB7YdvCGBa1913mkxU9HWu7anzx+Slfo
|
722
|
+
kkaJrtE1IA==
|
723
|
+
Content-Type:
|
724
|
+
- text/xml
|
725
|
+
Content-Length:
|
726
|
+
- '937'
|
727
|
+
Vary:
|
728
|
+
- User-Agent
|
729
|
+
body:
|
730
|
+
encoding: UTF-8
|
731
|
+
string: |
|
732
|
+
<ListRegisteredDestinationsResponse xmlns="http://mws.amazonservices.com/schema/Subscriptions/2013-07-01">
|
733
|
+
<ListRegisteredDestinationsResult>
|
734
|
+
<DestinationList>
|
735
|
+
<member>
|
736
|
+
<DeliveryChannel>SQS</DeliveryChannel>
|
737
|
+
<AttributeList>
|
738
|
+
<member>
|
739
|
+
<Value>https://sqs.us-east-1.amazonaws.com/337281144291/bezos</Value>
|
740
|
+
<Key>sqsQueueUrl</Key>
|
741
|
+
</member>
|
742
|
+
</AttributeList>
|
743
|
+
</member>
|
744
|
+
<member>
|
745
|
+
<DeliveryChannel>SQS</DeliveryChannel>
|
746
|
+
<AttributeList>
|
747
|
+
<member>
|
748
|
+
<Value>https://sqs.us-east-1.amazonaws.com/337281144291/Test</Value>
|
749
|
+
<Key>sqsQueueUrl</Key>
|
750
|
+
</member>
|
751
|
+
</AttributeList>
|
752
|
+
</member>
|
753
|
+
</DestinationList>
|
754
|
+
</ListRegisteredDestinationsResult>
|
755
|
+
<ResponseMetadata>
|
756
|
+
<RequestId>75852f2f-7be9-4454-9d5d-90ad352563b2</RequestId>
|
757
|
+
</ResponseMetadata>
|
758
|
+
</ListRegisteredDestinationsResponse>
|
759
|
+
http_version:
|
760
|
+
recorded_at: Tue, 08 Apr 2014 13:47:37 GMT
|
761
|
+
- request:
|
762
|
+
method: post
|
763
|
+
uri: https://mws-eu.amazonservices.com/Subscriptions/2013-07-01?AWSAccessKeyId=AKIAJLUHOXLR5S2L6A6A&Action=ListRegisteredDestinations&MarketplaceId=APJ6JRA9NG5V4&SellerId=A2APQUVDBVWV7E&SignatureMethod=HmacSHA256&SignatureVersion=2&Timestamp=2014-04-08T13%3A47%3A37Z&Signature=KueHnr2cAJsJ2U66uOfFHw3dfU%2BiAaZ%2Fdqq%2FJpaezRc%3D
|
764
|
+
body:
|
765
|
+
encoding: US-ASCII
|
766
|
+
string: ''
|
767
|
+
headers:
|
768
|
+
User-Agent:
|
769
|
+
- Jeff/1.0.1 (Language=Ruby; Hakans-MacBook-Pro.local)
|
770
|
+
response:
|
771
|
+
status:
|
772
|
+
code: 200
|
773
|
+
message:
|
774
|
+
headers:
|
775
|
+
Date:
|
776
|
+
- Tue, 08 Apr 2014 13:47:36 GMT
|
777
|
+
Server:
|
778
|
+
- AmazonMWS
|
779
|
+
x-amzn-ActionTrace:
|
780
|
+
- amzn1.tr.583605a0-bf24-11e3-ba1e-0a50493d0000.0..05$1S$
|
781
|
+
x-mws-request-id:
|
782
|
+
- d2a0cf35-6260-4b3e-97db-807ffe85b4e1
|
783
|
+
x-mws-timestamp:
|
784
|
+
- '2014-04-08T13:47:37.060Z'
|
785
|
+
x-mws-response-context:
|
786
|
+
- sduEgT5cd+HvfKGlmnxFffi//UxbVfpwhXApPmigGV8nNaq/zIrk63i6MRnkdWtJPfM2UR3q18nj
|
787
|
+
jcY+u1Gp4A==
|
788
|
+
Content-Type:
|
789
|
+
- text/xml
|
790
|
+
Content-Length:
|
791
|
+
- '937'
|
792
|
+
Vary:
|
793
|
+
- User-Agent
|
794
|
+
body:
|
795
|
+
encoding: UTF-8
|
796
|
+
string: |
|
797
|
+
<ListRegisteredDestinationsResponse xmlns="http://mws.amazonservices.com/schema/Subscriptions/2013-07-01">
|
798
|
+
<ListRegisteredDestinationsResult>
|
799
|
+
<DestinationList>
|
800
|
+
<member>
|
801
|
+
<DeliveryChannel>SQS</DeliveryChannel>
|
802
|
+
<AttributeList>
|
803
|
+
<member>
|
804
|
+
<Value>https://sqs.us-east-1.amazonaws.com/337281144291/bezos</Value>
|
805
|
+
<Key>sqsQueueUrl</Key>
|
806
|
+
</member>
|
807
|
+
</AttributeList>
|
808
|
+
</member>
|
809
|
+
<member>
|
810
|
+
<DeliveryChannel>SQS</DeliveryChannel>
|
811
|
+
<AttributeList>
|
812
|
+
<member>
|
813
|
+
<Value>https://sqs.us-east-1.amazonaws.com/337281144291/Test</Value>
|
814
|
+
<Key>sqsQueueUrl</Key>
|
815
|
+
</member>
|
816
|
+
</AttributeList>
|
817
|
+
</member>
|
818
|
+
</DestinationList>
|
819
|
+
</ListRegisteredDestinationsResult>
|
820
|
+
<ResponseMetadata>
|
821
|
+
<RequestId>d2a0cf35-6260-4b3e-97db-807ffe85b4e1</RequestId>
|
822
|
+
</ResponseMetadata>
|
823
|
+
</ListRegisteredDestinationsResponse>
|
824
|
+
http_version:
|
825
|
+
recorded_at: Tue, 08 Apr 2014 13:47:37 GMT
|
826
|
+
- request:
|
827
|
+
method: post
|
828
|
+
uri: https://mws.amazonservices.ca/Subscriptions/2013-07-01?AWSAccessKeyId=AKIAITHQMZUJROSOP27Q&Action=ListRegisteredDestinations&MarketplaceId=A2EUQ1WTGCTBG2&SellerId=A2A7WNXBU01UJW&SignatureMethod=HmacSHA256&SignatureVersion=2&Timestamp=2014-04-08T13%3A47%3A37Z&Signature=YGwfJ263OjhIja85UG%2FSceGqj7Q9N9PH1Mp98iPkhHc%3D
|
829
|
+
body:
|
830
|
+
encoding: US-ASCII
|
831
|
+
string: ''
|
832
|
+
headers:
|
833
|
+
User-Agent:
|
834
|
+
- Jeff/1.0.1 (Language=Ruby; Hakans-MacBook-Pro.local)
|
835
|
+
response:
|
836
|
+
status:
|
837
|
+
code: 200
|
838
|
+
message:
|
839
|
+
headers:
|
840
|
+
Date:
|
841
|
+
- Tue, 08 Apr 2014 13:47:37 GMT
|
842
|
+
Server:
|
843
|
+
- AmazonMWS
|
844
|
+
x-amzn-ActionTrace:
|
845
|
+
- amzn1.tr.5880ca92-bf24-11e3-848b-0a59a9d60000.0..XpwKrF
|
846
|
+
x-mws-request-id:
|
847
|
+
- 9d3cf01a-a684-48df-b4f3-06087c0e7f9f
|
848
|
+
x-mws-timestamp:
|
849
|
+
- '2014-04-08T13:47:37.543Z'
|
850
|
+
x-mws-response-context:
|
851
|
+
- 0VNEY69wKmct/TFCy7Sguim5GRc9hkHxAJG6VUu1crWvJOq4E73Q1UvwY1pyKfTg+E3fmezTnQPJ
|
852
|
+
2U7OpfMNhQ==
|
853
|
+
Content-Type:
|
854
|
+
- text/xml
|
855
|
+
Content-Length:
|
856
|
+
- '937'
|
857
|
+
Vary:
|
858
|
+
- User-Agent
|
859
|
+
body:
|
860
|
+
encoding: UTF-8
|
861
|
+
string: |
|
862
|
+
<ListRegisteredDestinationsResponse xmlns="http://mws.amazonservices.com/schema/Subscriptions/2013-07-01">
|
863
|
+
<ListRegisteredDestinationsResult>
|
864
|
+
<DestinationList>
|
865
|
+
<member>
|
866
|
+
<DeliveryChannel>SQS</DeliveryChannel>
|
867
|
+
<AttributeList>
|
868
|
+
<member>
|
869
|
+
<Value>https://sqs.us-east-1.amazonaws.com/337281144291/bezos</Value>
|
870
|
+
<Key>sqsQueueUrl</Key>
|
871
|
+
</member>
|
872
|
+
</AttributeList>
|
873
|
+
</member>
|
874
|
+
<member>
|
875
|
+
<DeliveryChannel>SQS</DeliveryChannel>
|
876
|
+
<AttributeList>
|
877
|
+
<member>
|
878
|
+
<Value>https://sqs.us-east-1.amazonaws.com/337281144291/Test</Value>
|
879
|
+
<Key>sqsQueueUrl</Key>
|
880
|
+
</member>
|
881
|
+
</AttributeList>
|
882
|
+
</member>
|
883
|
+
</DestinationList>
|
884
|
+
</ListRegisteredDestinationsResult>
|
885
|
+
<ResponseMetadata>
|
886
|
+
<RequestId>9d3cf01a-a684-48df-b4f3-06087c0e7f9f</RequestId>
|
887
|
+
</ResponseMetadata>
|
888
|
+
</ListRegisteredDestinationsResponse>
|
889
|
+
http_version:
|
890
|
+
recorded_at: Tue, 08 Apr 2014 13:47:38 GMT
|
891
|
+
- request:
|
892
|
+
method: post
|
893
|
+
uri: https://mws.amazonservices.com/Subscriptions/2013-07-01?AWSAccessKeyId=AKIAJ767ZET2BZR4UDDQ&Action=ListSubscriptions&MarketplaceId=ATVPDKIKX0DER&SellerId=A2H6NH4SQYFZ4M&SignatureMethod=HmacSHA256&SignatureVersion=2&Timestamp=2014-04-08T13%3A49%3A10Z&Signature=cMpy5jo0HOPxhFs29iDCw2f0ps5tpSLsVjtwgpP8GTU%3D
|
894
|
+
body:
|
895
|
+
encoding: US-ASCII
|
896
|
+
string: ''
|
897
|
+
headers:
|
898
|
+
User-Agent:
|
899
|
+
- Jeff/1.0.1 (Language=Ruby; Hakans-MacBook-Pro.local)
|
900
|
+
response:
|
901
|
+
status:
|
902
|
+
code: 200
|
903
|
+
message:
|
904
|
+
headers:
|
905
|
+
Date:
|
906
|
+
- Tue, 08 Apr 2014 13:49:09 GMT
|
907
|
+
Server:
|
908
|
+
- AmazonMWS
|
909
|
+
x-amzn-ActionTrace:
|
910
|
+
- amzn1.tr.8fe3b685-bf24-11e3-8a6c-0a5a6ef40000.0..Zr8IN3
|
911
|
+
x-mws-request-id:
|
912
|
+
- 45aab410-ae80-41d2-b987-59693c10443c
|
913
|
+
x-mws-timestamp:
|
914
|
+
- '2014-04-08T13:49:10.459Z'
|
915
|
+
x-mws-response-context:
|
916
|
+
- FboBGZ2OESH2bTlQ03Fc+5mIzoWfdT49gyyhBF0/Lpct2We6YFAb/NB85TkdMs2pK26FaetpCXc=
|
917
|
+
Content-Type:
|
918
|
+
- text/xml
|
919
|
+
Content-Length:
|
920
|
+
- '777'
|
921
|
+
Vary:
|
922
|
+
- User-Agent
|
923
|
+
body:
|
924
|
+
encoding: UTF-8
|
925
|
+
string: |
|
926
|
+
<ListSubscriptionsResponse xmlns="http://mws.amazonservices.com/schema/Subscriptions/2013-07-01">
|
927
|
+
<ListSubscriptionsResult>
|
928
|
+
<SubscriptionList>
|
929
|
+
<member>
|
930
|
+
<NotificationType>AnyOfferChanged</NotificationType>
|
931
|
+
<IsEnabled>true</IsEnabled>
|
932
|
+
<Destination>
|
933
|
+
<DeliveryChannel>SQS</DeliveryChannel>
|
934
|
+
<AttributeList>
|
935
|
+
<member>
|
936
|
+
<Value>https://sqs.us-east-1.amazonaws.com/337281144291/bezos</Value>
|
937
|
+
<Key>sqsQueueUrl</Key>
|
938
|
+
</member>
|
939
|
+
</AttributeList>
|
940
|
+
</Destination>
|
941
|
+
</member>
|
942
|
+
</SubscriptionList>
|
943
|
+
</ListSubscriptionsResult>
|
944
|
+
<ResponseMetadata>
|
945
|
+
<RequestId>45aab410-ae80-41d2-b987-59693c10443c</RequestId>
|
946
|
+
</ResponseMetadata>
|
947
|
+
</ListSubscriptionsResponse>
|
948
|
+
http_version:
|
949
|
+
recorded_at: Tue, 08 Apr 2014 13:49:10 GMT
|
950
|
+
- request:
|
951
|
+
method: post
|
952
|
+
uri: https://mws.amazonservices.jp/Subscriptions/2013-07-01?AWSAccessKeyId=AKIAJ5RDDSRROM6GXQ5Q&Action=ListSubscriptions&MarketplaceId=A1VC38T7YXB528&SellerId=A7BU5WGNVGQ1I&SignatureMethod=HmacSHA256&SignatureVersion=2&Timestamp=2014-04-08T13%3A49%3A10Z&Signature=500nxIfhz3QABxt8zt9HG%2FvKmlZ0kNsvFUgqPr%2B3nLg%3D
|
953
|
+
body:
|
954
|
+
encoding: US-ASCII
|
955
|
+
string: ''
|
956
|
+
headers:
|
957
|
+
User-Agent:
|
958
|
+
- Jeff/1.0.1 (Language=Ruby; Hakans-MacBook-Pro.local)
|
959
|
+
response:
|
960
|
+
status:
|
961
|
+
code: 200
|
962
|
+
message:
|
963
|
+
headers:
|
964
|
+
Date:
|
965
|
+
- Tue, 08 Apr 2014 13:49:11 GMT
|
966
|
+
Server:
|
967
|
+
- AmazonMWS
|
968
|
+
x-amzn-ActionTrace:
|
969
|
+
- amzn1.tr.906e6b23-bf24-11e3-8a2a-0ae921390000.0..vgTB5t
|
970
|
+
x-mws-request-id:
|
971
|
+
- 6b1c52ed-c3d1-4024-89ca-bcc64cff6af5
|
972
|
+
x-mws-timestamp:
|
973
|
+
- '2014-04-08T13:49:11.361Z'
|
974
|
+
x-mws-response-context:
|
975
|
+
- "+L4bZl7vnJqAhyOCxl5CH64AY4/XXVNok12MwBQYumwoW1oZuKW0t9q5wk4pgtg6r3dBtP6nbXTA
|
976
|
+
IdDz3WdhpA=="
|
977
|
+
Content-Type:
|
978
|
+
- text/xml
|
979
|
+
Content-Length:
|
980
|
+
- '777'
|
981
|
+
Vary:
|
982
|
+
- User-Agent
|
983
|
+
body:
|
984
|
+
encoding: UTF-8
|
985
|
+
string: |
|
986
|
+
<ListSubscriptionsResponse xmlns="http://mws.amazonservices.com/schema/Subscriptions/2013-07-01">
|
987
|
+
<ListSubscriptionsResult>
|
988
|
+
<SubscriptionList>
|
989
|
+
<member>
|
990
|
+
<NotificationType>AnyOfferChanged</NotificationType>
|
991
|
+
<IsEnabled>true</IsEnabled>
|
992
|
+
<Destination>
|
993
|
+
<DeliveryChannel>SQS</DeliveryChannel>
|
994
|
+
<AttributeList>
|
995
|
+
<member>
|
996
|
+
<Value>https://sqs.us-east-1.amazonaws.com/337281144291/bezos</Value>
|
997
|
+
<Key>sqsQueueUrl</Key>
|
998
|
+
</member>
|
999
|
+
</AttributeList>
|
1000
|
+
</Destination>
|
1001
|
+
</member>
|
1002
|
+
</SubscriptionList>
|
1003
|
+
</ListSubscriptionsResult>
|
1004
|
+
<ResponseMetadata>
|
1005
|
+
<RequestId>6b1c52ed-c3d1-4024-89ca-bcc64cff6af5</RequestId>
|
1006
|
+
</ResponseMetadata>
|
1007
|
+
</ListSubscriptionsResponse>
|
1008
|
+
http_version:
|
1009
|
+
recorded_at: Tue, 08 Apr 2014 13:49:11 GMT
|
1010
|
+
- request:
|
1011
|
+
method: post
|
1012
|
+
uri: https://mws-eu.amazonservices.com/Subscriptions/2013-07-01?AWSAccessKeyId=AKIAI4ZNSD76DH7UBRDA&Action=ListSubscriptions&MarketplaceId=A13V1IB3VIYZZH&SellerId=A2DP6GIDYN6OTH&SignatureMethod=HmacSHA256&SignatureVersion=2&Timestamp=2014-04-08T13%3A49%3A11Z&Signature=MdhKNhiRc7jEK7ESlxv9G18%2BKCekTnLYb03LNKvCN40%3D
|
1013
|
+
body:
|
1014
|
+
encoding: US-ASCII
|
1015
|
+
string: ''
|
1016
|
+
headers:
|
1017
|
+
User-Agent:
|
1018
|
+
- Jeff/1.0.1 (Language=Ruby; Hakans-MacBook-Pro.local)
|
1019
|
+
response:
|
1020
|
+
status:
|
1021
|
+
code: 200
|
1022
|
+
message:
|
1023
|
+
headers:
|
1024
|
+
Date:
|
1025
|
+
- Tue, 08 Apr 2014 13:49:11 GMT
|
1026
|
+
Server:
|
1027
|
+
- AmazonMWS
|
1028
|
+
x-amzn-ActionTrace:
|
1029
|
+
- amzn1.tr.90ab25d0-bf24-11e3-ba1e-0a50493d0000.0..cl8jof
|
1030
|
+
x-mws-request-id:
|
1031
|
+
- 093f55f6-70aa-4de3-9f08-4b670933baaf
|
1032
|
+
x-mws-timestamp:
|
1033
|
+
- '2014-04-08T13:49:11.758Z'
|
1034
|
+
x-mws-response-context:
|
1035
|
+
- XS+wel0+GzrFgl/S3IlKT57UTqgwphNFsptFucD4pKrBk9d6gsZOBBbYDS1jH6kiZFtmEwS/wkIt
|
1036
|
+
3gRr59SNFg==
|
1037
|
+
Content-Type:
|
1038
|
+
- text/xml
|
1039
|
+
Content-Length:
|
1040
|
+
- '777'
|
1041
|
+
Vary:
|
1042
|
+
- User-Agent
|
1043
|
+
body:
|
1044
|
+
encoding: UTF-8
|
1045
|
+
string: |
|
1046
|
+
<ListSubscriptionsResponse xmlns="http://mws.amazonservices.com/schema/Subscriptions/2013-07-01">
|
1047
|
+
<ListSubscriptionsResult>
|
1048
|
+
<SubscriptionList>
|
1049
|
+
<member>
|
1050
|
+
<NotificationType>AnyOfferChanged</NotificationType>
|
1051
|
+
<IsEnabled>true</IsEnabled>
|
1052
|
+
<Destination>
|
1053
|
+
<DeliveryChannel>SQS</DeliveryChannel>
|
1054
|
+
<AttributeList>
|
1055
|
+
<member>
|
1056
|
+
<Value>https://sqs.us-east-1.amazonaws.com/337281144291/bezos</Value>
|
1057
|
+
<Key>sqsQueueUrl</Key>
|
1058
|
+
</member>
|
1059
|
+
</AttributeList>
|
1060
|
+
</Destination>
|
1061
|
+
</member>
|
1062
|
+
</SubscriptionList>
|
1063
|
+
</ListSubscriptionsResult>
|
1064
|
+
<ResponseMetadata>
|
1065
|
+
<RequestId>093f55f6-70aa-4de3-9f08-4b670933baaf</RequestId>
|
1066
|
+
</ResponseMetadata>
|
1067
|
+
</ListSubscriptionsResponse>
|
1068
|
+
http_version:
|
1069
|
+
recorded_at: Tue, 08 Apr 2014 13:49:12 GMT
|
1070
|
+
- request:
|
1071
|
+
method: post
|
1072
|
+
uri: https://mws-eu.amazonservices.com/Subscriptions/2013-07-01?AWSAccessKeyId=AKIAJJDQ2MJTMPXKJE4A&Action=ListSubscriptions&MarketplaceId=A1F83G8C2ARO7P&SellerId=A2D9DZ30GEWP6N&SignatureMethod=HmacSHA256&SignatureVersion=2&Timestamp=2014-04-08T13%3A49%3A12Z&Signature=Qt07Cpt%2BLesgk2jBk%2FBA%2FiFs3rOR1a1VjLhxv5XO%2BM4%3D
|
1073
|
+
body:
|
1074
|
+
encoding: US-ASCII
|
1075
|
+
string: ''
|
1076
|
+
headers:
|
1077
|
+
User-Agent:
|
1078
|
+
- Jeff/1.0.1 (Language=Ruby; Hakans-MacBook-Pro.local)
|
1079
|
+
response:
|
1080
|
+
status:
|
1081
|
+
code: 200
|
1082
|
+
message:
|
1083
|
+
headers:
|
1084
|
+
Date:
|
1085
|
+
- Tue, 08 Apr 2014 13:49:12 GMT
|
1086
|
+
Server:
|
1087
|
+
- AmazonMWS
|
1088
|
+
x-amzn-ActionTrace:
|
1089
|
+
- amzn1.tr.90d828a1-bf24-11e3-b534-0a50e1720000.0..gf9d7v
|
1090
|
+
x-mws-request-id:
|
1091
|
+
- d0e4b9d4-5719-45f0-8f29-05ce76e76563
|
1092
|
+
x-mws-timestamp:
|
1093
|
+
- '2014-04-08T13:49:12.064Z'
|
1094
|
+
x-mws-response-context:
|
1095
|
+
- unlGk1vmA2U0vJG2vSlOqeyCTuEaUM72M3zo4lAMMgdXp4+r//cfIOfO4AjNVTw0P4fxYVqHGMEa
|
1096
|
+
0mBOsVsnww==
|
1097
|
+
Content-Type:
|
1098
|
+
- text/xml
|
1099
|
+
Content-Length:
|
1100
|
+
- '777'
|
1101
|
+
Vary:
|
1102
|
+
- User-Agent
|
1103
|
+
body:
|
1104
|
+
encoding: UTF-8
|
1105
|
+
string: |
|
1106
|
+
<ListSubscriptionsResponse xmlns="http://mws.amazonservices.com/schema/Subscriptions/2013-07-01">
|
1107
|
+
<ListSubscriptionsResult>
|
1108
|
+
<SubscriptionList>
|
1109
|
+
<member>
|
1110
|
+
<NotificationType>AnyOfferChanged</NotificationType>
|
1111
|
+
<IsEnabled>true</IsEnabled>
|
1112
|
+
<Destination>
|
1113
|
+
<DeliveryChannel>SQS</DeliveryChannel>
|
1114
|
+
<AttributeList>
|
1115
|
+
<member>
|
1116
|
+
<Value>https://sqs.us-east-1.amazonaws.com/337281144291/bezos</Value>
|
1117
|
+
<Key>sqsQueueUrl</Key>
|
1118
|
+
</member>
|
1119
|
+
</AttributeList>
|
1120
|
+
</Destination>
|
1121
|
+
</member>
|
1122
|
+
</SubscriptionList>
|
1123
|
+
</ListSubscriptionsResult>
|
1124
|
+
<ResponseMetadata>
|
1125
|
+
<RequestId>d0e4b9d4-5719-45f0-8f29-05ce76e76563</RequestId>
|
1126
|
+
</ResponseMetadata>
|
1127
|
+
</ListSubscriptionsResponse>
|
1128
|
+
http_version:
|
1129
|
+
recorded_at: Tue, 08 Apr 2014 13:49:12 GMT
|
1130
|
+
- request:
|
1131
|
+
method: post
|
1132
|
+
uri: https://mws-eu.amazonservices.com/Subscriptions/2013-07-01?AWSAccessKeyId=AKIAJLUHOXLR5S2L6A6A&Action=ListSubscriptions&MarketplaceId=APJ6JRA9NG5V4&SellerId=A2APQUVDBVWV7E&SignatureMethod=HmacSHA256&SignatureVersion=2&Timestamp=2014-04-08T13%3A49%3A12Z&Signature=XL7Mu3r6qtCVjXQ876JtvheTbT4gtU5xbE0sKH3Ux1U%3D
|
1133
|
+
body:
|
1134
|
+
encoding: US-ASCII
|
1135
|
+
string: ''
|
1136
|
+
headers:
|
1137
|
+
User-Agent:
|
1138
|
+
- Jeff/1.0.1 (Language=Ruby; Hakans-MacBook-Pro.local)
|
1139
|
+
response:
|
1140
|
+
status:
|
1141
|
+
code: 200
|
1142
|
+
message:
|
1143
|
+
headers:
|
1144
|
+
Date:
|
1145
|
+
- Tue, 08 Apr 2014 13:49:12 GMT
|
1146
|
+
Server:
|
1147
|
+
- AmazonMWS
|
1148
|
+
x-amzn-ActionTrace:
|
1149
|
+
- amzn1.tr.90fec372-bf24-11e3-b534-0a50e1720000.0..6EjG!k
|
1150
|
+
x-mws-request-id:
|
1151
|
+
- 1c7f1068-0a49-40d3-a997-f09fcc860bff
|
1152
|
+
x-mws-timestamp:
|
1153
|
+
- '2014-04-08T13:49:12.335Z'
|
1154
|
+
x-mws-response-context:
|
1155
|
+
- UdJ4+ighsK7yHRhrRf7iBUERpIHclNn+ARFlI9ek7fKmFsS8hN17f1uP+C4a7Fv0IxQ/Zxk5bf15
|
1156
|
+
gF7fOxnXMQ==
|
1157
|
+
Content-Type:
|
1158
|
+
- text/xml
|
1159
|
+
Content-Length:
|
1160
|
+
- '777'
|
1161
|
+
Vary:
|
1162
|
+
- User-Agent
|
1163
|
+
body:
|
1164
|
+
encoding: UTF-8
|
1165
|
+
string: |
|
1166
|
+
<ListSubscriptionsResponse xmlns="http://mws.amazonservices.com/schema/Subscriptions/2013-07-01">
|
1167
|
+
<ListSubscriptionsResult>
|
1168
|
+
<SubscriptionList>
|
1169
|
+
<member>
|
1170
|
+
<NotificationType>AnyOfferChanged</NotificationType>
|
1171
|
+
<IsEnabled>true</IsEnabled>
|
1172
|
+
<Destination>
|
1173
|
+
<DeliveryChannel>SQS</DeliveryChannel>
|
1174
|
+
<AttributeList>
|
1175
|
+
<member>
|
1176
|
+
<Value>https://sqs.us-east-1.amazonaws.com/337281144291/bezos</Value>
|
1177
|
+
<Key>sqsQueueUrl</Key>
|
1178
|
+
</member>
|
1179
|
+
</AttributeList>
|
1180
|
+
</Destination>
|
1181
|
+
</member>
|
1182
|
+
</SubscriptionList>
|
1183
|
+
</ListSubscriptionsResult>
|
1184
|
+
<ResponseMetadata>
|
1185
|
+
<RequestId>1c7f1068-0a49-40d3-a997-f09fcc860bff</RequestId>
|
1186
|
+
</ResponseMetadata>
|
1187
|
+
</ListSubscriptionsResponse>
|
1188
|
+
http_version:
|
1189
|
+
recorded_at: Tue, 08 Apr 2014 13:49:12 GMT
|
1190
|
+
- request:
|
1191
|
+
method: post
|
1192
|
+
uri: https://mws-eu.amazonservices.com/Subscriptions/2013-07-01?AWSAccessKeyId=AKIAIORT7554FEBW7UBQ&Action=ListSubscriptions&MarketplaceId=A1PA6795UKMFR9&SellerId=A7ZXDJZD3UIRG&SignatureMethod=HmacSHA256&SignatureVersion=2&Timestamp=2014-04-08T13%3A49%3A12Z&Signature=dCWUz7gBP84x%2FS9R6aZO7EcUm2h%2BpH9cMWRUu1Dz9Ik%3D
|
1193
|
+
body:
|
1194
|
+
encoding: US-ASCII
|
1195
|
+
string: ''
|
1196
|
+
headers:
|
1197
|
+
User-Agent:
|
1198
|
+
- Jeff/1.0.1 (Language=Ruby; Hakans-MacBook-Pro.local)
|
1199
|
+
response:
|
1200
|
+
status:
|
1201
|
+
code: 200
|
1202
|
+
message:
|
1203
|
+
headers:
|
1204
|
+
Date:
|
1205
|
+
- Tue, 08 Apr 2014 13:49:12 GMT
|
1206
|
+
Server:
|
1207
|
+
- AmazonMWS
|
1208
|
+
x-amzn-ActionTrace:
|
1209
|
+
- amzn1.tr.9123b093-bf24-11e3-b534-0a50e1720000.0..pL=kvi
|
1210
|
+
x-mws-request-id:
|
1211
|
+
- e7c5e1d8-885a-4668-a0ff-f24660277147
|
1212
|
+
x-mws-timestamp:
|
1213
|
+
- '2014-04-08T13:49:12.594Z'
|
1214
|
+
x-mws-response-context:
|
1215
|
+
- 4lHl2gLGI+VqJ7ek6u9wXwxQgr598OIZHIR54xMnUxmO5sEWhO+gim7n5xHt154grdYbhW3hdsWN
|
1216
|
+
h8MQB6x0BQ==
|
1217
|
+
Content-Type:
|
1218
|
+
- text/xml
|
1219
|
+
Content-Length:
|
1220
|
+
- '777'
|
1221
|
+
Vary:
|
1222
|
+
- User-Agent
|
1223
|
+
body:
|
1224
|
+
encoding: UTF-8
|
1225
|
+
string: |
|
1226
|
+
<ListSubscriptionsResponse xmlns="http://mws.amazonservices.com/schema/Subscriptions/2013-07-01">
|
1227
|
+
<ListSubscriptionsResult>
|
1228
|
+
<SubscriptionList>
|
1229
|
+
<member>
|
1230
|
+
<NotificationType>AnyOfferChanged</NotificationType>
|
1231
|
+
<IsEnabled>true</IsEnabled>
|
1232
|
+
<Destination>
|
1233
|
+
<DeliveryChannel>SQS</DeliveryChannel>
|
1234
|
+
<AttributeList>
|
1235
|
+
<member>
|
1236
|
+
<Value>https://sqs.us-east-1.amazonaws.com/337281144291/bezos</Value>
|
1237
|
+
<Key>sqsQueueUrl</Key>
|
1238
|
+
</member>
|
1239
|
+
</AttributeList>
|
1240
|
+
</Destination>
|
1241
|
+
</member>
|
1242
|
+
</SubscriptionList>
|
1243
|
+
</ListSubscriptionsResult>
|
1244
|
+
<ResponseMetadata>
|
1245
|
+
<RequestId>e7c5e1d8-885a-4668-a0ff-f24660277147</RequestId>
|
1246
|
+
</ResponseMetadata>
|
1247
|
+
</ListSubscriptionsResponse>
|
1248
|
+
http_version:
|
1249
|
+
recorded_at: Tue, 08 Apr 2014 13:49:13 GMT
|
1250
|
+
- request:
|
1251
|
+
method: post
|
1252
|
+
uri: https://mws.amazonservices.ca/Subscriptions/2013-07-01?AWSAccessKeyId=AKIAITHQMZUJROSOP27Q&Action=ListSubscriptions&MarketplaceId=A2EUQ1WTGCTBG2&SellerId=A2A7WNXBU01UJW&SignatureMethod=HmacSHA256&SignatureVersion=2&Timestamp=2014-04-08T13%3A49%3A13Z&Signature=ADQ5ODxU5AMvauGghEmG1SzIhamSKnZPtu0rFDk3ORs%3D
|
1253
|
+
body:
|
1254
|
+
encoding: US-ASCII
|
1255
|
+
string: ''
|
1256
|
+
headers:
|
1257
|
+
User-Agent:
|
1258
|
+
- Jeff/1.0.1 (Language=Ruby; Hakans-MacBook-Pro.local)
|
1259
|
+
response:
|
1260
|
+
status:
|
1261
|
+
code: 200
|
1262
|
+
message:
|
1263
|
+
headers:
|
1264
|
+
Date:
|
1265
|
+
- Tue, 08 Apr 2014 13:49:12 GMT
|
1266
|
+
Server:
|
1267
|
+
- AmazonMWS
|
1268
|
+
x-amzn-ActionTrace:
|
1269
|
+
- amzn1.tr.9170e695-bf24-11e3-b61e-0a589b4b0000.0..ah#Vdk
|
1270
|
+
x-mws-request-id:
|
1271
|
+
- 13eff078-bed3-4f8d-861a-e404af6a3a53
|
1272
|
+
x-mws-timestamp:
|
1273
|
+
- '2014-04-08T13:49:13.071Z'
|
1274
|
+
x-mws-response-context:
|
1275
|
+
- ZT17tzJ3X+TlNkZpsINoXtZkBhNpyJFSdxBEigIYK8dEI3rpPWB8u1ap7kCzsaVQOWvj8dyOVak=
|
1276
|
+
Content-Type:
|
1277
|
+
- text/xml
|
1278
|
+
Content-Length:
|
1279
|
+
- '777'
|
1280
|
+
Vary:
|
1281
|
+
- User-Agent
|
1282
|
+
body:
|
1283
|
+
encoding: UTF-8
|
1284
|
+
string: |
|
1285
|
+
<ListSubscriptionsResponse xmlns="http://mws.amazonservices.com/schema/Subscriptions/2013-07-01">
|
1286
|
+
<ListSubscriptionsResult>
|
1287
|
+
<SubscriptionList>
|
1288
|
+
<member>
|
1289
|
+
<NotificationType>AnyOfferChanged</NotificationType>
|
1290
|
+
<IsEnabled>true</IsEnabled>
|
1291
|
+
<Destination>
|
1292
|
+
<DeliveryChannel>SQS</DeliveryChannel>
|
1293
|
+
<AttributeList>
|
1294
|
+
<member>
|
1295
|
+
<Value>https://sqs.us-east-1.amazonaws.com/337281144291/bezos</Value>
|
1296
|
+
<Key>sqsQueueUrl</Key>
|
1297
|
+
</member>
|
1298
|
+
</AttributeList>
|
1299
|
+
</Destination>
|
1300
|
+
</member>
|
1301
|
+
</SubscriptionList>
|
1302
|
+
</ListSubscriptionsResult>
|
1303
|
+
<ResponseMetadata>
|
1304
|
+
<RequestId>13eff078-bed3-4f8d-861a-e404af6a3a53</RequestId>
|
1305
|
+
</ResponseMetadata>
|
1306
|
+
</ListSubscriptionsResponse>
|
1307
|
+
http_version:
|
1308
|
+
recorded_at: Tue, 08 Apr 2014 13:49:13 GMT
|
1309
|
+
- request:
|
1310
|
+
method: post
|
1311
|
+
uri: https://mws-eu.amazonservices.com/Subscriptions/2013-07-01?AWSAccessKeyId=AKIAI6X4QZRXSHGHABJA&Action=ListSubscriptions&MarketplaceId=A1RKKUPIHCS9HS&SellerId=A2NEU7G6RGUKF&SignatureMethod=HmacSHA256&SignatureVersion=2&Timestamp=2014-04-08T13%3A49%3A13Z&Signature=lsyCyIXAIzit0Ly%2F%2FDNTfCLe5kj1dHJpyCgQjYZIPe0%3D
|
1312
|
+
body:
|
1313
|
+
encoding: US-ASCII
|
1314
|
+
string: ''
|
1315
|
+
headers:
|
1316
|
+
User-Agent:
|
1317
|
+
- Jeff/1.0.1 (Language=Ruby; Hakans-MacBook-Pro.local)
|
1318
|
+
response:
|
1319
|
+
status:
|
1320
|
+
code: 200
|
1321
|
+
message:
|
1322
|
+
headers:
|
1323
|
+
Date:
|
1324
|
+
- Tue, 08 Apr 2014 13:49:13 GMT
|
1325
|
+
Server:
|
1326
|
+
- AmazonMWS
|
1327
|
+
x-amzn-ActionTrace:
|
1328
|
+
- amzn1.tr.919dc294-bf24-11e3-b534-0a50e1720000.0..Y4#esn
|
1329
|
+
x-mws-request-id:
|
1330
|
+
- 0fc20460-6cfb-42b6-9d61-dee5d81fedee
|
1331
|
+
x-mws-timestamp:
|
1332
|
+
- '2014-04-08T13:49:13.389Z'
|
1333
|
+
x-mws-response-context:
|
1334
|
+
- RBM031930tCuLdc9pupnFh9URhr320S5ab2KPKOH7/hcLDA0WYX1HHYy6JWzdVbtSnN0UcI+HRAe
|
1335
|
+
XhRWXFs71Q==
|
1336
|
+
Content-Type:
|
1337
|
+
- text/xml
|
1338
|
+
Content-Length:
|
1339
|
+
- '777'
|
1340
|
+
Vary:
|
1341
|
+
- User-Agent
|
1342
|
+
body:
|
1343
|
+
encoding: UTF-8
|
1344
|
+
string: |
|
1345
|
+
<ListSubscriptionsResponse xmlns="http://mws.amazonservices.com/schema/Subscriptions/2013-07-01">
|
1346
|
+
<ListSubscriptionsResult>
|
1347
|
+
<SubscriptionList>
|
1348
|
+
<member>
|
1349
|
+
<NotificationType>AnyOfferChanged</NotificationType>
|
1350
|
+
<IsEnabled>true</IsEnabled>
|
1351
|
+
<Destination>
|
1352
|
+
<DeliveryChannel>SQS</DeliveryChannel>
|
1353
|
+
<AttributeList>
|
1354
|
+
<member>
|
1355
|
+
<Value>https://sqs.us-east-1.amazonaws.com/337281144291/bezos</Value>
|
1356
|
+
<Key>sqsQueueUrl</Key>
|
1357
|
+
</member>
|
1358
|
+
</AttributeList>
|
1359
|
+
</Destination>
|
1360
|
+
</member>
|
1361
|
+
</SubscriptionList>
|
1362
|
+
</ListSubscriptionsResult>
|
1363
|
+
<ResponseMetadata>
|
1364
|
+
<RequestId>0fc20460-6cfb-42b6-9d61-dee5d81fedee</RequestId>
|
1365
|
+
</ResponseMetadata>
|
1366
|
+
</ListSubscriptionsResponse>
|
1367
|
+
http_version:
|
1368
|
+
recorded_at: Tue, 08 Apr 2014 13:49:13 GMT
|
1369
|
+
recorded_with: VCR 2.9.0
|