Docker の HTTP リクエスト メッセージ を 取得 する ソリューション

作者: リン・ハーンニナバダス作成日:2022-04-27 10:55:50,更新日:2022-04-27 10:57:37 更新日:2022-04-27 更新日:2022-04-27 10:57:37 更新日:2022-04-27 更新日:2022-04-27 更新日:2022-04-27 更新日:2022-04-27 更新日:2022-04-27 更新日:2017-04-27 更新日:2022-04-27 更新日:2017-04-27 更新日:2022-04-27 更新日:2022-04-27

Docker の HTTP リクエスト メッセージ を 取得 する ソリューション

戦略コードをテスト・デバッグしたり,ボットをリアルマーケットで実行したりすると,プラットフォームインターフェイスはエラーが報告される.この時点で,プラットフォームインターフェイス APIのドキュメントをクエリし,関連するエラー報告情報を検索し,常にエラーの要求メッセージを提供する必要があります.プラットフォーム API技術サービスにクエリするときに,エラーの原因を分析します.

この記事では,2つの解決策について説明します. この記事では,2つの解決策について説明します.

1. Python Scapy (パケットキャプチャ) を使って送信されたリクエストメッセージをプリントする

まず,インストールscapy.

pip3 install scapy 

Pythonの戦略を作ります.

from scapy.all import *

def Method_print(packet):
    ret = "\n".join(packet.sprintf("{Raw:%Raw.load%}").split(r"\r\n"))
    Log(ret)

sniff(
    iface='eth0',
    prn=Method_print,
    lfilter=lambda p: "GET" in str(p) or "POST" in str(p),
    filter="tcp")

この戦略を使用するボットを作成し,ボットがドッカーサーバーから送られた http パケットをキャプチャします (httpsはパケットをキャプチャできません.

パケットキャプチャボットを実行し,デバッグツールを使ってリクエストを送信します.

function main(){
    // The base address should be set to the address of other http protocols. If the address of a platform is not set, it is generally https, so the packet cannot be captured.
    exchange.SetBase("http://www.baidu.com")    
    
    // POST request 
    exchange.IO("api", "POST", "/api/swap/v3/order", "aaa=111&bbb=222")
    
    // GET request 
    exchange.SetContractType("swap")
    exchange.GetTicker()
}

パケットキャプチャのボットによって印刷された情報:Solutions to Obtaining Docker Http Request Message

要求メッセージをコピーして見てみましょう. GET要求メッセージ:

GET 
/api/swap/v3/instruments/BTC-USD-SWAP/ticker 
HTTP/1.1 
Host: www.baidu.com 
User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.153 Safari/537.36 Accept-Encoding: gzip 
You can see the link in the request message is: ```/api/swap/v3/instruments/BTC-USD-SWAP/ticker```, which is to request the crypto-margined (BTC) perpetual contract market data.

POST request message:

郵便局 /api/swap/v3/order について HTTP/1.1 主催者: www.baidu.com ユーザーエージェント: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML,ゲッコのように) Chrome/35.0.1916.153 Safari/537.36 内容長: 25 コンテンツタイプ:アプリケーション/json;文字セット=UTF-8 OK アクセスキー: d487230f-ccccc-aaaaa-bbbbb-268fef99cfe4 OK アクセス パスフレーズ: abc123 OK アクセスサイン h1x6f80rhhkELobJcO1rFyMgUUshOlmgjRBHD+pLvG0= OK-Access-Timestamp: 2020-09-23T08:43:49.906Z 承認・エンコーディング: gzip

{cH00ffff} aaa:111,bbb:222

You can see the request path is: ```/api/swap/v3/order```.
Verified Access key: ```d487230f-ccccc-aaaaa-bbbbb-268fef99cfe4``` (for demo, not real KEY)
Signature of this request: ```h1x6f80rhhkELobJcO1rFyMgUUshOlmgjRBHD+pLvG0=```
API KEY Passphrase: ```abc123``` (for demo)
Requested Body data: ```{"aaa":"111","bbb":"222"}```.

Thus, we can observe the request messages, and analyze the causes of errors encountered by the interface. 

### 2. Local Listener Request 

The second solution, without creating a bot, is to use the ```Netcat``` that comes with the Mac system: https://baike.baidu.com/item/Netcat/9952751?fr=aladdin. Listen to requests and print messages.

In the terminal, use the command ```nc -l 8080``` to run Netcat.

As is shown in the picture:
![Solutions to Obtaining Docker Http Request Message](/upload/asset/16ea458dfeb3d64ea2e9.png) 

Similarly, we deploy a docker on this machine, and then in the debugging tool, use the following code to send a request.

メイン機能 ここで,我々はローカル,ポート8080にベースアドレスを修正し,その後Netcatは要求を聞くことができます. // POST リクエスト 交換.IO ((api,POST,/api/swap/v3/order,aaa=111&bbb=222)

// GET request 
exchange.SetContractType("swap")
exchange.GetTicker()

} “`

端末に印刷されたPOST要求メッセージ:Solutions to Obtaining Docker Http Request Message

端末に印刷された GET リクエストメッセージ:Solutions to Obtaining Docker Http Request Message


もっと見る