0
내 시트 중 하나에 다음과 같은 REST API를 사용하기 위해 노력하고있어 및 (먼저 여기 timer로!)을 JSON 배열에서 특정 결과를 반환하기 위해 고군분투은는 시트 API 스크립트
여기내가 가진 무엇 구글 지금까지 ....
function Bittrex_API() {
// Call the Bittrex API for market rates
var response = UrlFetchApp.fetch(
"https://bittrex.com/api/v1.1/public/getmarketsummaries");
// Parse the JSON reply
var json = response.getContentText();
var data = JSON.parse(json);
Logger.log(data);
}
이렇게하면 로그에 전체 배열이 반환되지만 배열의 특정 결과에서 모든 정보를 가져 오려면 어떻게해야합니까? 다음과 같이
나는 인덱스 위치 "0"을 호출하여, 첫 번째 섹션에서 특정 결과를 반환 할 수 있습니다
function Bittrex_API() {
// Call the Bittrex API for market rates
var response = UrlFetchApp.fetch(
"https://bittrex.com/api/v1.1/public/getmarketsummaries");
// Parse the JSON reply
var json = response.getContentText();
var data = JSON.parse(json);
Logger.log(data["result"][0]);
}
을하지만 어떻게 인덱스 번호를 사용하지 않고 배열의 다른 섹션을 지정합니까?
즉 MarketName=BTC-RCN
과 관련된 모든 정보를 반환하고 싶습니다.