我需要在接口调用前调用token获取接口获取token,使用内置的”发送一个请求“脚本时无任何数据返回
try {
const response = await apt.sendRequest({
url: "https://httpbin.org/anything",
method: "GET"
});
console.log(response.json());
} catch (err) {
console.error(err);
}