(cache)
| 61 | } |
| 62 | |
| 63 | function writeTokenCache(cache) { |
| 64 | try { |
| 65 | fs.writeFileSync(TOKEN_CACHE_FILE, JSON.stringify(cache, null, 2), "utf8"); |
| 66 | } catch (e) { |
| 67 | $.log(`写入token缓存失败: ${e.message || e}`); |
| 68 | } |
| 69 | } |
| 70 | |
| 71 | async function request(options) { |
| 72 | const res = await axios.request({ |
no test coverage detected