戦略コードをテスト・デバッグしたり,ボットをリアルマーケットで実行したりすると,プラットフォームインターフェイスはエラーが報告される.この時点で,プラットフォームインターフェイス APIのドキュメントをクエリし,関連するエラー報告情報を検索し,常にエラーの要求メッセージを提供する必要があります.プラットフォーム API技術サービスにクエリするときに,エラーの原因を分析します.
この記事では,2つの解決策について説明します. この記事では,2つの解決策について説明します.
まず,インストール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()
}
パケットキャプチャのボットによって印刷された情報:
要求メッセージをコピーして見てみましょう. 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}
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 ((
// GET request
exchange.SetContractType("swap")
exchange.GetTicker()
} “`
端末に印刷されたPOST要求メッセージ:
端末に印刷された GET リクエストメッセージ: