리소스 로딩... 로딩...

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.
  • 디버그:trueHttpQuery_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 코딩