获得过 0 次赞
回答过的问题获得 0 次赞
分享过的文章/案例获得 0 次赞
评论与回复获得 0 次赞
- 小程序手机号快速验证组件,有效期内续费1年,是从当前时间开始算,还是累计算时间?
1
08-12 - 云函数调用接口提示超时 connect ETIMEDOUT 154.92.16.97:443
const response = await axios({ method: 'post', url:'https://api.openai.com/v1/chat/completions', headers: { 'Content-Type': 'application/json', 'Authorization': OPENAI_API_KEY1, }, data: { model: 'gpt-4', messages: [{ role: 'user', content: prompt }], stream: true }, responseType: 'stream', }); [图片] postman可以调到,云函数提示超时
2024-09-22