ডকার দ্বারা প্রেরিত http অনুরোধ বার্তা পাওয়ার সমাধান

লেখক:এফএমজেড-লিডিয়া, সৃষ্টিঃ ২০২২-১১-১০ 20:49:38, আপডেটঃ ২০২৩-০৯-১৪ 20:36:06

Solution to Get the http Request Message Sent by the Docker

কৌশল কোড পরীক্ষা এবং ডিবাগ করার সময়, বা বাস্তব বটে রোবট চালানোর সময়, এক্সচেঞ্জ ইন্টারফেস প্রায়শই ত্রুটি রিপোর্ট করে। এই সময়ে, সংশ্লিষ্ট ত্রুটি তথ্য অনুসন্ধানের জন্য এক্সচেঞ্জ ইন্টারফেস এপিআই নথিতে যান। এক্সচেঞ্জ এপিআই প্রযুক্তিগত গ্রাহক পরিষেবাতে পরামর্শ করার সময়, আপনাকে সর্বদা ত্রুটির কারণ বিশ্লেষণের জন্য ত্রুটি রিপোর্ট করা হলে অনুরোধ বার্তা সরবরাহ করতে হবে।

এই মুহুর্তে, বার্তার তথ্য না দেখে সমস্যাগুলি খুঁজে পাওয়ার কোনও উপায় নেই। এই নিবন্ধে, আমরা দুটি সমাধান একসাথে আলোচনা করব।

1. পাইথন এর স্কপি লাইব্রেরি ব্যবহার করে প্যাকেটগুলি ধরতে এবং পাঠানো অনুরোধ বার্তাগুলি মুদ্রণ করতে

প্রথমে আমরা ইনস্টল করিscapyমডিউল

pip3 install scapy 

তারপর আমরা পাইথন কৌশল তৈরি করি:

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 as the address of other http protocols. If the exchange address is not set, it is generally https. In this case, packets 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()
}

প্যাকেজ ধরা রোবট দ্বারা মুদ্রিত তথ্যঃSolution to Get the http Request Message Sent by the Docker

আমরা বার্তাটি কপি করে দেখতে পারিঃ 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 
We can see the link in the request message is: ```/api/swap/v3/instruments/BTC-USD-SWAP/ticker```, it is to request the BTC native perpetual contract market data.

POST request message:

POST /api/swap/v3/order HTTP/1.1 হোস্টঃ www.baidu.com ব্যবহারকারী-এজেন্টঃ Mozilla/5.0 (ম্যাকিনটোশ; ইন্টেল ম্যাক ওএস এক্স 10_9_3) AppleWebKit/537.36 (কেএইচটিএমএল, গেকোর মতো) Chrome/35.0.1916.153 Safari/537.36 বিষয়বস্তু-দৈর্ঘ্যঃ ২৫ বিষয়বস্তু-টাইপঃ অ্যাপ্লিকেশন/json; charset=UTF-8 OK-Access-Key: d487230f-ccccc-aaaaa-bbbbb-268fef99cfe4 Ok-Access-Passphrase: abc123 ঠিক আছে, অ্যাক্সেস সাইনঃ h1x6f80rhhkELobJcO1rFyMgUUshOlmgjRBHD+pLvG0= Ok-Access-Timestamp: 2020-09-23T08:43:49.906Z Accept-Encoding: gzip

{aaa:111,bbb:222}

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

In this way, we can observe the request message and analyze the reason why the interface request encounters an error.

### 2. Local listening request
The second method does not need to create a robot, just uses the ```Netcat``` that comes with the Mac: https://baike.baidu.com/item/Netcat/9952751?fr=aladdin. Monitor the requests and print messages.

On the terminal, run Netcat with the command ```nc - l 8080```.

As the picture below:
![Solution to Get the http Request Message Sent by the Docker](/upload/asset/28d7f2156cdb996092a8a.png)

Similarly, we deploy a docker on our computer, and then use the following code to send requests in the debugging tool.

প্রধান ফাংশন exchange.SetBase ((http://127.0.0.1:8080) // এখানে, আমরা স্থানীয় মেশিনে বেস ঠিকানা পরিবর্তন, পোর্ট 8080, এবং Netcat অনুরোধ পেতে পারেন // POST অনুরোধ exchange.IO ((api,POST,/api/swap/v3/order,aaa=111&bbb=222)

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

} ` টার্মিনালে প্রিন্ট করা POST অনুরোধ বার্তাঃSolution to Get the http Request Message Sent by the Docker

টার্মিনালে প্রিন্ট করা GET অনুরোধ বার্তাঃSolution to Get the http Request Message Sent by the Docker


আরও দেখুন