Skip to content

Commit d2f55ed

Browse files
qbereaurupurt
authored andcommitted
adding querying_order
1 parent 5342ccf commit d2f55ed

26 files changed

+411
-209
lines changed

.gitignore

+6
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,9 @@ erl_crash.dump
2121

2222
# Ignore package tarball (built via "mix hex.build").
2323
binance-*.tar
24+
25+
.envrc
26+
27+
# System Files
28+
.DS_Store
29+
Thumbs.db

.tool-versions

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
erlang 24.0.2
2+
elixir master-otp-24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
[
2+
{
3+
"request": {
4+
"body": "new_client_order_id=&price=0.01&quantity=0.1&quote_order_qty=&recvWindow=5000&recv_window=&side=BUY&signature=***&stop_price=&symbol=LTCBTC&time_in_force=GTC&timestamp=1622883607164&type=LIMIT",
5+
"headers": {
6+
"X-MBX-APIKEY": "***"
7+
},
8+
"method": "post",
9+
"options": [],
10+
"request_body": "",
11+
"url": "https://testnet.binance.vision/api/v3/order"
12+
},
13+
"response": {
14+
"binary": false,
15+
"body": "{\"code\":-1104,\"msg\":\"Not all sent parameters were read; read '8' parameter(s) but was sent '13'.\"}",
16+
"headers": {
17+
"Content-Type": "application/json;charset=UTF-8",
18+
"Content-Length": "98",
19+
"Connection": "keep-alive",
20+
"Date": "Sat, 05 Jun 2021 09:00:08 GMT",
21+
"Server": "nginx",
22+
"x-mbx-uuid": "36439ccd-17c4-4960-bbd3-d5fefb5c391a",
23+
"x-mbx-used-weight": "6",
24+
"x-mbx-used-weight-1m": "6",
25+
"Strict-Transport-Security": "max-age=31536000; includeSubdomains",
26+
"X-Frame-Options": "SAMEORIGIN",
27+
"X-Xss-Protection": "1; mode=block",
28+
"X-Content-Type-Options": "nosniff",
29+
"Content-Security-Policy": "default-src 'self'",
30+
"X-Content-Security-Policy": "default-src 'self'",
31+
"X-WebKit-CSP": "default-src 'self'",
32+
"Cache-Control": "no-cache, no-store, must-revalidate",
33+
"Pragma": "no-cache",
34+
"Expires": "0",
35+
"X-Cache": "Error from cloudfront",
36+
"Via": "1.1 b6a92d65d66a7dd6d685a94e79bd1aba.cloudfront.net (CloudFront)",
37+
"X-Amz-Cf-Pop": "LHR61-C2",
38+
"X-Amz-Cf-Id": "LS4DrwUjfPQmUoLMR2nJLkf3zbQgLHsVs1hfCGmFa3I7M0DKrnG9Aw=="
39+
},
40+
"status_code": 400,
41+
"type": "ok"
42+
}
43+
}
44+
]

fixture/vcr_cassettes/create_order_limit_buy_error_insufficient_balance.json

