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.true
이HttpQuery_Go
함수 호출은 전체 응답 메시지를 반환합니다.false
, 단지 데이터Body
응답 메시지가 반환됩니다.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
언어는urllib
Http 요청을 직접 전송할 수 있습니다.HttpQuery_Go()
주로 교환에 서명이 필요하지 않은 인터페이스에 액세스하는 데 사용됩니다.HttpQuery_Go
기능은 백테스팅 시스템에서 지원되지 않습니다.
{@fun/Global/HttpQuery HttpQuery}
HttpQuery 코딩