gpt4 book ai didi

javascript - 使用 Node JS 访问 API 并将其解析为 JSON 文件

转载 作者:行者123 更新时间:2023-12-03 02:01:00 25 4
gpt4 key购买 nike

我正在尝试从 Harvest API 访问所有项目并将其解析为 JSON 文件。但我对 Node JS 很陌生,所以我不知道从哪里开始。以下是 API 文档的链接:Harvest API Documentation

API 要求对所有调用进行身份验证,我该如何解决这个问题?

提前谢谢您

最佳答案

您可以使用 JSON.parse(data) 进行解析以获取 JSON 对象

const https = require("https");

const options = {
protocol: "https:",
hostname: "api.harvestapp.com",
path: "/v2/users/me",
headers: {
"User-Agent": "Node.js Harvest API Sample",
Authorization: "Bearer " + process.env.HARVEST_ACCESS_TOKEN,
"Harvest-Account-ID": process.env.HARVEST_ACCOUNT_ID,
},
};

https
.get(options, (res) => {
const { statusCode } = res;

if (statusCode !== 200) {
console.error(`Request failed with status: ${statusCode}`);
return;
}

res.setEncoding("utf8");
let rawData = "";
res.on("data", (chunk) => {
rawData += chunk;
});
res.on("end", () => {
try {
const parsedData = JSON.parse(rawData);
console.log(parsedData);
} catch (e) {
console.error(e.message);
}
});
})
.on("error", (e) => {
console.error(`Got error: ${e.message}`);
});

请引用

https://github.com/harvesthq/harvest_api_samples/blob/master/v2/harvest_api_sample.js

关于javascript - 使用 Node JS 访问 API 并将其解析为 JSON 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50032335/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com