+11-7
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[
22
{
33
"request": {
4-
"body": "price=0.001&quantity=10000&recvWindow=1000&side=BUY&symbol=LTCBTC&timeInForce=FOK&timestamp=1528091845716&type=LIMIT&signature=***",
4+
"body": "new_client_order_id=&price=0.01&quantity=0.1&quote_order_qty=&recvWindow=5000&recv_window=&side=BUY&signature=***&stop_price=&symbol=LTCBTC&time_in_force=FOK&timestamp=1622883594865&type=LIMIT",
55
"headers": {
66
"X-MBX-APIKEY": "***"
77
},
@@ -12,13 +12,16 @@
1212
},
1313
"response": {
1414
"binary": false,
15-
"body": "{\"code\":-2010,\"msg\":\"Account has insufficient balance for requested action.\"}",
15+
"body": "{\"code\":-1104,\"msg\":\"Not all sent parameters were read; read '8' parameter(s) but was sent '13'.\"}",
1616
"headers": {
17-
"Content-Type": "application/json",
18-
"Transfer-Encoding": "chunked",
17+
"Content-Type": "application/json;charset=UTF-8",
18+
"Content-Length": "98",
1919
"Connection": "keep-alive",
20-
"Date": "Mon, 04 Jun 2018 05:57:25 GMT",
20+
"Date": "Sat, 05 Jun 2021 08:59:56 GMT",
2121
"Server": "nginx",
22+
"x-mbx-uuid": "36439ccd-17c4-4960-bbd3-d5fefb5c391a",
23+
"x-mbx-used-weight": "1",
24+
"x-mbx-used-weight-1m": "1",
2225
"Strict-Transport-Security": "max-age=31536000; includeSubdomains",
2326
"X-Frame-Options": "SAMEORIGIN",
2427
"X-Xss-Protection": "1; mode=block",
@@ -30,8 +33,9 @@
3033
"Pragma": "no-cache",
3134
"Expires": "0",
3235
"X-Cache": "Error from cloudfront",
33-
"Via": "1.1 a8a06e035420932f2808c2efee52f455.cloudfront.net (CloudFront)",
34-
"X-Amz-Cf-Id": "UF3P5hkV9dU_7OiQrz4RkgvAwZhaJy0AyTZDasjdwOyz0ax44Lhbdw=="
36+
"Via": "1.1 b6a92d65d66a7dd6d685a94e79bd1aba.cloudfront.net (CloudFront)",
37+
"X-Amz-Cf-Pop": "LHR61-C2",
38+
"X-Amz-Cf-Id": "IFjsyAGHm0VPisTF2jJOgwkfwqNXiQ-OVaw-N4iZKlD4ShpOyWc_cw=="
3539
},
3640
"status_code": 400,
3741
"type": "ok"

fixture/vcr_cassettes/create_order_limit_buy_fill_or_kill_success.json

+13-10
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[
22
{
33
"request": {
4-
"body": "price=0.01&quantity=0.1&recvWindow=1000&side=BUY&symbol=LTCBTC&timeInForce=FOK&timestamp=1527290557371&type=LIMIT&signature=***",
4+
"body": "new_client_order_id=&price=0.01&quantity=0.1&quote_order_qty=&recvWindow=5000&recv_window=&side=BUY&signature=***&stop_price=&symbol=LTCBTC&time_in_force=FOK&timestamp=1622883596924&type=LIMIT",
55
"headers": {
66
"X-MBX-APIKEY": "***"
77
},
@@ -12,14 +12,16 @@
1212
},
1313
"response": {
1414
"binary": false,
15-
"body": "{\"symbol\":\"LTCBTC\",\"orderId\":47527179,\"clientOrderId\":\"dY67P33S4IxPnJGx5EtuSf\",\"transactTime\":1527290557607,\"price\":\"0.01000000\",\"origQty\":\"0.10000000\",\"executedQty\":\"0.00000000\",\"status\":\"EXPIRED\",\"timeInForce\":\"FOK\",\"type\":\"LIMIT\",\"side\":\"BUY\"}",
15+
"body": "{\"code\":-1104,\"msg\":\"Not all sent parameters were read; read '8' parameter(s) but was sent '13'.\"}",
1616
"headers": {
17-
"Content-Type": "application/json",
18-
"Transfer-Encoding": "chunked",
17+
"Content-Type": "application/json;charset=UTF-8",
18+
"Content-Length": "98",
1919
"Connection": "keep-alive",
20-
"Date": "Fri, 25 May 2018 23:22:37 GMT",
20+
"Date": "Sat, 05 Jun 2021 08:59:57 GMT",
2121
"Server": "nginx",
22-
"Vary": "Accept-Encoding",
22+
"x-mbx-uuid": "36439ccd-17c4-4960-bbd3-d5fefb5c391a",
23+
"x-mbx-used-weight": "2",
24+
"x-mbx-used-weight-1m": "2",
2325
"Strict-Transport-Security": "max-age=31536000; includeSubdomains",
2426
"X-Frame-Options": "SAMEORIGIN",
2527
"X-Xss-Protection": "1; mode=block",
@@ -30,11 +32,12 @@
3032
"Cache-Control": "no-cache, no-store, must-revalidate",
3133
"Pragma": "no-cache",
3234
"Expires": "0",
33-
"X-Cache": "Miss from cloudfront",
34-
"Via": "1.1 aa42484f82c16d99015c599631def20c.cloudfront.net (CloudFront)",
35-
"X-Amz-Cf-Id": "EUJfEb7dmPCXVDExHIg_zyXCioBbrAvTnUO7W7oM0iXLb5u9RLfC4Q=="
35+
"X-Cache": "Error from cloudfront",
36+
"Via": "1.1 b6a92d65d66a7dd6d685a94e79bd1aba.cloudfront.net (CloudFront)",
37+
"X-Amz-Cf-Pop": "LHR61-C2",
38+
"X-Amz-Cf-Id": "Fv9BXVdbp_Z3jYp_-wCWqH7vhDX1NpEm_93kcE9FJPFn6ANy31KGbw=="
3639
},
37-
"status_code": 200,
40+
"status_code": 400,
3841
"type": "ok"
3942
}
4043
}

fixture/vcr_cassettes/create_order_limit_buy_good_til_cancel_success.json

+13-10
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[
22
{
33
"request": {
4-
"body": "price=0.01&quantity=0.1&recvWindow=1000&side=BUY&symbol=LTCBTC&timeInForce=GTC&timestamp=1527278150477&type=LIMIT&signature=***",
4+
"body": "new_client_order_id=&price=0.01&quantity=0.1&quote_order_qty=&recvWindow=5000&recv_window=&side=BUY&signature=***&stop_price=&symbol=LTCBTC&time_in_force=GTC&timestamp=1622883602545&type=LIMIT",
55
"headers": {
66
"X-MBX-APIKEY": "***"
77
},
@@ -12,14 +12,16 @@
1212
},
1313
"response": {
1414
"binary": false,
15-
"body": "{\"symbol\":\"LTCBTC\",\"orderId\":47511548,\"clientOrderId\":\"9kITBshSwrClye1HJcLM3j\",\"transactTime\":1527278150709,\"price\":\"0.01000000\",\"origQty\":\"0.10000000\",\"executedQty\":\"0.00000000\",\"status\":\"NEW\",\"timeInForce\":\"GTC\",\"type\":\"LIMIT\",\"side\":\"BUY\"}",
15+
"body": "{\"code\":-1104,\"msg\":\"Not all sent parameters were read; read '8' parameter(s) but was sent '13'.\"}",
1616
"headers": {
17-
"Content-Type": "application/json",
18-
"Transfer-Encoding": "chunked",
17+
"Content-Type": "application/json;charset=UTF-8",
18+
"Content-Length": "98",
1919
"Connection": "keep-alive",
20-
"Date": "Fri, 25 May 2018 19:55:50 GMT",
20+
"Date": "Sat, 05 Jun 2021 09:00:03 GMT",
2121
"Server": "nginx",
22-
"Vary": "Accept-Encoding",
22+
"x-mbx-uuid": "36439ccd-17c4-4960-bbd3-d5fefb5c391a",
23+
"x-mbx-used-weight": "3",
24+
"x-mbx-used-weight-1m": "3",
2325
"Strict-Transport-Security": "max-age=31536000; includeSubdomains",
2426
"X-Frame-Options": "SAMEORIGIN",
2527
"X-Xss-Protection": "1; mode=block",
@@ -30,11 +32,12 @@
3032
"Cache-Control": "no-cache, no-store, must-revalidate",
3133
"Pragma": "no-cache",
3234
"Expires": "0",
33-
"X-Cache": "Miss from cloudfront",
34-
"Via": "1.1 fa751ee53e2bf18781ae98b293ff9375.cloudfront.net (CloudFront)",
35-
"X-Amz-Cf-Id": "p97126wzA1nfPHDgDfldNjst8dMIpXG5AZZ4D681655efIyglPtHjQ=="
35+
"X-Cache": "Error from cloudfront",
36+
"Via": "1.1 b6a92d65d66a7dd6d685a94e79bd1aba.cloudfront.net (CloudFront)",
37+
"X-Amz-Cf-Pop": "LHR61-C2",
38+
"X-Amz-Cf-Id": "SeJAOZ1ePsJpmQJTQk3STz8gJEtOpe-IdJwtf9y-BBFwIzAiuYerSw=="
3639
},
37-
"status_code": 200,
40+
"status_code": 400,
3841
"type": "ok"
3942
}
4043
}

fixture/vcr_cassettes/create_order_limit_buy_immediate_or_cancel_success.json

+13-10
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[
22
{
33
"request": {
4-
"body": "price=0.01&quantity=0.1&recvWindow=1000&side=BUY&symbol=LTCBTC&timeInForce=IOC&timestamp=1527291300666&type=LIMIT&signature=***",
4+
"body": "new_client_order_id=&price=0.01&quantity=0.1&quote_order_qty=&recvWindow=5000&recv_window=&side=BUY&signature=***&stop_price=&symbol=LTCBTC&time_in_force=IOC&timestamp=1622883599737&type=LIMIT",
55
"headers": {
66
"X-MBX-APIKEY": "***"
77
},
@@ -12,14 +12,16 @@
1212
},
1313
"response": {
1414
"binary": false,
15-
"body": "{\"symbol\":\"LTCBTC\",\"orderId\":47528830,\"clientOrderId\":\"zyMyhtRENlvFHrl4CitDe0\",\"transactTime\":1527291300912,\"price\":\"0.01000000\",\"origQty\":\"0.10000000\",\"executedQty\":\"0.00000000\",\"status\":\"EXPIRED\",\"timeInForce\":\"IOC\",\"type\":\"LIMIT\",\"side\":\"BUY\"}",
15+
"body": "{\"code\":-1104,\"msg\":\"Not all sent parameters were read; read '8' parameter(s) but was sent '13'.\"}",
1616
"headers": {
17-
"Content-Type": "application/json",
18-
"Transfer-Encoding": "chunked",
17+
"Content-Type": "application/json;charset=UTF-8",
18+
"Content-Length": "98",
1919
"Connection": "keep-alive",
20-
"Date": "Fri, 25 May 2018 23:35:00 GMT",
20+
"Date": "Sat, 05 Jun 2021 09:00:00 GMT",
2121
"Server": "nginx",
22-
"Vary": "Accept-Encoding",
22+
"x-mbx-uuid": "36439ccd-17c4-4960-bbd3-d5fefb5c391a",
23+
"x-mbx-used-weight": "1",
24+
"x-mbx-used-weight-1m": "1",
2325
"Strict-Transport-Security": "max-age=31536000; includeSubdomains",
2426
"X-Frame-Options": "SAMEORIGIN",
2527
"X-Xss-Protection": "1; mode=block",
@@ -30,11 +32,12 @@
3032
"Cache-Control": "no-cache, no-store, must-revalidate",
3133
"Pragma": "no-cache",
3234
"Expires": "0",
33-
"X-Cache": "Miss from cloudfront",
34-
"Via": "1.1 fb1574d5a6ba2d77d2a656aba08aa3c3.cloudfront.net (CloudFront)",
35-
"X-Amz-Cf-Id": "7FpRejCpXjYssWLkFBBSqvrIlcQQUmXaFGh4q1eFUpiWvRc91Ipo2g=="
35+
"X-Cache": "Error from cloudfront",
36+
"Via": "1.1 b6a92d65d66a7dd6d685a94e79bd1aba.cloudfront.net (CloudFront)",
37+
"X-Amz-Cf-Pop": "LHR61-C2",
38+
"X-Amz-Cf-Id": "LRqLDDh9Vgk21Eg-sFvOP3dCzEPPnMWesTkS9l7a13ZBMoEVyDSfdg=="
3639
},
37-
"status_code": 200,
40+
"status_code": 400,
3841
"type": "ok"
3942
}
4043
}
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[
22
{
33
"request": {
4-
"body": "price=50000&quantity=0.001&recvWindow=1000&side=SELL&symbol=BTCUSDT&timeInForce=FOK&timestamp=1527290985049&type=LIMIT&signature=***",
4+
"body": "new_client_order_id=&price=0.01&quantity=0.1&quote_order_qty=&recvWindow=5000&recv_window=&side=SELL&signature=***&stop_price=&symbol=LTCBTC&time_in_force=FOK&timestamp=1622883605417&type=LIMIT",
55
"headers": {
66
"X-MBX-APIKEY": "***"
77
},
@@ -12,13 +12,16 @@
1212
},
1313
"response": {
1414
"binary": false,
15-
"body": "{\"code\":-2010,\"msg\":\"Account has insufficient balance for requested action.\"}",
15+
"body": "{\"code\":-1104,\"msg\":\"Not all sent parameters were read; read '8' parameter(s) but was sent '13'.\"}",
1616
"headers": {
17-
"Content-Type": "application/json",
18-
"Transfer-Encoding": "chunked",
17+
"Content-Type": "application/json;charset=UTF-8",
18+
"Content-Length": "98",
1919
"Connection": "keep-alive",
20-
"Date": "Mon, 04 Jun 2018 05:57:25 GMT",
20+
"Date": "Sat, 05 Jun 2021 09:00:06 GMT",
2121
"Server": "nginx",
22+
"x-mbx-uuid": "36439ccd-17c4-4960-bbd3-d5fefb5c391a",
23+
"x-mbx-used-weight": "5",
24+
"x-mbx-used-weight-1m": "5",
2225
"Strict-Transport-Security": "max-age=31536000; includeSubdomains",
2326
"X-Frame-Options": "SAMEORIGIN",
2427
"X-Xss-Protection": "1; mode=block",
@@ -30,11 +33,12 @@
3033
"Pragma": "no-cache",
3134
"Expires": "0",
3235
"X-Cache": "Error from cloudfront",
33-
"Via": "1.1 a8a06e035420932f2808c2efee52f455.cloudfront.net (CloudFront)",
34-
"X-Amz-Cf-Id": "UF3P5hkV9dU_7OiQrz4RkgvAwZhaJy0AyTZDasjdwOyz0ax44Lhbdw=="
36+
"Via": "1.1 b6a92d65d66a7dd6d685a94e79bd1aba.cloudfront.net (CloudFront)",
37+
"X-Amz-Cf-Pop": "LHR61-C2",
38+
"X-Amz-Cf-Id": "82LWR1kPLNYZ30MU92hT3PScMbLKxTTEmZ4cUry-urVXFcILJOZjLg=="
3539
},
3640
"status_code": 400,
3741
"type": "ok"
3842
}
3943
}
40-
]
44+
]

fixture/vcr_cassettes/create_order_limit_sell_fill_or_kill_success.json

+13-10
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[
22
{
33
"request": {
4-
"body": "price=50000&quantity=0.001&recvWindow=1000&side=SELL&symbol=BTCUSDT&timeInForce=FOK&timestamp=1527290985049&type=LIMIT&signature=***",
4+
"body": "new_client_order_id=&price=0.01&quantity=0.1&quote_order_qty=&recvWindow=5000&recv_window=&side=SELL&signature=***&stop_price=&symbol=LTCBTC&time_in_force=FOK&timestamp=1622883604302&type=LIMIT",
55
"headers": {
66
"X-MBX-APIKEY": "***"
77
},
@@ -12,14 +12,16 @@
1212
},
1313
"response": {
1414
"binary": false,
15-
"body": "{\"symbol\":\"BTCUSDT\",\"orderId\":108277184,\"clientOrderId\":\"lKYECwEPSTPzurwx6emuN2\",\"transactTime\":1527290985305,\"price\":\"50000.00000000\",\"origQty\":\"0.00100000\",\"executedQty\":\"0.00000000\",\"status\":\"EXPIRED\",\"timeInForce\":\"FOK\",\"type\":\"LIMIT\",\"side\":\"SELL\"}",
15+
"body": "{\"code\":-1104,\"msg\":\"Not all sent parameters were read; read '8' parameter(s) but was sent '13'.\"}",
1616
"headers": {
17-
"Content-Type": "application/json",
18-
"Transfer-Encoding": "chunked",
17+
"Content-Type": "application/json;charset=UTF-8",
18+
"Content-Length": "98",
1919
"Connection": "keep-alive",
20-
"Date": "Fri, 25 May 2018 23:29:45 GMT",
20+
"Date": "Sat, 05 Jun 2021 09:00:04 GMT",
2121
"Server": "nginx",
22-
"Vary": "Accept-Encoding",
22+
"x-mbx-uuid": "36439ccd-17c4-4960-bbd3-d5fefb5c391a",
23+
"x-mbx-used-weight": "4",
24+
"x-mbx-used-weight-1m": "4",
2325
"Strict-Transport-Security": "max-age=31536000; includeSubdomains",
2426
"X-Frame-Options": "SAMEORIGIN",
2527
"X-Xss-Protection": "1; mode=block",
@@ -30,11 +32,12 @@
3032
"Cache-Control": "no-cache, no-store, must-revalidate",
3133
"Pragma": "no-cache",
3234
"Expires": "0",
33-
"X-Cache": "Miss from cloudfront",
34-
"Via": "1.1 68807936c056006818525c5da31d108e.cloudfront.net (CloudFront)",
35-
"X-Amz-Cf-Id": "w3qEO4sfOGkq_SUsElVerpJPvffAYa-rxZGUfgpZhsoAXlQBqzJwTg=="
35+
"X-Cache": "Error from cloudfront",
36+
"Via": "1.1 b6a92d65d66a7dd6d685a94e79bd1aba.cloudfront.net (CloudFront)",
37+
"X-Amz-Cf-Pop": "LHR61-C2",
38+
"X-Amz-Cf-Id": "QbE7Uh7QWO0S8gt91MpajAzN5oWosfBgkFfdaREgk6Ihpu5lqA1YxQ=="
3639
},
37-
"status_code": 200,
40+
"status_code": 400,
3841
"type": "ok"
3942
}
4043
}

fixture/vcr_cassettes/create_order_limit_sell_good_til_cancel_success.json

+13-10
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[
22
{
33
"request": {
4-
"body": "price=50000&quantity=0.001&recvWindow=1000&side=SELL&symbol=BTCUSDT&timeInForce=GTC&timestamp=1527279796531&type=LIMIT&signature=***",
4+
"body": "new_client_order_id=&price=0.01&quantity=0.1&quote_order_qty=&recvWindow=5000&recv_window=&side=SELL&signature=***&stop_price=&symbol=LTCBTC&time_in_force=GTC&timestamp=1622883601473&type=LIMIT",
55
"headers": {
66
"X-MBX-APIKEY": "***"
77
},
@@ -12,14 +12,16 @@
1212
},
1313
"response": {
1414
"binary": false,
15-
"body": "{\"symbol\":\"BTCUSDT\",\"orderId\":108212133,\"clientOrderId\":\"9UFMPloZsQ3eshCx66PVqD\",\"transactTime\":1527279796770,\"price\":\"50000.00000000\",\"origQty\":\"0.00100000\",\"executedQty\":\"0.00000000\",\"status\":\"NEW\",\"timeInForce\":\"GTC\",\"type\":\"LIMIT\",\"side\":\"SELL\"}",
15+
"body": "{\"code\":-1104,\"msg\":\"Not all sent parameters were read; read '8' parameter(s) but was sent '13'.\"}",
1616
"headers": {
17-
"Content-Type": "application/json",
18-
"Transfer-Encoding": "chunked",
17+
"Content-Type": "application/json;charset=UTF-8",
18+
"Content-Length": "98",
1919
"Connection": "keep-alive",
20-
"Date": "Fri, 25 May 2018 20:23:16 GMT",
20+
"Date": "Sat, 05 Jun 2021 09:00:01 GMT",
2121
"Server": "nginx",
22-
"Vary": "Accept-Encoding",
22+
"x-mbx-uuid": "36439ccd-17c4-4960-bbd3-d5fefb5c391a",
23+
"x-mbx-used-weight": "2",
24+
"x-mbx-used-weight-1m": "2",
2325
"Strict-Transport-Security": "max-age=31536000; includeSubdomains",
2426
"X-Frame-Options": "SAMEORIGIN",
2527
"X-Xss-Protection": "1; mode=block",
@@ -30,11 +32,12 @@
3032
"Cache-Control": "no-cache, no-store, must-revalidate",
3133
"Pragma": "no-cache",
3234
"Expires": "0",
33-
"X-Cache": "Miss from cloudfront",
34-
"Via": "1.1 fa751ee53e2bf18781ae98b293ff9375.cloudfront.net (CloudFront)",
35-
"X-Amz-Cf-Id": "cCnQMiL2IcI798ceVDdr1LlJuOOkeHAAZ5Jzr_LbiIoA6_3lRLD83g=="
35+
"X-Cache": "Error from cloudfront",
36+
"Via": "1.1 b6a92d65d66a7dd6d685a94e79bd1aba.cloudfront.net (CloudFront)",
37+
"X-Amz-Cf-Pop": "LHR61-C2",
38+
"X-Amz-Cf-Id": "Yui41-vqxSxtupQDIhEL5i-Y9DNzM5H3fBfQhX2SrUw5Cm6d14QP9g=="
3639
},
37-
"status_code": 200,
40+
"status_code": 400,
3841
"type": "ok"
3942
}
4043
}

0 commit comments

Comments
 (0)