NodeJS에서 Https/GET에서 Json을 얻고 사용
할 일
구체적으로 무엇을합니까?
Bitcoin의 레이트 정보를 취득할 수 있는 API가 있으므로 그것을 이용해 현재의 레이트 정보를 취득합니다.
거래소 API 개요
반환값
{
"rate": "60000"
}
코드
const https = require('https');
// Bitcoin のレートを json で取得することができるAPI
const URL = "https://coincheck.com/api/rate/btc_jpy";
https.get(URL, function (res) {
var body = '';
res.setEncoding('utf8');
res.on('data', function (chunk) {
body += chunk;
});
res.on('data', function (chunk) {
// body の値を json としてパースしている
res = JSON.parse(body);
console.log(`現在のレートは${res.rate}円/Bitcoinだよ!!`);
})
}).on('error', function (e) {
console.log(e.message);
});
실행 결과
Reference
이 문제에 관하여(NodeJS에서 Https/GET에서 Json을 얻고 사용), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/fumiya-kume/items/23b639d926d5c4c552d5
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
{
"rate": "60000"
}
const https = require('https');
// Bitcoin のレートを json で取得することができるAPI
const URL = "https://coincheck.com/api/rate/btc_jpy";
https.get(URL, function (res) {
var body = '';
res.setEncoding('utf8');
res.on('data', function (chunk) {
body += chunk;
});
res.on('data', function (chunk) {
// body の値を json としてパースしている
res = JSON.parse(body);
console.log(`現在のレートは${res.rate}円/Bitcoinだよ!!`);
})
}).on('error', function (e) {
console.log(e.message);
});
실행 결과
Reference
이 문제에 관하여(NodeJS에서 Https/GET에서 Json을 얻고 사용), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/fumiya-kume/items/23b639d926d5c4c552d5
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
Reference
이 문제에 관하여(NodeJS에서 Https/GET에서 Json을 얻고 사용), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/fumiya-kume/items/23b639d926d5c4c552d5텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)