请求接口的代码: import fetch from "node-fetch"; fetch("https://api.openai-sb.com/v1/moderations", { method: "POST", headers: { Authorization: "Bearer ***********", "Content-Type": "application/json", }, body: JSON.stringify({ input: "树上有九只鸟,开枪打死一只,请问树上还剩几只鸟?" }), }).then(data => { console.log(data) });