資源の読み込みに... 荷物...

HttpQuery_Go をインストールする

Http リクエストを送信します.HttpQuery function.

についてHttpQuery_Go()Http リクエストの結果を取得するために使用できる並行オブジェクトをすぐに返します.wait方法 方法JSON.parse()解析するために使用できます.JSON.parse()機能についてJavaScript言語の戦略について
オブジェクト

HttpQuery_Go (URL) HttpQuery_Go (URL,オプション)

Http リクエスト URL url 本当 文字列 例えば,Http リクエストに関連する設定は,次のように構造化できます:

{
    method: "POST",
    body: "a=10&b=20&c=30",
    charset: "UTF-8",
    cookie: "session_id=12345; lang=en",
    // profile: "",
    debug: false,
    headers: {"TEST-HTTP-QUERY": "123"},
    timeout: 1000
}
  • プロフィール: ブラウザをシミュレートするために使用tls fingerprints.
  • debug: に設定されているときtrueこのHttpQuery_Go返信メッセージを返します.false単一のデータです.Body返信メッセージが返されます.
  • タイムアウト:タイムアウト設定で,セット1000は1秒のタイムアウトを意味します. この構造のすべてのフィールドはオプションで,例えば,profileフィールドは,外に出ることができます.

オプション 偽り オブジェクト

function main() {
    // Create the first asynchronous thread
    var r1 = HttpQuery_Go("https://www.okx.com/api/v5/market/tickers?instType=SPOT")
    // Create the second asynchronous thread
    var r2 = HttpQuery_Go("https://api.huobi.pro/market/tickers")
    
    // Get the return value of the first asynchronous thread call
    var tickers1 = r1.wait()
    // Get the return value of the second asynchronous thread call
    var tickers2 = r2.wait()
    
    // Print results
    Log("tickers1:", tickers1)
    Log("tickers2:", tickers2)
}
# Not supported
// Not supported

取引所の公開インターフェイスへの非同期アクセス

についてHttpQuery_Go()機能のみサポートJavaScriptについてPython言語は,urllibHttp リクエストを直接送信します.HttpQuery_Go()取引所で署名を必要としないインターフェースにアクセスするために主に使用されます.HttpQuery_Goバックテストシステムではサポートされていません.

{@fun/Global/HttpQuery HttpQuery} このビデオは,

HttpQuery をインストールする 暗号化